mdot_mqtt/mdot.sql
Martin Donnelly 3dab319a06 sql
2016-08-12 10:25:24 +01:00

21731 lines
7.9 MiB

--
-- PostgreSQL database dump
--
-- Dumped from database version 9.5.1
-- Dumped by pg_dump version 9.5.1
-- Started on 2016-08-12 09:42:34 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;
DROP DATABASE mdot;
--
-- TOC entry 2380 (class 1262 OID 55186)
-- Name: mdot; Type: DATABASE; Schema: -; Owner: postgres
--
CREATE DATABASE mdot WITH TEMPLATE = template0 ENCODING = 'UTF8' LC_COLLATE = 'C' LC_CTYPE = 'C';
ALTER DATABASE mdot OWNER TO postgres;
\connect mdot
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 6 (class 2615 OID 2200)
-- Name: public; Type: SCHEMA; Schema: -; Owner: postgres
--
CREATE SCHEMA public;
ALTER SCHEMA public OWNER TO postgres;
--
-- TOC entry 2381 (class 0 OID 0)
-- Dependencies: 6
-- Name: SCHEMA public; Type: COMMENT; Schema: -; Owner: postgres
--
COMMENT ON SCHEMA public IS 'standard public schema';
--
-- TOC entry 1 (class 3079 OID 12623)
-- Name: plpgsql; Type: EXTENSION; Schema: -; Owner:
--
CREATE EXTENSION IF NOT EXISTS plpgsql WITH SCHEMA pg_catalog;
--
-- TOC entry 2383 (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 186 (class 1255 OID 55203)
-- Name: insert_decoded(integer, timestamp without time zone, integer, integer, real, real, integer); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION insert_decoded(_deviceid integer, _timestamp timestamp without time zone, _lux integer, _co2 integer, _temp real, _humidity real, _sound integer) RETURNS void
LANGUAGE plpgsql
AS $$
BEGIN
INSERT into decoded(deviceid, timestamp, lux, co2, temp, humidity, sound) Values( _deviceid, _timestamp, _lux, _co2, _temp, _humidity, _sound);
END;
$$;
ALTER FUNCTION public.insert_decoded(_deviceid integer, _timestamp timestamp without time zone, _lux integer, _co2 integer, _temp real, _humidity real, _sound integer) OWNER TO postgres;
--
-- TOC entry 185 (class 1255 OID 55202)
-- Name: insert_raw(timestamp without time zone, json); Type: FUNCTION; Schema: public; Owner: postgres
--
CREATE FUNCTION insert_raw(_timestamp timestamp without time zone, _event json) RETURNS void
LANGUAGE plpgsql
AS $$
BEGIN
INSERT into raw(timestamp, event) Values(_timestamp,_event);
END;
$$;
ALTER FUNCTION public.insert_raw(_timestamp timestamp without time zone, _event json) OWNER TO postgres;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- TOC entry 184 (class 1259 OID 55198)
-- Name: decoded; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE decoded (
id bigint NOT NULL,
deviceid integer,
"timestamp" timestamp without time zone,
lux integer,
co2 integer,
temp real,
humidity real,
sound integer
);
ALTER TABLE decoded OWNER TO postgres;
--
-- TOC entry 183 (class 1259 OID 55196)
-- Name: decoded_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE decoded_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE decoded_id_seq OWNER TO postgres;
--
-- TOC entry 2384 (class 0 OID 0)
-- Dependencies: 183
-- Name: decoded_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE decoded_id_seq OWNED BY decoded.id;
--
-- TOC entry 182 (class 1259 OID 55189)
-- Name: raw; Type: TABLE; Schema: public; Owner: postgres
--
CREATE TABLE raw (
id bigint NOT NULL,
"timestamp" timestamp without time zone,
event json
);
ALTER TABLE raw OWNER TO postgres;
--
-- TOC entry 181 (class 1259 OID 55187)
-- Name: raw_id_seq; Type: SEQUENCE; Schema: public; Owner: postgres
--
CREATE SEQUENCE raw_id_seq
START WITH 1
INCREMENT BY 1
NO MINVALUE
NO MAXVALUE
CACHE 1;
ALTER TABLE raw_id_seq OWNER TO postgres;
--
-- TOC entry 2385 (class 0 OID 0)
-- Dependencies: 181
-- Name: raw_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--
ALTER SEQUENCE raw_id_seq OWNED BY raw.id;
--
-- TOC entry 2257 (class 2604 OID 55201)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY decoded ALTER COLUMN id SET DEFAULT nextval('decoded_id_seq'::regclass);
--
-- TOC entry 2256 (class 2604 OID 55192)
-- Name: id; Type: DEFAULT; Schema: public; Owner: postgres
--
ALTER TABLE ONLY raw ALTER COLUMN id SET DEFAULT nextval('raw_id_seq'::regclass);
--
-- TOC entry 2375 (class 0 OID 55198)
-- Dependencies: 184
-- Data for Name: decoded; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1, 0, '2016-08-10 11:11:46', 22, 590, 22.2000008, 42.0999985, NULL);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2, 3, '2016-08-10 11:13:40', 804, 706, 22.5, 40.9000015, NULL);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3, 3, '2016-08-10 11:15:23', 804, 706, 22.5, 40.9000015, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4, 2, '2016-08-10 11:15:24', 1557, 611, 24.2999992, 37.9000015, 5683);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5, 2, '2016-08-10 11:15:47', 1557, 611, 24.2999992, 37.9000015, 5683);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6, 2, '2016-08-10 11:15:48', 1557, 611, 24.2999992, 37.9000015, 5683);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7, 2, '2016-08-10 11:17:16', 1557, 611, 24.2999992, 37.9000015, 5683);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8, 1, '2016-08-10 11:18:49', 611, 767, 23.2999992, 40.5, 8805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9, 1, '2016-08-10 11:18:49', 611, 767, 23.2999992, 40.5, 8805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10, 1, '2016-08-10 11:19:13', 611, 767, 23.2999992, 40.5, 8805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (11, 1, '2016-08-10 11:21:08', 611, 767, 23.2999992, 40.5, 8805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (12, 0, '2016-08-10 11:27:21', 23, 599, 21.7000008, 42.7000008, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (13, 3, '2016-08-10 11:30:12', 900, 617, 22, 41.7000008, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (14, 2, '2016-08-10 11:30:58', 1063, 612, 24.5, 37.7000008, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (15, 2, '2016-08-10 11:31:14', 1063, 612, 24.5, 37.7000008, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (16, 1, '2016-08-10 11:34:48', 632, 767, 23.2999992, 40.4000015, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (17, 1, '2016-08-10 11:37:27', 632, 767, 23.2999992, 40.4000015, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (18, 0, '2016-08-10 11:38:37', 4, 601, 21.8999996, 42.9000015, 5266);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (19, 0, '2016-08-10 11:39:16', 4, 601, 21.8999996, 42.9000015, 5266);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (20, 3, '2016-08-10 11:44:24', 771, 635, 22.2999992, 41.7000008, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (21, 2, '2016-08-10 11:46:11', 1040, 597, 24.7000008, 37.5, 4900);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (22, 2, '2016-08-10 11:46:21', 1040, 597, 24.7000008, 37.5, 4900);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (23, 1, '2016-08-10 11:51:53', 592, 657, 23.2999992, 40.4000015, 4914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (24, 0, '2016-08-10 11:54:11', 18, 586, 22.2000008, 42.5999985, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (25, 0, '2016-08-10 11:57:24', 18, 586, 22.2000008, 42.5999985, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (26, 3, '2016-08-10 12:01:20', 901, 623, 22.6000004, 41.2999992, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (27, 0, '2016-08-10 12:24:37', 35, 619, 22.3999996, 40.2999992, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (28, 0, '2016-08-10 12:25:18', 35, 619, 22.3999996, 40.2999992, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (29, 3, '2016-08-10 12:31:42', 648, 645, 22.7999992, 40.0999985, 2450);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (30, 2, '2016-08-10 12:31:59', 1536, 519, 24.7000008, 37.4000015, 13336);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (31, 1, '2016-08-10 12:38:09', 306, 609, 23.2999992, 40.0999985, 2354);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (32, 0, '2016-08-10 12:42:01', 8, 620, 21.8999996, 42.7999992, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (33, 3, '2016-08-10 12:44:53', 598, 641, 22.3999996, 41.5, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (34, 3, '2016-08-10 12:46:53', 598, 641, 22.3999996, 41.5, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (35, 2, '2016-08-10 12:46:55', 865, 570, 24.7000008, 37.5, 6273);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (36, 2, '2016-08-10 12:48:15', 865, 570, 24.7000008, 37.5, 6273);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (37, 1, '2016-08-10 12:51:08', 324, 607, 23.2999992, 40.0999985, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (38, 1, '2016-08-10 12:51:51', 324, 607, 23.2999992, 40.0999985, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (39, 0, '2016-08-10 12:55:42', 128, 572, 22, 43.0999985, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (40, 0, '2016-08-10 12:58:23', 128, 572, 22, 43.0999985, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (41, 3, '2016-08-10 13:00:19', 576, 626, 22.3999996, 41.9000015, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (42, 3, '2016-08-10 13:00:44', 576, 626, 22.3999996, 41.9000015, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (43, 3, '2016-08-10 13:00:55', 576, 626, 22.3999996, 41.9000015, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (44, 2, '2016-08-10 13:02:04', 888, 538, 24.6000004, 37.9000015, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (45, 2, '2016-08-10 13:02:05', 888, 538, 24.6000004, 37.9000015, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (46, 1, '2016-08-10 13:08:29', 406, 627, 23.2999992, 40.2000008, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (47, 0, '2016-08-10 13:12:05', 51, 590, 22, 43.4000015, 2326);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (48, 3, '2016-08-10 13:17:15', 514, 585, 22.5, 42.2000008, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (49, 2, '2016-08-10 13:18:36', 802, 596, 24.5, 38.0999985, 4498);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (50, 1, '2016-08-10 13:21:54', 372, 556, 23.2000008, 40.4000015, 2112);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (51, 1, '2016-08-10 13:22:07', 372, 556, 23.2000008, 40.4000015, 2112);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (52, 0, '2016-08-10 13:28:06', 52, 534, 22.2000008, 43.2999992, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (53, 3, '2016-08-10 13:32:09', 624, 604, 22.6000004, 42.2000008, 4146);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (54, 2, '2016-08-10 13:32:25', 1400, 575, 24.3999996, 38.2999992, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (55, 2, '2016-08-10 13:37:12', 1400, 575, 24.3999996, 38.2999992, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (56, 1, '2016-08-10 13:38:52', 339, 649, 23.2000008, 40.5, 1842);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (57, 0, '2016-08-10 13:41:40', 35, 567, 22.2999992, 43.2000008, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (58, 0, '2016-08-10 13:42:11', 35, 567, 22.2999992, 43.2000008, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (90, 1, '2016-08-10 13:55:19', 273, 608, 23.1000004, 40.5999985, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (91, 0, '2016-08-10 13:57:41', 35, 584, 22.2999992, 43.0999985, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (92, 3, '2016-08-10 14:02:14', 628, 585, 22.6000004, 42.2000008, 4146);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (93, 2, '2016-08-10 14:03:12', 872, 568, 24.2000008, 38.5, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (94, 2, '2016-08-10 14:04:23', 872, 568, 24.2000008, 38.5, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (95, 1, '2016-08-10 14:09:10', 276, 616, 23, 40.7000008, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (96, 0, '2016-08-10 14:12:15', 67, 572, 22.2999992, 43.2999992, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (97, 3, '2016-08-10 14:16:38', 595, 627, 22.6000004, 42.4000015, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (98, 3, '2016-08-10 14:18:23', 595, 627, 22.6000004, 42.4000015, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (99, 2, '2016-08-10 14:18:24', 777, 561, 24.1000004, 38.7999992, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (100, 2, '2016-08-10 14:19:17', 777, 561, 24.1000004, 38.7999992, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (101, 1, '2016-08-10 14:23:03', 370, 656, 23, 40.9000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (102, 1, '2016-08-10 14:27:11', 370, 656, 23, 40.9000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (103, 0, '2016-08-10 14:27:12', 96, 525, 22.2999992, 43.5, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (104, 0, '2016-08-10 14:29:23', 96, 525, 22.2999992, 43.5, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (105, 3, '2016-08-10 14:32:19', 774, 615, 22.6000004, 42.7000008, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (106, 2, '2016-08-10 14:38:13', 839, 551, 24, 39.0999985, 14384);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (107, 1, '2016-08-10 14:38:30', 353, 584, 22.8999996, 41.0999985, 8833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (108, 3, '2016-08-10 14:47:23', 520, 620, 22.6000004, 43.0999985, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (109, 2, '2016-08-10 14:48:48', 872, 551, 24, 39.5, 12866);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (110, 6, '2016-08-10 14:51:08', 51, 556, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (111, 6, '2016-08-10 14:51:15', 51, 595, 20.8999996, 47.2999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (112, 6, '2016-08-10 14:51:26', 51, 574, 20.8999996, 47.2999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (113, 6, '2016-08-10 14:51:37', 51, 543, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (114, 6, '2016-08-10 14:51:39', 51, 602, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (115, 6, '2016-08-10 14:51:51', 51, 602, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (116, 6, '2016-08-10 14:51:58', 51, 613, 20.8999996, 47.2000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (117, 6, '2016-08-10 14:52:06', 51, 597, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (118, 6, '2016-08-10 14:52:20', 51, 597, 20.8999996, 47.2000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (119, 6, '2016-08-10 14:52:21', 56, 600, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (120, 4, '2016-08-10 14:52:23', 610, 657, 21.1000004, 48.0999985, 13122);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (121, 6, '2016-08-10 14:52:29', 137, 584, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (122, 4, '2016-08-10 14:52:34', 537, 638, 21.1000004, 48, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (123, 6, '2016-08-10 14:52:36', 136, 607, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (124, 4, '2016-08-10 14:52:41', 552, 621, 21.1000004, 48, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (125, 6, '2016-08-10 14:52:43', 144, 595, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (126, 4, '2016-08-10 14:52:48', 529, 609, 21.1000004, 48, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (127, 6, '2016-08-10 14:52:50', 145, 591, 20.8999996, 47.2000008, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (128, 4, '2016-08-10 14:52:56', 582, 595, 21.1000004, 48, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (129, 6, '2016-08-10 14:52:57', 137, 552, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (130, 4, '2016-08-10 14:53:03', 515, 598, 21.1000004, 48, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (131, 6, '2016-08-10 14:53:04', 136, 586, 20.8999996, 47.2000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (132, 4, '2016-08-10 14:53:10', 358, 593, 21.1000004, 48, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (133, 6, '2016-08-10 14:53:11', 144, 577, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (134, 4, '2016-08-10 14:53:17', 517, 545, 21.1000004, 48, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (135, 6, '2016-08-10 14:53:19', 144, 554, 20.8999996, 47.2999992, 818);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (136, 4, '2016-08-10 14:53:23', 307, 591, 21.1000004, 48, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (137, 1, '2016-08-10 14:53:25', 545, 586, 22.8999996, 41.2999992, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (138, 6, '2016-08-10 14:53:26', 144, 568, 20.8999996, 47.2999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (139, 4, '2016-08-10 14:53:31', 307, 607, 21.1000004, 48, 8713);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (140, 6, '2016-08-10 14:53:33', 144, 510, 20.8999996, 47.2999992, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (141, 4, '2016-08-10 14:53:38', 308, 602, 21.1000004, 47.9000015, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (142, 6, '2016-08-10 14:53:41', 144, 550, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (143, 4, '2016-08-10 14:53:45', 307, 595, 21.1000004, 47.9000015, 4480);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (148, 6, '2016-08-10 14:54:02', 144, 566, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (149, 4, '2016-08-10 14:54:07', 548, 579, 21.1000004, 47.9000015, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (144, 6, '2016-08-10 14:53:47', 145, 566, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (145, 4, '2016-08-10 14:53:53', 576, 607, 21.1000004, 47.9000015, 1654);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (146, 6, '2016-08-10 14:53:55', 145, 566, 20.8999996, 47.2999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (147, 4, '2016-08-10 14:54:00', 609, 584, 21.1000004, 47.9000015, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (150, 6, '2016-08-10 14:54:09', 98, 550, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (151, 4, '2016-08-10 14:54:14', 566, 561, 21.1000004, 48, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (152, 6, '2016-08-10 14:54:16', 98, 547, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (153, 4, '2016-08-10 14:54:21', 565, 575, 21.1000004, 48.0999985, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (154, 6, '2016-08-10 14:54:23', 98, 523, 20.8999996, 47.2999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (155, 4, '2016-08-10 14:54:29', 564, 573, 21.1000004, 48, 1074);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (156, 6, '2016-08-10 14:54:30', 98, 541, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (157, 4, '2016-08-10 14:54:36', 562, 564, 21.1000004, 48, 1376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (158, 6, '2016-08-10 14:54:38', 98, 536, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (159, 4, '2016-08-10 14:54:43', 549, 582, 21.1000004, 48, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (160, 6, '2016-08-10 14:54:45', 98, 543, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (161, 4, '2016-08-10 14:54:50', 548, 512, 21.1000004, 48, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (162, 6, '2016-08-10 14:54:52', 98, 536, 20.8999996, 47.2999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (163, 4, '2016-08-10 14:54:59', 544, 545, 21.1000004, 47.9000015, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (164, 6, '2016-08-10 14:55:00', 98, 525, 20.8999996, 47.2999992, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (165, 4, '2016-08-10 14:55:05', 551, 554, 21.1000004, 47.9000015, 1074);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (166, 6, '2016-08-10 14:55:06', 98, 525, 20.8999996, 47.2000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (167, 4, '2016-08-10 14:55:12', 553, 573, 21.1000004, 47.9000015, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (168, 6, '2016-08-10 14:55:13', 98, 547, 20.8999996, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (169, 4, '2016-08-10 14:55:19', 550, 537, 21.1000004, 47.9000015, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (170, 6, '2016-08-10 14:55:21', 98, 538, 20.8999996, 47.2999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (171, 4, '2016-08-10 14:55:26', 613, 566, 21.1000004, 47.9000015, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (172, 6, '2016-08-10 14:55:28', 98, 568, 20.8999996, 47.2000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (173, 4, '2016-08-10 14:55:33', 629, 570, 21.1000004, 47.9000015, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (174, 6, '2016-08-10 14:55:35', 98, 516, 21, 47.2000008, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (175, 4, '2016-08-10 14:55:40', 581, 561, 21.1000004, 47.9000015, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (176, 6, '2016-08-10 14:55:42', 97, 516, 21, 47.2999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (177, 4, '2016-08-10 14:55:49', 883, 568, 21.1000004, 47.7999992, 1604);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (178, 4, '2016-08-10 14:55:55', 897, 557, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (179, 6, '2016-08-10 14:55:57', 98, 527, 21, 47.2000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (180, 4, '2016-08-10 14:56:02', 896, 577, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (181, 6, '2016-08-10 14:56:04', 99, 536, 21, 47.2000008, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (182, 4, '2016-08-10 14:56:09', 886, 550, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (183, 6, '2016-08-10 14:56:11', 98, 545, 21, 47.2000008, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (184, 4, '2016-08-10 14:56:16', 896, 564, 21.2000008, 47.7999992, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (185, 6, '2016-08-10 14:56:18', 98, 507, 21, 47.2000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (186, 4, '2016-08-10 14:56:23', 889, 561, 21.2000008, 47.7999992, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (187, 6, '2016-08-10 14:56:25', 98, 516, 21, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (188, 4, '2016-08-10 14:56:31', 888, 579, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (189, 6, '2016-08-10 14:56:33', 98, 534, 21, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (190, 4, '2016-08-10 14:56:38', 889, 546, 21.2000008, 47.7999992, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (191, 6, '2016-08-10 14:56:40', 98, 523, 21, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (192, 4, '2016-08-10 14:56:45', 888, 573, 21.2000008, 47.7999992, 864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (193, 6, '2016-08-10 14:56:47', 98, 529, 21, 47.2000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (194, 4, '2016-08-10 14:56:52', 887, 564, 21.2000008, 47.7999992, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (195, 6, '2016-08-10 14:56:55', 98, 568, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (196, 4, '2016-08-10 14:57:00', 886, 532, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (197, 6, '2016-08-10 14:57:01', 98, 550, 21, 47.0999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (198, 4, '2016-08-10 14:57:07', 889, 550, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (199, 6, '2016-08-10 14:57:09', 98, 541, 21, 47.0999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (200, 4, '2016-08-10 14:57:14', 888, 513, 21.2000008, 47.7999992, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (201, 6, '2016-08-10 14:57:16', 98, 525, 21, 47.0999985, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (202, 4, '2016-08-10 14:57:23', 886, 555, 21.2000008, 47.7000008, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (203, 4, '2016-08-10 14:57:28', 886, 550, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (204, 6, '2016-08-10 14:57:30', 98, 550, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (205, 4, '2016-08-10 14:57:33', 887, 565, 21.2000008, 47.7000008, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (206, 0, '2016-08-10 14:57:35', 5, 574, 22.3999996, 44.2999992, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (207, 6, '2016-08-10 14:57:37', 98, 529, 21, 47.0999985, 808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (208, 4, '2016-08-10 14:57:43', 886, 539, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (209, 6, '2016-08-10 14:57:45', 98, 523, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (210, 4, '2016-08-10 14:57:50', 886, 560, 21.2000008, 47.7000008, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (211, 6, '2016-08-10 14:57:52', 98, 536, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (212, 4, '2016-08-10 14:57:57', 886, 533, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (213, 6, '2016-08-10 14:57:59', 98, 550, 21, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (214, 4, '2016-08-10 14:58:04', 883, 562, 21.2000008, 47.7000008, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (215, 6, '2016-08-10 14:58:06', 98, 527, 21, 47.2000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (216, 4, '2016-08-10 14:58:11', 886, 553, 21.2000008, 47.7000008, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (217, 6, '2016-08-10 14:58:13', 98, 529, 21, 47.2000008, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (218, 4, '2016-08-10 14:58:18', 886, 551, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (219, 6, '2016-08-10 14:58:21', 98, 510, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (220, 4, '2016-08-10 14:58:26', 885, 549, 21.2000008, 47.7000008, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (221, 6, '2016-08-10 14:58:28', 98, 543, 21, 47.0999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (222, 4, '2016-08-10 14:58:31', 888, 555, 21.2000008, 47.7000008, 832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (223, 6, '2016-08-10 14:58:35', 98, 523, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (224, 4, '2016-08-10 14:58:40', 887, 562, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (225, 6, '2016-08-10 14:58:42', 98, 514, 21, 47.0999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (226, 4, '2016-08-10 14:58:47', 888, 558, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (227, 6, '2016-08-10 14:58:49', 98, 510, 21.1000004, 47.0999985, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (228, 4, '2016-08-10 14:58:54', 857, 537, 21.2000008, 47.7000008, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (229, 6, '2016-08-10 14:58:56', 97, 514, 21, 47.0999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (230, 4, '2016-08-10 14:59:02', 885, 544, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (231, 6, '2016-08-10 14:59:03', 97, 490, 21, 47.0999985, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (232, 4, '2016-08-10 14:59:09', 887, 530, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (233, 6, '2016-08-10 14:59:11', 98, 529, 21.1000004, 47.0999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (234, 4, '2016-08-10 14:59:16', 888, 537, 21.2000008, 47.7000008, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (235, 6, '2016-08-10 14:59:18', 98, 521, 21.1000004, 47.0999985, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (236, 4, '2016-08-10 14:59:25', 889, 574, 21.2000008, 47.7000008, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (237, 4, '2016-08-10 14:59:44', 889, 569, 21.2000008, 47.5999985, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (238, 3, '2016-08-10 15:02:24', 548, 586, 22.6000004, 43.5, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (239, 2, '2016-08-10 15:04:40', 905, 552, 24, 40.0999985, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (240, 6, '2016-08-10 15:04:41', 97, 504, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (241, 4, '2016-08-10 15:04:47', 838, 562, 21.2000008, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (242, 6, '2016-08-10 15:04:48', 97, 513, 21.2000008, 46.9000015, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (243, 4, '2016-08-10 15:04:55', 835, 542, 21.2000008, 47.5, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (244, 6, '2016-08-10 15:04:55', 97, 513, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (245, 4, '2016-08-10 15:05:01', 835, 524, 21.2000008, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (246, 6, '2016-08-10 15:05:02', 97, 491, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (247, 4, '2016-08-10 15:05:08', 832, 520, 21.2000008, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (248, 6, '2016-08-10 15:05:10', 97, 517, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (249, 4, '2016-08-10 15:05:15', 825, 571, 21.2000008, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (250, 6, '2016-08-10 15:05:17', 97, 519, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (251, 4, '2016-08-10 15:05:22', 824, 535, 21.2000008, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (252, 6, '2016-08-10 15:05:24', 97, 493, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (253, 4, '2016-08-10 15:05:29', 822, 574, 21.2000008, 47.5, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (254, 6, '2016-08-10 15:05:31', 97, 511, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (255, 4, '2016-08-10 15:05:36', 820, 542, 21.2000008, 47.5, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (256, 6, '2016-08-10 15:05:38', 97, 493, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (257, 4, '2016-08-10 15:05:44', 819, 580, 21.2000008, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (258, 6, '2016-08-10 15:05:46', 97, 508, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (279, 4, '2016-08-10 15:07:02', 804, 551, 21.2999992, 47.5, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (289, 4, '2016-08-10 15:07:46', 802, 567, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (290, 6, '2016-08-10 15:07:47', 97, 555, 21.2000008, 46.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (291, 4, '2016-08-10 15:07:49', 801, 528, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (292, 6, '2016-08-10 15:07:53', 97, 486, 21.2000008, 46.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (293, 4, '2016-08-10 15:07:58', 801, 522, 21.2999992, 47.5, 1074);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (294, 6, '2016-08-10 15:08:01', 97, 477, 21.2000008, 46.7999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (295, 4, '2016-08-10 15:08:07', 787, 535, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (296, 6, '2016-08-10 15:08:07', 97, 539, 21.2000008, 46.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (297, 6, '2016-08-10 15:08:33', 97, 530, 21.2000008, 46.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (298, 4, '2016-08-10 15:08:33', 801, 569, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (299, 6, '2016-08-10 15:08:33', 97, 539, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (259, 4, '2016-08-10 15:05:51', 817, 555, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (260, 6, '2016-08-10 15:05:53', 97, 508, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (261, 4, '2016-08-10 15:05:58', 816, 535, 21.2999992, 47.5, 832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (262, 6, '2016-08-10 15:05:59', 97, 479, 21.2000008, 46.9000015, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (263, 4, '2016-08-10 15:06:06', 808, 539, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (264, 6, '2016-08-10 15:06:07', 97, 499, 21.2000008, 46.9000015, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (265, 4, '2016-08-10 15:06:13', 808, 555, 21.2999992, 47.5, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (266, 6, '2016-08-10 15:06:15', 97, 502, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (267, 4, '2016-08-10 15:06:20', 807, 520, 21.2999992, 47.5, 1024);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (268, 6, '2016-08-10 15:06:22', 97, 515, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (269, 4, '2016-08-10 15:06:27', 806, 571, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (270, 6, '2016-08-10 15:06:29', 97, 504, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (271, 4, '2016-08-10 15:06:34', 807, 509, 21.2999992, 47.5, 832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (272, 6, '2016-08-10 15:06:36', 97, 495, 21.2000008, 46.9000015, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (273, 4, '2016-08-10 15:06:42', 805, 558, 21.2999992, 47.5, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (274, 6, '2016-08-10 15:06:43', 97, 522, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (275, 4, '2016-08-10 15:06:48', 801, 558, 21.2999992, 47.5, 832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (276, 6, '2016-08-10 15:06:49', 97, 544, 21.2000008, 46.9000015, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (277, 4, '2016-08-10 15:06:55', 804, 542, 21.2999992, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (278, 6, '2016-08-10 15:06:57', 97, 497, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (280, 6, '2016-08-10 15:07:04', 97, 515, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (281, 4, '2016-08-10 15:07:09', 801, 535, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (282, 6, '2016-08-10 15:07:11', 97, 502, 21.2000008, 46.9000015, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (283, 4, '2016-08-10 15:07:17', 801, 567, 21.2999992, 47.5, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (284, 6, '2016-08-10 15:07:18', 97, 488, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (285, 4, '2016-08-10 15:07:21', 802, 555, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (286, 4, '2016-08-10 15:07:30', 802, 528, 21.2999992, 47.5, 1088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (287, 6, '2016-08-10 15:07:32', 97, 551, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (288, 6, '2016-08-10 15:07:39', 97, 528, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (300, 4, '2016-08-10 15:08:33', 800, 565, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (301, 6, '2016-08-10 15:08:33', 97, 484, 21.2000008, 46.9000015, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (302, 4, '2016-08-10 15:08:34', 800, 551, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (303, 1, '2016-08-10 15:08:35', 547, 611, 22.8999996, 41.5, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (304, 6, '2016-08-10 15:08:43', 97, 502, 21.2000008, 46.9000015, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (305, 6, '2016-08-10 15:08:44', 97, 524, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (306, 4, '2016-08-10 15:08:50', 793, 505, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (307, 6, '2016-08-10 15:08:52', 97, 530, 21.2000008, 46.9000015, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (308, 4, '2016-08-10 15:08:54', 792, 565, 21.2999992, 47.5, 1174);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (309, 6, '2016-08-10 15:08:59', 97, 497, 21.2000008, 46.9000015, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (310, 4, '2016-08-10 15:09:03', 792, 562, 21.2999992, 47.5, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (311, 6, '2016-08-10 15:09:07', 97, 511, 21.2000008, 46.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (312, 4, '2016-08-10 15:09:10', 791, 560, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (313, 6, '2016-08-10 15:09:13', 97, 502, 21.2000008, 46.7999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (314, 4, '2016-08-10 15:09:51', 793, 567, 21.2999992, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (315, 0, '2016-08-10 15:13:25', 135, 593, 22.3999996, 44.7999992, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (316, 6, '2016-08-10 15:13:25', 97, 511, 21.2000008, 46.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (317, 4, '2016-08-10 15:13:27', 776, 514, 21.2999992, 47.4000015, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (318, 4, '2016-08-10 15:13:37', 784, 525, 21.2999992, 47.4000015, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (319, 6, '2016-08-10 15:13:45', 96, 513, 21.2000008, 46.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (320, 6, '2016-08-10 15:13:46', 96, 524, 21.2000008, 46.7000008, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (321, 4, '2016-08-10 15:13:52', 786, 547, 21.2999992, 47.4000015, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (322, 6, '2016-08-10 15:13:54', 97, 504, 21.2000008, 46.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (323, 4, '2016-08-10 15:13:55', 777, 533, 21.2999992, 47.4000015, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (324, 6, '2016-08-10 15:14:01', 97, 479, 21.2000008, 46.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (325, 4, '2016-08-10 15:14:05', 786, 558, 21.2999992, 47.4000015, 1124);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (326, 6, '2016-08-10 15:14:08', 96, 508, 21.2000008, 46.7000008, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (327, 4, '2016-08-10 15:14:12', 786, 549, 21.2999992, 47.4000015, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (328, 6, '2016-08-10 15:14:15', 96, 504, 21.2000008, 46.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (329, 4, '2016-08-10 15:14:21', 787, 560, 21.2999992, 47.5, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (330, 6, '2016-08-10 15:14:22', 97, 497, 21.2000008, 46.7000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (331, 4, '2016-08-10 15:14:28', 788, 547, 21.2999992, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (332, 6, '2016-08-10 15:14:30', 96, 548, 21.2000008, 46.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (333, 4, '2016-08-10 15:14:31', 788, 514, 21.2999992, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (334, 6, '2016-08-10 15:14:38', 96, 508, 21.2000008, 46.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (335, 4, '2016-08-10 15:14:40', 788, 560, 21.2999992, 47.4000015, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (336, 4, '2016-08-10 15:14:50', 789, 553, 21.2999992, 47.4000015, 776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (337, 6, '2016-08-10 15:14:51', 96, 517, 21.2000008, 46.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (338, 4, '2016-08-10 15:14:57', 790, 538, 21.2999992, 47.4000015, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (339, 6, '2016-08-10 15:14:59', 97, 488, 21.2000008, 46.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (340, 4, '2016-08-10 15:14:59', 789, 536, 21.2999992, 47.4000015, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (341, 6, '2016-08-10 15:15:06', 97, 493, 21.2000008, 46.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (342, 4, '2016-08-10 15:15:08', 789, 556, 21.2999992, 47.4000015, 804);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (343, 4, '2016-08-10 15:15:18', 792, 542, 21.2999992, 47.5, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (344, 6, '2016-08-10 15:15:28', 97, 491, 21.2000008, 46.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (345, 3, '2016-08-10 15:17:23', 599, 613, 22.6000004, 44, 2344);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (346, 2, '2016-08-10 15:19:06', 1410, 552, 23.8999996, 40.5999985, 4726);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (347, 2, '2016-08-10 15:19:12', 1410, 552, 23.8999996, 40.5999985, 4726);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (348, 1, '2016-08-10 15:23:47', 401, 625, 22.8999996, 41.7000008, 4388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (349, 7, '2016-08-10 15:26:47', 12597, 2001, 22.3999996, 50.5999985, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (350, 0, '2016-08-10 15:27:57', 133, 572, 22.3999996, 45.2000008, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (351, 3, '2016-08-10 15:32:32', 644, 623, 22.6000004, 44, 5216);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (352, 3, '2016-08-10 15:32:34', 644, 623, 22.6000004, 44, 5216);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (353, 2, '2016-08-10 15:34:17', 1332, 618, 23.8999996, 40.7000008, 4392);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (354, 2, '2016-08-10 15:34:21', 1332, 618, 23.8999996, 40.7000008, 4392);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (355, 1, '2016-08-10 15:39:02', 402, 588, 22.8999996, 42, 4136);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (356, 6, '2016-08-10 15:39:28', 518, 701, 21.1000004, 47.5999985, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (357, 6, '2016-08-10 15:39:48', 517, 677, 21.2000008, 47.5999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (358, 6, '2016-08-10 15:39:54', 517, 650, 21.2000008, 47.5, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (359, 6, '2016-08-10 15:40:01', 517, 672, 21.2000008, 47.5, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (360, 6, '2016-08-10 15:40:08', 640, 626, 21.2000008, 47.5, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (361, 6, '2016-08-10 15:40:14', 644, 595, 21.2000008, 47.5999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (362, 6, '2016-08-10 15:40:22', 633, 641, 21.2000008, 47.5999985, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (363, 6, '2016-08-10 15:40:27', 599, 649, 21.2000008, 47.5999985, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (364, 6, '2016-08-10 15:40:42', 341, 677, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (365, 6, '2016-08-10 15:40:47', 377, 694, 21.2000008, 47.7000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (366, 6, '2016-08-10 15:41:16', 376, 606, 21.2000008, 47.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (367, 6, '2016-08-10 15:41:21', 373, 630, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (368, 6, '2016-08-10 15:41:28', 374, 611, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (369, 6, '2016-08-10 15:41:34', 376, 668, 21.2000008, 47.7000008, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (370, 6, '2016-08-10 15:41:41', 376, 599, 21.2000008, 47.7000008, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (371, 6, '2016-08-10 15:41:48', 377, 611, 21.2000008, 47.7000008, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (372, 6, '2016-08-10 15:41:55', 376, 622, 21.2000008, 47.7000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (373, 6, '2016-08-10 15:42:02', 390, 637, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (374, 4, '2016-08-10 15:42:10', 534, 805, 21.2000008, 49.0999985, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (375, 4, '2016-08-10 15:42:15', 528, 794, 21.2000008, 49, 1120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (376, 6, '2016-08-10 15:42:17', 360, 608, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (377, 4, '2016-08-10 15:42:22', 534, 738, 21.2000008, 48.9000015, 4136);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (378, 6, '2016-08-10 15:42:24', 368, 599, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (380, 6, '2016-08-10 15:42:31', 369, 615, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (382, 6, '2016-08-10 15:42:38', 361, 666, 21.2000008, 47.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (384, 6, '2016-08-10 15:42:44', 361, 668, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (379, 4, '2016-08-10 15:42:31', 528, 771, 21.2000008, 48.9000015, 1124);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (381, 4, '2016-08-10 15:42:38', 544, 769, 21.2000008, 48.9000015, 1042);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (383, 4, '2016-08-10 15:42:43', 563, 795, 21.2000008, 48.9000015, 4960);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (385, 4, '2016-08-10 15:42:52', 537, 787, 21.2000008, 48.9000015, 8851);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (386, 6, '2016-08-10 15:42:53', 326, 654, 21.2000008, 47.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (387, 4, '2016-08-10 15:42:58', 295, 755, 21.2000008, 48.9000015, 1320);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (388, 6, '2016-08-10 15:42:59', 257, 630, 21.2000008, 47.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (389, 4, '2016-08-10 15:43:05', 328, 750, 21.2000008, 48.9000015, 886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (390, 0, '2016-08-10 15:43:06', 112, 575, 22.1000004, 45.2000008, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (391, 0, '2016-08-10 15:43:06', 112, 575, 22.1000004, 45.2000008, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (392, 6, '2016-08-10 15:43:06', 374, 630, 21.2000008, 47.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (393, 4, '2016-08-10 15:43:13', 326, 766, 21.2000008, 49, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (394, 6, '2016-08-10 15:43:14', 371, 611, 21.2000008, 47.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (395, 4, '2016-08-10 15:43:20', 291, 738, 21.2000008, 48.9000015, 10135);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (396, 6, '2016-08-10 15:43:21', 357, 595, 21.2000008, 47.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (397, 4, '2016-08-10 15:43:27', 118, 771, 21.2000008, 48.9000015, 16514);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (398, 6, '2016-08-10 15:43:28', 22, 604, 21.2000008, 47.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (399, 4, '2016-08-10 15:43:35', 549, 743, 21.2000008, 49.0999985, 21841);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (400, 6, '2016-08-10 15:43:35', 25, 632, 21.2000008, 47.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (401, 4, '2016-08-10 15:43:42', 608, 705, 21.2000008, 49.0999985, 13460);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (402, 6, '2016-08-10 15:43:43', 33, 588, 21.2000008, 47.7999992, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (403, 4, '2016-08-10 15:43:49', 662, 703, 21.2000008, 49.0999985, 2198);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (404, 6, '2016-08-10 15:43:50', 33, 583, 21.2000008, 47.7999992, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (405, 4, '2016-08-10 15:43:56', 518, 663, 21.2000008, 49.0999985, 1170);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (406, 6, '2016-08-10 15:43:57', 32, 604, 21.2000008, 47.7999992, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (407, 4, '2016-08-10 15:44:03', 641, 692, 21.2000008, 49, 1046);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (408, 6, '2016-08-10 15:44:04', 32, 567, 21.2000008, 47.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (409, 4, '2016-08-10 15:44:11', 533, 682, 21.2000008, 48.9000015, 1398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (410, 6, '2016-08-10 15:44:11', 32, 615, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (411, 4, '2016-08-10 15:44:17', 612, 692, 21.2000008, 48.9000015, 4246);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (412, 6, '2016-08-10 15:44:18', 25, 602, 21.2000008, 47.7000008, 896);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (413, 4, '2016-08-10 15:44:24', 615, 631, 21.2000008, 48.9000015, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (414, 6, '2016-08-10 15:44:25', 33, 551, 21.2000008, 47.7000008, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (415, 4, '2016-08-10 15:44:32', 617, 660, 21.2000008, 48.7999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (416, 6, '2016-08-10 15:44:33', 32, 578, 21.2000008, 47.5999985, 840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (417, 4, '2016-08-10 15:44:40', 663, 644, 21.2000008, 48.7999992, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (418, 6, '2016-08-10 15:44:40', 33, 569, 21.2000008, 47.5999985, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (419, 4, '2016-08-10 15:44:47', 567, 623, 21.2000008, 48.7999992, 1092);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (420, 6, '2016-08-10 15:44:47', 32, 567, 21.2000008, 47.5999985, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (421, 4, '2016-08-10 15:44:54', 600, 611, 21.2000008, 48.7000008, 1682);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (422, 6, '2016-08-10 15:44:54', 824, 558, 21.2000008, 47.5999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (423, 4, '2016-08-10 15:45:01', 86, 613, 21.2000008, 48.7000008, 6035);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (424, 6, '2016-08-10 15:45:01', 804, 581, 21.2000008, 47.5999985, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (425, 4, '2016-08-10 15:45:08', 21, 583, 21.2000008, 48.7999992, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (426, 6, '2016-08-10 15:45:09', 824, 574, 21.2000008, 47.5999985, 918);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (427, 4, '2016-08-10 15:45:16', 336, 630, 21.2000008, 48.7999992, 5128);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (428, 6, '2016-08-10 15:45:16', 770, 535, 21.2000008, 47.7000008, 868);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (429, 4, '2016-08-10 15:45:23', 311, 627, 21.2000008, 48.7999992, 6273);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (430, 6, '2016-08-10 15:45:23', 822, 558, 21.2000008, 47.7000008, 786);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (431, 4, '2016-08-10 15:45:37', 257, 627, 21.2999992, 48.7000008, 914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (432, 5, '2016-08-10 15:45:45', 371, 632, 20.7999992, 47.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (433, 5, '2016-08-10 15:45:51', 393, 597, 20.8999996, 47.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (434, 5, '2016-08-10 15:45:59', 100, 613, 20.8999996, 47.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (435, 5, '2016-08-10 15:46:06', 373, 618, 20.8999996, 47.7999992, 29574);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (436, 5, '2016-08-10 15:46:12', 408, 599, 20.8999996, 47.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (437, 5, '2016-08-10 15:46:20', 408, 604, 20.8999996, 47.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (438, 5, '2016-08-10 15:46:27', 390, 645, 20.8999996, 47.7999992, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (439, 5, '2016-08-10 15:46:35', 409, 602, 20.8999996, 47.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (440, 5, '2016-08-10 15:46:42', 405, 577, 20.8999996, 47.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (441, 5, '2016-08-10 15:46:48', 406, 602, 20.8999996, 47.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (442, 5, '2016-08-10 15:46:56', 370, 608, 20.8999996, 47.7999992, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (443, 5, '2016-08-10 15:47:03', 72, 592, 20.8999996, 47.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (444, 5, '2016-08-10 15:47:17', 401, 633, 20.8999996, 47.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (445, 5, '2016-08-10 15:47:25', 321, 606, 20.8999996, 47.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (446, 5, '2016-08-10 15:47:32', 329, 636, 20.8999996, 47.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (447, 5, '2016-08-10 15:47:38', 392, 624, 20.8999996, 47.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (448, 5, '2016-08-10 15:47:42', 368, 595, 20.8999996, 47.7999992, 33653);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (449, 3, '2016-08-10 15:47:47', 649, 636, 22.5, 44.5, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (450, 5, '2016-08-10 15:47:54', 401, 618, 20.8999996, 47.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (451, 5, '2016-08-10 15:48:01', 263, 570, 20.8999996, 47.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (452, 5, '2016-08-10 15:48:08', 393, 597, 20.8999996, 47.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (453, 5, '2016-08-10 15:48:14', 275, 602, 20.8999996, 47.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (454, 5, '2016-08-10 15:48:22', 264, 595, 20.8999996, 47.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (455, 5, '2016-08-10 15:48:29', 272, 597, 20.8999996, 47.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (456, 5, '2016-08-10 15:48:37', 265, 561, 20.8999996, 47.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (457, 5, '2016-08-10 15:48:44', 264, 620, 21, 47.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (458, 5, '2016-08-10 15:48:50', 265, 581, 20.8999996, 47.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (459, 5, '2016-08-10 15:48:58', 272, 604, 21, 47.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (460, 5, '2016-08-10 15:49:05', 265, 602, 21, 47.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (461, 5, '2016-08-10 15:49:13', 264, 624, 21, 47.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (462, 5, '2016-08-10 15:49:20', 261, 604, 21, 47.7999992, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (463, 5, '2016-08-10 15:49:26', 264, 613, 21, 47.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (464, 5, '2016-08-10 15:49:28', 272, 608, 21, 47.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (465, 2, '2016-08-10 15:49:35', 840, 536, 24, 40.9000015, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (466, 5, '2016-08-10 15:49:40', 265, 602, 21, 47.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (467, 5, '2016-08-10 15:49:49', 272, 631, 21, 47.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (468, 5, '2016-08-10 15:49:56', 273, 592, 21, 47.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (469, 5, '2016-08-10 15:50:02', 263, 583, 21, 47.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (470, 5, '2016-08-10 15:50:10', 265, 620, 21, 47.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (471, 5, '2016-08-10 15:50:17', 273, 595, 21, 47.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (472, 5, '2016-08-10 15:50:19', 259, 559, 21, 47.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (473, 5, '2016-08-10 15:50:31', 264, 577, 21, 47.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (474, 5, '2016-08-10 15:50:38', 264, 597, 21, 47.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (475, 5, '2016-08-10 15:50:46', 264, 592, 21, 47.7999992, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (476, 5, '2016-08-10 15:50:52', 263, 608, 21, 47.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (477, 5, '2016-08-10 15:51:00', 265, 595, 21, 47.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (478, 5, '2016-08-10 15:51:08', 265, 577, 21, 47.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (479, 5, '2016-08-10 15:51:14', 265, 590, 21, 47.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (480, 5, '2016-08-10 15:51:22', 265, 586, 21, 47.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (481, 5, '2016-08-10 15:51:28', 265, 608, 21, 47.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (482, 5, '2016-08-10 15:51:36', 262, 583, 21, 47.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (483, 5, '2016-08-10 15:51:43', 265, 608, 21, 47.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (484, 5, '2016-08-10 15:51:51', 272, 572, 21, 47.7999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (485, 5, '2016-08-10 15:51:58', 263, 583, 21, 47.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (486, 5, '2016-08-10 15:51:58', 265, 586, 21, 47.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (487, 5, '2016-08-10 15:52:12', 272, 583, 21, 47.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (488, 5, '2016-08-10 15:52:20', 264, 604, 21, 47.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (489, 5, '2016-08-10 15:52:26', 264, 604, 21, 47.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (491, 5, '2016-08-10 15:52:40', 261, 583, 21, 47.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (493, 5, '2016-08-10 15:52:54', 264, 579, 21, 47.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (495, 5, '2016-08-10 15:53:10', 264, 565, 21, 47.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (517, 5, '2016-08-10 15:55:41', 265, 613, 21, 47.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (519, 5, '2016-08-10 15:56:02', 265, 568, 21, 47.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (521, 5, '2016-08-10 15:56:16', 272, 586, 21, 47.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (523, 5, '2016-08-10 15:56:30', 272, 568, 21, 47.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (525, 5, '2016-08-10 15:56:45', 274, 506, 21, 47.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (529, 5, '2016-08-10 15:57:28', 273, 565, 21, 47.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (531, 5, '2016-08-10 15:57:42', 272, 597, 21, 47.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (533, 5, '2016-08-10 15:57:56', 274, 588, 21, 47.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (535, 5, '2016-08-10 15:58:11', 275, 615, 21, 47.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (537, 0, '2016-08-10 15:58:18', 134, 597, 22.1000004, 47, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (539, 5, '2016-08-10 15:58:32', 274, 597, 21, 47.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (541, 5, '2016-08-10 15:58:47', 272, 574, 21, 47.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (543, 5, '2016-08-10 15:59:02', 274, 586, 21, 47.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (553, 5, '2016-08-10 16:00:20', 274, 590, 21, 47.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (565, 5, '2016-08-10 16:01:54', 273, 554, 21, 48, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (567, 5, '2016-08-10 16:02:08', 272, 537, 21, 48, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (569, 5, '2016-08-10 16:02:17', 265, 590, 21, 48, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (571, 5, '2016-08-10 16:02:34', 273, 563, 21, 48, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (490, 5, '2016-08-10 15:52:32', 272, 604, 21, 47.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (492, 5, '2016-08-10 15:52:48', 264, 565, 21, 47.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (494, 5, '2016-08-10 15:53:02', 264, 548, 21, 47.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (496, 5, '2016-08-10 15:53:13', 265, 588, 21, 47.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (497, 5, '2016-08-10 15:53:24', 272, 586, 21, 47.7999992, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (498, 5, '2016-08-10 15:53:30', 272, 579, 21, 47.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (499, 5, '2016-08-10 15:53:38', 273, 548, 21, 47.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (500, 5, '2016-08-10 15:53:46', 265, 602, 21, 47.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (501, 5, '2016-08-10 15:53:52', 262, 579, 21, 47.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (502, 5, '2016-08-10 15:54:00', 265, 574, 21, 47.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (503, 5, '2016-08-10 15:54:07', 273, 572, 21, 47.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (504, 5, '2016-08-10 15:54:07', 272, 568, 21, 47.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (505, 1, '2016-08-10 15:54:15', 360, 620, 22.8999996, 42.2000008, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (506, 5, '2016-08-10 15:54:22', 273, 568, 21, 47.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (507, 5, '2016-08-10 15:54:28', 273, 613, 21, 47.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (508, 5, '2016-08-10 15:54:37', 265, 602, 21, 47.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (509, 5, '2016-08-10 15:54:43', 272, 608, 21, 47.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (510, 5, '2016-08-10 15:54:50', 274, 581, 21, 47.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (511, 5, '2016-08-10 15:54:58', 261, 532, 21, 47.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (512, 5, '2016-08-10 15:55:04', 265, 592, 21, 47.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (513, 5, '2016-08-10 15:55:12', 265, 595, 21, 47.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (514, 5, '2016-08-10 15:55:18', 272, 568, 21, 47.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (515, 5, '2016-08-10 15:55:26', 265, 577, 21, 47.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (516, 5, '2016-08-10 15:55:33', 272, 588, 21, 47.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (518, 5, '2016-08-10 15:55:55', 272, 537, 21, 47.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (520, 5, '2016-08-10 15:56:09', 263, 570, 21, 47.7999992, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (522, 5, '2016-08-10 15:56:23', 274, 586, 21, 47.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (524, 5, '2016-08-10 15:56:38', 274, 510, 21, 47.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (526, 5, '2016-08-10 15:56:59', 265, 552, 21, 47.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (527, 5, '2016-08-10 15:57:06', 274, 570, 21, 47.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (528, 5, '2016-08-10 15:57:14', 264, 574, 21, 47.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (530, 5, '2016-08-10 15:57:35', 273, 543, 21, 47.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (532, 5, '2016-08-10 15:57:52', 274, 570, 21, 47.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (534, 5, '2016-08-10 15:58:04', 274, 543, 21, 47.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (536, 5, '2016-08-10 15:58:17', 274, 577, 21, 47.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (538, 5, '2016-08-10 15:58:26', 265, 583, 21, 47.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (540, 5, '2016-08-10 15:58:40', 276, 586, 21, 47.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (542, 5, '2016-08-10 15:58:54', 275, 565, 21, 47.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (544, 5, '2016-08-10 15:59:08', 273, 543, 21, 47.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (545, 5, '2016-08-10 15:59:16', 274, 559, 21, 47.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (546, 5, '2016-08-10 15:59:29', 276, 581, 21, 47.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (547, 5, '2016-08-10 15:59:37', 273, 552, 21, 47.9000015, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (548, 5, '2016-08-10 15:59:44', 273, 559, 21, 47.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (549, 5, '2016-08-10 15:59:52', 273, 583, 21, 47.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (550, 5, '2016-08-10 15:59:59', 265, 548, 21, 47.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (551, 5, '2016-08-10 16:00:05', 273, 595, 21, 47.9000015, 32913);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (552, 5, '2016-08-10 16:00:13', 274, 586, 21, 47.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (554, 5, '2016-08-10 16:00:26', 275, 550, 21, 47.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (555, 5, '2016-08-10 16:00:34', 273, 581, 21, 48, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (556, 5, '2016-08-10 16:00:41', 264, 592, 21, 48, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (557, 5, '2016-08-10 16:00:50', 274, 595, 21, 48, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (558, 5, '2016-08-10 16:00:56', 275, 539, 21, 48, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (559, 5, '2016-08-10 16:01:04', 272, 554, 21, 48, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (560, 5, '2016-08-10 16:01:11', 274, 554, 21, 48, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (561, 5, '2016-08-10 16:01:17', 273, 546, 21, 48, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (562, 5, '2016-08-10 16:01:32', 272, 512, 21, 48, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (563, 5, '2016-08-10 16:01:36', 274, 579, 21, 48, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (564, 5, '2016-08-10 16:01:47', 263, 552, 21, 48, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (566, 5, '2016-08-10 16:02:01', 265, 548, 21, 48, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (568, 5, '2016-08-10 16:02:08', 264, 557, 21, 48, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (570, 5, '2016-08-10 16:02:30', 272, 599, 21, 48, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (572, 5, '2016-08-10 16:02:44', 273, 561, 21, 48, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (573, 5, '2016-08-10 16:02:53', 265, 548, 21, 48, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (574, 5, '2016-08-10 16:02:53', 262, 586, 21, 48, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (575, 3, '2016-08-10 16:02:58', 616, 663, 22.6000004, 45.4000015, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (576, 5, '2016-08-10 16:03:06', 272, 559, 21, 48, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (577, 5, '2016-08-10 16:03:13', 274, 552, 21, 48, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (578, 5, '2016-08-10 16:03:20', 265, 526, 21, 48, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (579, 5, '2016-08-10 16:03:34', 274, 530, 21, 48, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (580, 5, '2016-08-10 16:03:42', 273, 565, 21, 48, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (581, 5, '2016-08-10 16:03:49', 264, 532, 21, 48, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (582, 5, '2016-08-10 16:03:55', 274, 523, 21, 48, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (583, 5, '2016-08-10 16:04:03', 265, 561, 21, 48, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (584, 5, '2016-08-10 16:04:09', 274, 554, 21, 48, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (585, 5, '2016-08-10 16:04:18', 272, 523, 21, 48, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (586, 5, '2016-08-10 16:04:26', 273, 581, 21, 48, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (587, 5, '2016-08-10 16:04:31', 265, 498, 21, 48, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (588, 5, '2016-08-10 16:04:39', 273, 563, 21, 48, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (589, 2, '2016-08-10 16:04:40', 1400, 537, 24.2000008, 41.2999992, 2368);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (590, 5, '2016-08-10 16:04:46', 273, 565, 21, 48, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (591, 5, '2016-08-10 16:04:54', 265, 552, 21, 48, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (592, 5, '2016-08-10 16:05:02', 274, 528, 21, 48, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (593, 5, '2016-08-10 16:05:07', 273, 568, 21, 48, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (594, 5, '2016-08-10 16:05:15', 264, 561, 21, 48, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (595, 5, '2016-08-10 16:05:23', 265, 568, 21, 48, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (596, 5, '2016-08-10 16:05:30', 273, 523, 21, 48, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (597, 5, '2016-08-10 16:05:36', 272, 530, 21, 48, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (598, 5, '2016-08-10 16:05:43', 275, 498, 21, 48, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (599, 5, '2016-08-10 16:05:51', 274, 546, 21, 48, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (600, 5, '2016-08-10 16:05:57', 273, 543, 21, 48, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (601, 5, '2016-08-10 16:06:05', 273, 552, 21, 48, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (602, 5, '2016-08-10 16:06:15', 274, 565, 21, 48, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (603, 5, '2016-08-10 16:06:19', 264, 583, 21, 48, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (604, 5, '2016-08-10 16:06:27', 274, 543, 21, 48, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (605, 5, '2016-08-10 16:06:34', 273, 548, 21, 47.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (606, 5, '2016-08-10 16:06:42', 273, 557, 21, 47.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (607, 5, '2016-08-10 16:06:48', 265, 546, 21, 47.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (608, 5, '2016-08-10 16:06:56', 273, 563, 21, 47.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (609, 5, '2016-08-10 16:07:03', 272, 565, 21, 47.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (610, 5, '2016-08-10 16:07:09', 273, 583, 21, 47.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (611, 5, '2016-08-10 16:07:17', 273, 561, 21, 47.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (612, 5, '2016-08-10 16:07:24', 265, 550, 21, 47.9000015, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (613, 5, '2016-08-10 16:07:38', 262, 565, 21, 47.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (614, 5, '2016-08-10 16:07:45', 273, 534, 21, 47.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (615, 5, '2016-08-10 16:07:54', 264, 532, 21, 47.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (616, 5, '2016-08-10 16:08:00', 273, 579, 21, 47.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (617, 5, '2016-08-10 16:08:08', 272, 588, 21, 47.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (618, 5, '2016-08-10 16:08:15', 264, 565, 21, 47.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (620, 5, '2016-08-10 16:08:29', 272, 554, 21, 47.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (622, 5, '2016-08-10 16:08:43', 265, 561, 21, 47.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (624, 5, '2016-08-10 16:08:57', 263, 577, 21, 47.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (626, 5, '2016-08-10 16:09:12', 263, 543, 21, 47.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (628, 1, '2016-08-10 16:09:20', 374, 668, 22.8999996, 42.5, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (630, 5, '2016-08-10 16:09:42', 264, 574, 21, 47.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (632, 5, '2016-08-10 16:09:55', 262, 537, 21, 47.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (634, 5, '2016-08-10 16:10:09', 261, 577, 21, 47.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (636, 5, '2016-08-10 16:10:24', 261, 550, 21, 47.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (638, 5, '2016-08-10 16:10:32', 261, 532, 21, 47.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (640, 5, '2016-08-10 16:10:53', 408, 554, 21, 47.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (642, 5, '2016-08-10 16:11:07', 259, 563, 21, 47.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (650, 5, '2016-08-10 16:12:11', 258, 574, 21.1000004, 47.7999992, 28756);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (652, 5, '2016-08-10 16:12:19', 258, 563, 21, 47.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (678, 5, '2016-08-10 16:15:25', 407, 541, 21.1000004, 47.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (680, 5, '2016-08-10 16:15:39', 409, 552, 21.1000004, 47.5, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (619, 5, '2016-08-10 16:08:23', 264, 559, 21, 47.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (621, 5, '2016-08-10 16:08:36', 261, 579, 21, 47.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (623, 5, '2016-08-10 16:08:50', 263, 570, 21, 47.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (625, 5, '2016-08-10 16:09:05', 261, 494, 21, 47.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (627, 5, '2016-08-10 16:09:18', 263, 568, 21, 47.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (629, 5, '2016-08-10 16:09:27', 263, 554, 21, 47.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (631, 5, '2016-08-10 16:09:48', 260, 541, 21, 47.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (637, 5, '2016-08-10 16:10:32', 260, 548, 21, 47.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (639, 5, '2016-08-10 16:10:46', 263, 570, 21, 47.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (641, 5, '2016-08-10 16:10:59', 260, 581, 21, 47.7999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (643, 5, '2016-08-10 16:11:14', 260, 543, 21, 47.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (673, 5, '2016-08-10 16:14:49', 259, 572, 21.1000004, 47.5999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (633, 5, '2016-08-10 16:10:05', 264, 526, 21, 47.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (635, 5, '2016-08-10 16:10:17', 263, 537, 21, 47.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (645, 5, '2016-08-10 16:11:22', 259, 563, 21, 47.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (647, 5, '2016-08-10 16:11:49', 260, 561, 21, 47.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (649, 5, '2016-08-10 16:12:04', 409, 517, 21, 47.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (651, 5, '2016-08-10 16:12:18', 259, 577, 21, 47.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (653, 5, '2016-08-10 16:12:33', 258, 583, 21.1000004, 47.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (655, 5, '2016-08-10 16:12:47', 257, 561, 21.1000004, 47.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (657, 5, '2016-08-10 16:13:02', 261, 586, 21.1000004, 47.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (659, 5, '2016-08-10 16:13:16', 260, 561, 21.1000004, 47.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (661, 5, '2016-08-10 16:13:28', 259, 543, 21.1000004, 47.7000008, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (663, 5, '2016-08-10 16:13:37', 257, 546, 21.1000004, 47.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (665, 5, '2016-08-10 16:13:53', 258, 552, 21.1000004, 47.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (667, 5, '2016-08-10 16:14:06', 259, 586, 21.1000004, 47.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (669, 5, '2016-08-10 16:14:23', 409, 572, 21.1000004, 47.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (671, 5, '2016-08-10 16:14:35', 260, 532, 21.1000004, 47.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (675, 5, '2016-08-10 16:15:04', 257, 570, 21.1000004, 47.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (677, 5, '2016-08-10 16:15:18', 258, 510, 21.1000004, 47.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (679, 5, '2016-08-10 16:15:33', 257, 554, 21.1000004, 47.5, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (644, 5, '2016-08-10 16:11:22', 257, 550, 21, 47.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (646, 5, '2016-08-10 16:11:35', 258, 552, 21, 47.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (648, 5, '2016-08-10 16:11:57', 258, 548, 21, 47.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (654, 5, '2016-08-10 16:12:35', 256, 568, 21, 47.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (656, 5, '2016-08-10 16:12:54', 257, 565, 21.1000004, 47.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (658, 5, '2016-08-10 16:13:10', 256, 568, 21.1000004, 47.7000008, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (660, 5, '2016-08-10 16:13:23', 258, 579, 21.1000004, 47.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (662, 0, '2016-08-10 16:13:34', 118, 558, 22.5, 47.0999985, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (664, 5, '2016-08-10 16:13:45', 259, 546, 21.1000004, 47.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (666, 5, '2016-08-10 16:13:59', 259, 590, 21.1000004, 47.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (668, 5, '2016-08-10 16:14:13', 258, 557, 21.1000004, 47.5999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (670, 5, '2016-08-10 16:14:27', 258, 548, 21.1000004, 47.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (672, 5, '2016-08-10 16:14:42', 257, 590, 21.1000004, 47.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (674, 5, '2016-08-10 16:14:57', 257, 543, 21.1000004, 47.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (676, 5, '2016-08-10 16:15:11', 257, 546, 21.1000004, 47.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (681, 5, '2016-08-10 16:15:55', 256, 572, 21.1000004, 47.5, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (682, 5, '2016-08-10 16:16:01', 408, 554, 21.1000004, 47.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (683, 5, '2016-08-10 16:16:15', 409, 561, 21.1000004, 47.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (684, 5, '2016-08-10 16:16:23', 408, 579, 21.1000004, 47.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (685, 5, '2016-08-10 16:16:30', 408, 559, 21.1000004, 47.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (686, 5, '2016-08-10 16:16:37', 405, 543, 21.1000004, 47.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (687, 5, '2016-08-10 16:16:45', 407, 574, 21.1000004, 47.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (688, 5, '2016-08-10 16:16:51', 409, 568, 21.1000004, 47.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (689, 5, '2016-08-10 16:16:59', 407, 572, 21.1000004, 47.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (690, 5, '2016-08-10 16:17:06', 408, 548, 21.1000004, 47.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (691, 5, '2016-08-10 16:17:14', 407, 574, 21.1000004, 47.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (692, 5, '2016-08-10 16:17:21', 406, 572, 21.1000004, 47.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (693, 5, '2016-08-10 16:17:27', 405, 599, 21.1000004, 47.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (694, 5, '2016-08-10 16:17:35', 407, 563, 21.1000004, 47.5, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (695, 5, '2016-08-10 16:17:42', 403, 557, 21.1000004, 47.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (696, 5, '2016-08-10 16:17:49', 406, 530, 21.1000004, 47.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (697, 5, '2016-08-10 16:17:56', 405, 565, 21.1000004, 47.5, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (698, 5, '2016-08-10 16:18:03', 404, 557, 21.1000004, 47.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (699, 5, '2016-08-10 16:18:04', 403, 557, 21.1000004, 47.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (700, 3, '2016-08-10 16:18:11', 547, 614, 22.7000008, 45.7000008, 6035);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (701, 5, '2016-08-10 16:18:18', 404, 600, 21.1000004, 47.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (702, 5, '2016-08-10 16:18:25', 404, 548, 21.1000004, 47.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (703, 5, '2016-08-10 16:18:33', 404, 546, 21.1000004, 47.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (704, 5, '2016-08-10 16:18:39', 404, 588, 21.1000004, 47.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (705, 5, '2016-08-10 16:18:47', 402, 548, 21.1000004, 47.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (706, 5, '2016-08-10 16:18:57', 400, 555, 21.1000004, 47.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (707, 5, '2016-08-10 16:19:00', 403, 575, 21.1000004, 47.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (708, 5, '2016-08-10 16:19:08', 402, 557, 21.1000004, 47.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (709, 5, '2016-08-10 16:19:16', 402, 552, 21.1000004, 47.4000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (710, 5, '2016-08-10 16:19:23', 403, 566, 21.1000004, 47.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (711, 5, '2016-08-10 16:19:30', 401, 550, 21.1000004, 47.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (712, 5, '2016-08-10 16:19:36', 401, 557, 21.1000004, 47.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (713, 5, '2016-08-10 16:19:44', 401, 524, 21.1000004, 47.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (714, 5, '2016-08-10 16:19:50', 403, 524, 21.1000004, 47.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (715, 2, '2016-08-10 16:19:50', 803, 524, 24.2000008, 41.7000008, 9217);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (716, 2, '2016-08-10 16:19:51', 803, 524, 24.2000008, 41.7000008, 9217);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (717, 5, '2016-08-10 16:20:03', 393, 550, 21.1000004, 47.4000015, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (718, 5, '2016-08-10 16:20:06', 402, 532, 21.1000004, 47.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (719, 5, '2016-08-10 16:20:12', 401, 510, 21.1000004, 47.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (720, 5, '2016-08-10 16:20:20', 401, 580, 21.1000004, 47.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (721, 5, '2016-08-10 16:20:26', 400, 573, 21.1000004, 47.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (722, 5, '2016-08-10 16:20:34', 401, 605, 21.1000004, 47.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (723, 5, '2016-08-10 16:20:39', 400, 544, 21.1000004, 47.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (724, 5, '2016-08-10 16:20:49', 402, 571, 21.1000004, 47.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (725, 5, '2016-08-10 16:20:55', 401, 577, 21.1000004, 47.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (726, 5, '2016-08-10 16:21:02', 400, 515, 21.1000004, 47.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (727, 5, '2016-08-10 16:21:17', 391, 531, 21.1000004, 47.2999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (728, 5, '2016-08-10 16:21:25', 402, 544, 21.1000004, 47.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (729, 5, '2016-08-10 16:21:32', 393, 529, 21.1000004, 47.2999992, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (730, 5, '2016-08-10 16:21:38', 401, 527, 21.1000004, 47.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (731, 5, '2016-08-10 16:22:01', 400, 538, 21.1000004, 47.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (732, 5, '2016-08-10 16:22:08', 400, 580, 21.1000004, 47.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (733, 5, '2016-08-10 16:22:14', 391, 533, 21.1000004, 47.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (734, 5, '2016-08-10 16:22:22', 400, 544, 21.1000004, 47.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (735, 5, '2016-08-10 16:22:28', 393, 587, 21.1000004, 47.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (736, 5, '2016-08-10 16:22:29', 391, 573, 21.1000004, 47.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (737, 5, '2016-08-10 16:22:38', 391, 591, 21.1000004, 47.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (738, 5, '2016-08-10 16:22:51', 390, 589, 21.1000004, 47.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (739, 5, '2016-08-10 16:22:59', 392, 584, 21.1000004, 47.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (740, 5, '2016-08-10 16:23:04', 392, 558, 21.1000004, 47.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (741, 5, '2016-08-10 16:23:12', 392, 540, 21.1000004, 47.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (742, 5, '2016-08-10 16:23:19', 390, 555, 21.1000004, 47.2999992, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (743, 5, '2016-08-10 16:23:26', 388, 578, 21.1000004, 47.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (744, 5, '2016-08-10 16:23:34', 390, 540, 21.1000004, 47.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (745, 5, '2016-08-10 16:23:41', 393, 566, 21.1000004, 47.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (746, 5, '2016-08-10 16:23:47', 390, 547, 21.1000004, 47.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (747, 5, '2016-08-10 16:23:56', 390, 544, 21.1000004, 47.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (748, 5, '2016-08-10 16:24:02', 391, 560, 21.1000004, 47.2999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (749, 5, '2016-08-10 16:24:10', 388, 580, 21.1000004, 47.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (750, 5, '2016-08-10 16:24:16', 389, 538, 21.1000004, 47.2000008, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (751, 5, '2016-08-10 16:24:24', 390, 575, 21.1000004, 47.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (752, 5, '2016-08-10 16:24:29', 386, 578, 21.1000004, 47.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (753, 1, '2016-08-10 16:24:32', 391, 623, 22.8999996, 42.7999992, 2454);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (754, 5, '2016-08-10 16:24:38', 390, 566, 21.1000004, 47.2000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (755, 5, '2016-08-10 16:24:45', 389, 542, 21.1000004, 47.2000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (756, 5, '2016-08-10 16:24:52', 389, 544, 21.1000004, 47.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (757, 5, '2016-08-10 16:25:00', 389, 531, 21.1000004, 47.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (758, 5, '2016-08-10 16:25:07', 390, 566, 21.1000004, 47.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (759, 5, '2016-08-10 16:25:14', 391, 538, 21.1000004, 47.2000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (760, 5, '2016-08-10 16:25:22', 390, 547, 21.1000004, 47.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (761, 5, '2016-08-10 16:25:28', 392, 560, 21.1000004, 47.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (762, 5, '2016-08-10 16:25:36', 390, 569, 21.1000004, 47.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (763, 5, '2016-08-10 16:25:43', 388, 551, 21.1000004, 47.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (764, 5, '2016-08-10 16:25:50', 391, 575, 21.1000004, 47.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (765, 5, '2016-08-10 16:25:58', 400, 542, 21.1000004, 47.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (766, 5, '2016-08-10 16:26:03', 392, 551, 21.1000004, 47.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (767, 5, '2016-08-10 16:26:12', 393, 555, 21.1000004, 47.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (768, 5, '2016-08-10 16:26:19', 392, 547, 21.1000004, 47.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (769, 5, '2016-08-10 16:26:26', 392, 569, 21.1000004, 47.0999985, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (770, 5, '2016-08-10 16:26:33', 393, 527, 21.1000004, 47.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (771, 5, '2016-08-10 16:26:40', 401, 566, 21.1000004, 47.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (772, 5, '2016-08-10 16:26:47', 390, 564, 21.1000004, 47.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (773, 5, '2016-08-10 16:26:54', 401, 584, 21.1000004, 47.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (775, 5, '2016-08-10 16:27:09', 393, 542, 21.1000004, 47.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (777, 5, '2016-08-10 16:27:24', 393, 569, 21.1000004, 47.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (779, 5, '2016-08-10 16:27:39', 401, 582, 21.1000004, 47.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (781, 5, '2016-08-10 16:27:53', 402, 566, 21.1000004, 47.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (783, 5, '2016-08-10 16:28:06', 402, 555, 21.1000004, 47.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (774, 5, '2016-08-10 16:27:02', 393, 600, 21.1000004, 47.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (776, 5, '2016-08-10 16:27:16', 393, 566, 21.1000004, 47.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (778, 5, '2016-08-10 16:27:31', 400, 587, 21.1000004, 47.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (780, 5, '2016-08-10 16:27:44', 403, 573, 21.1000004, 47.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (782, 5, '2016-08-10 16:27:59', 393, 535, 21.1000004, 47.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (790, 5, '2016-08-10 16:28:49', 403, 555, 21.1000004, 47.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (792, 5, '2016-08-10 16:29:04', 400, 535, 21.1000004, 47.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (794, 5, '2016-08-10 16:29:18', 404, 609, 21.1000004, 47.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (796, 5, '2016-08-10 16:29:30', 402, 544, 21.1000004, 47.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (798, 5, '2016-08-10 16:29:46', 404, 584, 21.1000004, 47.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (784, 5, '2016-08-10 16:28:14', 404, 587, 21.1000004, 47.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (786, 5, '2016-08-10 16:28:28', 404, 566, 21.1000004, 47.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (788, 5, '2016-08-10 16:28:37', 402, 578, 21.1000004, 47.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (785, 5, '2016-08-10 16:28:21', 402, 573, 21.1000004, 47.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (787, 5, '2016-08-10 16:28:36', 404, 558, 21.1000004, 47.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (789, 0, '2016-08-10 16:28:43', 98, 545, 22.7000008, 47.0999985, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (791, 5, '2016-08-10 16:28:57', 406, 571, 21.1000004, 47.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (793, 5, '2016-08-10 16:29:11', 404, 553, 21.1000004, 47.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (795, 5, '2016-08-10 16:29:26', 403, 584, 21.1000004, 47.0999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (797, 5, '2016-08-10 16:29:40', 404, 564, 21.1000004, 47.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (799, 5, '2016-08-10 16:30:02', 404, 544, 21.1000004, 47.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (800, 5, '2016-08-10 16:30:02', 405, 560, 21.1000004, 47.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (801, 5, '2016-08-10 16:30:09', 404, 535, 21.1000004, 47.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (802, 5, '2016-08-10 16:30:16', 401, 529, 21.1000004, 47.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (803, 5, '2016-08-10 16:30:23', 404, 533, 21.1000004, 47, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (804, 5, '2016-08-10 16:30:30', 406, 531, 21.1000004, 47, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (805, 5, '2016-08-10 16:30:37', 404, 569, 21.1000004, 47, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (806, 5, '2016-08-10 16:30:44', 407, 555, 21.1000004, 47, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (807, 5, '2016-08-10 16:30:46', 406, 571, 21.1000004, 47, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (808, 5, '2016-08-10 16:31:00', 403, 555, 21.1000004, 47, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (809, 5, '2016-08-10 16:31:05', 404, 544, 21.1000004, 47, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (810, 5, '2016-08-10 16:31:13', 407, 549, 21.1000004, 47, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (811, 5, '2016-08-10 16:31:20', 402, 538, 21.1000004, 47, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (812, 5, '2016-08-10 16:31:28', 405, 560, 21.1000004, 47, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (813, 5, '2016-08-10 16:31:35', 404, 527, 21.1000004, 47, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (814, 5, '2016-08-10 16:31:41', 403, 520, 21.1000004, 47, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (815, 5, '2016-08-10 16:31:49', 403, 549, 21.1000004, 47, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (816, 5, '2016-08-10 16:31:56', 404, 596, 21.1000004, 47, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (817, 5, '2016-08-10 16:32:04', 404, 589, 21.1000004, 47, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (818, 5, '2016-08-10 16:32:11', 404, 527, 21.1000004, 47, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (819, 5, '2016-08-10 16:32:17', 405, 584, 21.1000004, 47, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (820, 5, '2016-08-10 16:32:26', 403, 566, 21.1000004, 47, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (821, 5, '2016-08-10 16:32:32', 401, 529, 21.2000008, 46.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (822, 5, '2016-08-10 16:32:38', 403, 562, 21.2000008, 47, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (823, 5, '2016-08-10 16:32:40', 405, 580, 21.2000008, 47, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (824, 5, '2016-08-10 16:32:54', 403, 569, 21.2000008, 47, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (825, 5, '2016-08-10 16:33:01', 404, 542, 21.2000008, 47, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (826, 5, '2016-08-10 16:33:08', 404, 589, 21.2000008, 47, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (827, 5, '2016-08-10 16:33:15', 400, 555, 21.2000008, 47, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (828, 3, '2016-08-10 16:33:16', 272, 656, 23, 45.5999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (829, 5, '2016-08-10 16:33:23', 401, 544, 21.2000008, 47, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (830, 5, '2016-08-10 16:33:29', 403, 571, 21.2000008, 47, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (831, 5, '2016-08-10 16:33:37', 393, 566, 21.2000008, 47, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (832, 5, '2016-08-10 16:33:40', 402, 520, 21.2000008, 47, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (833, 3, '2016-08-10 16:33:44', 272, 656, 23, 45.5999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (834, 5, '2016-08-10 16:33:51', 401, 560, 21.2000008, 47, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (835, 5, '2016-08-10 16:33:59', 401, 584, 21.2000008, 47, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (836, 5, '2016-08-10 16:34:06', 392, 518, 21.2000008, 47, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (837, 5, '2016-08-10 16:34:12', 401, 540, 21.2000008, 47, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (838, 5, '2016-08-10 16:34:27', 400, 591, 21.2000008, 47, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (839, 5, '2016-08-10 16:34:35', 403, 575, 21.2000008, 46.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (840, 5, '2016-08-10 16:34:42', 400, 555, 21.2000008, 46.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (841, 5, '2016-08-10 16:34:48', 393, 513, 21.2000008, 46.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (842, 5, '2016-08-10 16:34:55', 401, 573, 21.2000008, 46.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (843, 5, '2016-08-10 16:35:00', 403, 531, 21.2000008, 46.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (844, 2, '2016-08-10 16:35:04', 788, 569, 24.1000004, 42.0999985, 4498);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (845, 5, '2016-08-10 16:35:10', 401, 547, 21.2000008, 46.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (846, 5, '2016-08-10 16:35:17', 402, 571, 21.2000008, 46.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (847, 5, '2016-08-10 16:35:25', 403, 584, 21.2000008, 46.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (848, 5, '2016-08-10 16:35:31', 393, 551, 21.2000008, 46.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (849, 5, '2016-08-10 16:35:39', 400, 571, 21.2000008, 46.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (850, 5, '2016-08-10 16:35:46', 402, 562, 21.2000008, 46.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (851, 5, '2016-08-10 16:35:54', 391, 553, 21.2000008, 46.9000015, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (852, 5, '2016-08-10 16:36:01', 400, 527, 21.2000008, 46.9000015, 29446);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (853, 5, '2016-08-10 16:36:15', 401, 558, 21.2000008, 46.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (854, 5, '2016-08-10 16:36:21', 393, 535, 21.2000008, 46.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (855, 5, '2016-08-10 16:36:29', 401, 531, 21.2000008, 46.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (856, 5, '2016-08-10 16:36:37', 402, 551, 21.2000008, 46.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (857, 5, '2016-08-10 16:36:44', 392, 560, 21.2000008, 46.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (858, 5, '2016-08-10 16:36:50', 401, 524, 21.2000008, 46.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (859, 5, '2016-08-10 16:36:57', 401, 540, 21.2000008, 46.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (860, 5, '2016-08-10 16:37:05', 400, 558, 21.2000008, 46.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (861, 5, '2016-08-10 16:37:12', 403, 529, 21.2000008, 46.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (862, 5, '2016-08-10 16:37:19', 405, 531, 21.2000008, 46.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (863, 5, '2016-08-10 16:37:27', 402, 551, 21.2000008, 46.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (864, 5, '2016-08-10 16:37:33', 405, 571, 21.2000008, 46.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (865, 5, '2016-08-10 16:37:38', 406, 589, 21.2000008, 46.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (866, 5, '2016-08-10 16:37:48', 403, 527, 21.2000008, 46.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (867, 5, '2016-08-10 16:37:56', 404, 538, 21.2000008, 46.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (868, 5, '2016-08-10 16:38:03', 405, 582, 21.2000008, 46.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (869, 5, '2016-08-10 16:38:09', 401, 560, 21.2000008, 46.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (870, 5, '2016-08-10 16:38:17', 405, 555, 21.2000008, 46.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (871, 5, '2016-08-10 16:38:24', 404, 549, 21.2000008, 46.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (872, 5, '2016-08-10 16:38:31', 406, 544, 21.2000008, 46.9000015, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (873, 5, '2016-08-10 16:38:34', 404, 558, 21.2000008, 46.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (874, 5, '2016-08-10 16:38:45', 406, 555, 21.2000008, 46.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (875, 5, '2016-08-10 16:38:53', 406, 553, 21.2000008, 46.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (876, 5, '2016-08-10 16:39:00', 406, 524, 21.2000008, 46.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (877, 5, '2016-08-10 16:39:07', 408, 580, 21.2000008, 46.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (878, 5, '2016-08-10 16:39:15', 407, 538, 21.2000008, 46.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (879, 5, '2016-08-10 16:39:21', 404, 538, 21.2000008, 46.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (880, 5, '2016-08-10 16:39:29', 408, 540, 21.2000008, 46.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (881, 5, '2016-08-10 16:39:36', 408, 560, 21.2000008, 46.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (882, 5, '2016-08-10 16:39:39', 408, 535, 21.2000008, 46.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (883, 1, '2016-08-10 16:39:44', 294, 607, 22.7999992, 43.2000008, 12581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (884, 5, '2016-08-10 16:39:50', 256, 544, 21.2000008, 46.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (885, 5, '2016-08-10 16:39:57', 256, 566, 21.2000008, 46.7999992, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (886, 5, '2016-08-10 16:40:05', 407, 582, 21.2000008, 46.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (887, 5, '2016-08-10 16:40:12', 256, 538, 21.2000008, 46.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (888, 5, '2016-08-10 16:40:19', 257, 591, 21.2000008, 46.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (889, 5, '2016-08-10 16:40:27', 407, 518, 21.2000008, 46.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (890, 5, '2016-08-10 16:40:33', 409, 555, 21.2000008, 46.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (891, 5, '2016-08-10 16:40:41', 256, 553, 21.2000008, 46.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (892, 5, '2016-08-10 16:40:47', 256, 538, 21.2000008, 46.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (893, 5, '2016-08-10 16:40:53', 408, 562, 21.2000008, 46.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (894, 5, '2016-08-10 16:41:02', 256, 542, 21.2000008, 46.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (895, 5, '2016-08-10 16:41:09', 409, 562, 21.2000008, 46.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (896, 5, '2016-08-10 16:41:17', 409, 569, 21.2000008, 46.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (897, 5, '2016-08-10 16:41:23', 257, 571, 21.2000008, 46.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (898, 5, '2016-08-10 16:41:31', 256, 555, 21.2000008, 46.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (899, 5, '2016-08-10 16:41:38', 408, 540, 21.2000008, 46.7000008, 29464);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (901, 5, '2016-08-10 16:41:52', 258, 540, 21.2000008, 46.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (903, 5, '2016-08-10 16:42:07', 258, 533, 21.2000008, 46.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (900, 5, '2016-08-10 16:41:45', 256, 566, 21.2000008, 46.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (902, 5, '2016-08-10 16:41:59', 256, 515, 21.2000008, 46.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (904, 5, '2016-08-10 16:42:14', 257, 573, 21.2000008, 46.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (906, 5, '2016-08-10 16:42:29', 409, 547, 21.2999992, 46.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (916, 5, '2016-08-10 16:43:41', 409, 564, 21.2999992, 46.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (918, 5, '2016-08-10 16:43:49', 404, 533, 21.2999992, 46.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (920, 5, '2016-08-10 16:44:02', 407, 573, 21.2999992, 46.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (905, 5, '2016-08-10 16:42:21', 256, 558, 21.2000008, 46.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (907, 5, '2016-08-10 16:42:36', 256, 540, 21.2999992, 46.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (909, 5, '2016-08-10 16:42:48', 409, 555, 21.2999992, 46.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (911, 5, '2016-08-10 16:43:04', 256, 558, 21.2999992, 46.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (913, 5, '2016-08-10 16:43:19', 409, 518, 21.2999992, 46.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (915, 5, '2016-08-10 16:43:33', 409, 531, 21.2999992, 46.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (917, 5, '2016-08-10 16:43:47', 408, 558, 21.2999992, 46.5999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (919, 0, '2016-08-10 16:43:55', 128, 558, 22.5, 44.2000008, 8215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (921, 5, '2016-08-10 16:44:09', 256, 558, 21.2999992, 46.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (923, 5, '2016-08-10 16:44:33', 409, 547, 21.2999992, 46.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (925, 5, '2016-08-10 16:44:45', 406, 551, 21.2999992, 46.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (908, 5, '2016-08-10 16:42:41', 407, 547, 21.2999992, 46.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (910, 5, '2016-08-10 16:42:58', 407, 542, 21.2999992, 46.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (912, 5, '2016-08-10 16:43:10', 407, 551, 21.2999992, 46.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (914, 5, '2016-08-10 16:43:26', 408, 544, 21.2999992, 46.5999985, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (922, 5, '2016-08-10 16:44:16', 407, 582, 21.2999992, 46.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (924, 5, '2016-08-10 16:44:37', 405, 533, 21.2999992, 46.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (926, 5, '2016-08-10 16:44:52', 405, 547, 21.2999992, 46.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (927, 5, '2016-08-10 16:44:59', 400, 540, 21.2999992, 46.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (928, 5, '2016-08-10 16:45:07', 403, 527, 21.2999992, 46.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (929, 5, '2016-08-10 16:45:13', 404, 553, 21.2999992, 46.5999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (930, 5, '2016-08-10 16:45:21', 405, 573, 21.2999992, 46.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (931, 5, '2016-08-10 16:45:28', 402, 560, 21.2999992, 46.5999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (932, 5, '2016-08-10 16:45:35', 404, 560, 21.2999992, 46.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (933, 5, '2016-08-10 16:45:42', 404, 531, 21.2999992, 46.5999985, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (934, 5, '2016-08-10 16:45:49', 403, 533, 21.2999992, 46.5999985, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (935, 5, '2016-08-10 16:45:56', 404, 566, 21.2999992, 46.5999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (936, 5, '2016-08-10 16:46:04', 402, 544, 21.2999992, 46.5999985, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (937, 5, '2016-08-10 16:46:10', 400, 544, 21.2999992, 46.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (938, 5, '2016-08-10 16:46:25', 403, 569, 21.2999992, 46.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (939, 5, '2016-08-10 16:46:33', 403, 535, 21.2999992, 46.5999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (940, 5, '2016-08-10 16:46:39', 403, 562, 21.2999992, 46.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (941, 5, '2016-08-10 16:46:46', 404, 527, 21.2999992, 46.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (942, 5, '2016-08-10 16:46:53', 401, 542, 21.2999992, 46.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (943, 5, '2016-08-10 16:47:01', 401, 553, 21.2999992, 46.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (944, 5, '2016-08-10 16:47:09', 403, 533, 21.2999992, 46.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (945, 5, '2016-08-10 16:47:18', 392, 560, 21.2999992, 46.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (946, 5, '2016-08-10 16:47:22', 400, 555, 21.2999992, 46.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (947, 5, '2016-08-10 16:47:30', 400, 566, 21.2999992, 46.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (948, 5, '2016-08-10 16:47:37', 401, 547, 21.2999992, 46.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (949, 5, '2016-08-10 16:47:38', 393, 518, 21.2999992, 46.5999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (950, 5, '2016-08-10 16:47:52', 400, 562, 21.2999992, 46.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (951, 5, '2016-08-10 16:47:58', 400, 581, 21.2999992, 46.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (952, 5, '2016-08-10 16:48:06', 401, 558, 21.2999992, 46.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (953, 5, '2016-08-10 16:48:12', 401, 553, 21.2999992, 46.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (954, 5, '2016-08-10 16:48:20', 400, 569, 21.2999992, 46.5, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (955, 5, '2016-08-10 16:48:28', 391, 542, 21.2999992, 46.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (956, 5, '2016-08-10 16:48:35', 393, 547, 21.2999992, 46.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (957, 5, '2016-08-10 16:48:42', 402, 535, 21.2999992, 46.5, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (958, 5, '2016-08-10 16:48:49', 400, 535, 21.2999992, 46.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (959, 5, '2016-08-10 16:48:50', 401, 544, 21.2999992, 46.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (960, 3, '2016-08-10 16:48:51', 311, 633, 22.7000008, 43.4000015, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (961, 3, '2016-08-10 16:48:56', 311, 633, 22.7000008, 43.4000015, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (962, 5, '2016-08-10 16:49:03', 401, 583, 21.2999992, 46.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (963, 5, '2016-08-10 16:49:11', 392, 565, 21.2999992, 46.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (964, 5, '2016-08-10 16:49:18', 393, 560, 21.2999992, 46.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (965, 5, '2016-08-10 16:49:24', 393, 540, 21.2999992, 46.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (966, 5, '2016-08-10 16:49:32', 389, 594, 21.2999992, 46.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (967, 5, '2016-08-10 16:49:39', 390, 544, 21.2999992, 46.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (968, 5, '2016-08-10 16:49:47', 391, 558, 21.2999992, 46.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (969, 5, '2016-08-10 16:49:53', 392, 569, 21.2999992, 46.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (970, 5, '2016-08-10 16:50:00', 389, 547, 21.2999992, 46.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (971, 5, '2016-08-10 16:50:08', 391, 553, 21.2999992, 46.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (972, 5, '2016-08-10 16:50:11', 391, 581, 21.2999992, 46.4000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (973, 2, '2016-08-10 16:50:16', 808, 553, 24, 42.5, 4392);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (974, 5, '2016-08-10 16:50:30', 391, 569, 21.2999992, 46.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (975, 5, '2016-08-10 16:50:36', 389, 538, 21.2999992, 46.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (976, 5, '2016-08-10 16:50:44', 386, 588, 21.2999992, 46.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (977, 5, '2016-08-10 16:50:51', 390, 544, 21.2999992, 46.4000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (978, 5, '2016-08-10 16:50:58', 391, 535, 21.2999992, 46.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (979, 5, '2016-08-10 16:51:00', 389, 558, 21.2999992, 46.4000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (980, 5, '2016-08-10 16:51:12', 391, 574, 21.2999992, 46.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (981, 5, '2016-08-10 16:51:20', 390, 569, 21.2999992, 46.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (982, 5, '2016-08-10 16:51:26', 387, 576, 21.2999992, 46.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (983, 5, '2016-08-10 16:51:34', 387, 544, 21.2999992, 46.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (984, 5, '2016-08-10 16:51:41', 388, 547, 21.2999992, 46.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (985, 5, '2016-08-10 16:51:48', 377, 558, 21.2999992, 46.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (986, 5, '2016-08-10 16:51:56', 386, 594, 21.3999996, 46.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (987, 5, '2016-08-10 16:52:02', 386, 513, 21.2999992, 46.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (988, 5, '2016-08-10 16:52:10', 386, 551, 21.3999996, 46.4000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (989, 5, '2016-08-10 16:52:17', 385, 560, 21.2999992, 46.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (990, 5, '2016-08-10 16:52:24', 385, 583, 21.3999996, 46.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (991, 5, '2016-08-10 16:52:32', 386, 558, 21.3999996, 46.4000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (992, 5, '2016-08-10 16:52:38', 387, 538, 21.3999996, 46.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (993, 5, '2016-08-10 16:52:42', 387, 556, 21.2999992, 46.4000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (994, 5, '2016-08-10 16:52:53', 384, 544, 21.3999996, 46.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (995, 5, '2016-08-10 16:52:58', 377, 538, 21.3999996, 46.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (996, 5, '2016-08-10 16:53:00', 386, 532, 21.3999996, 46.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (997, 5, '2016-08-10 16:53:14', 388, 556, 21.3999996, 46.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (998, 5, '2016-08-10 16:53:22', 386, 542, 21.3999996, 46.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (999, 5, '2016-08-10 16:53:28', 388, 558, 21.3999996, 46.4000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1000, 5, '2016-08-10 16:53:36', 387, 536, 21.3999996, 46.4000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1001, 5, '2016-08-10 16:53:43', 385, 518, 21.3999996, 46.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1002, 5, '2016-08-10 16:53:50', 385, 558, 21.3999996, 46.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1003, 5, '2016-08-10 16:53:58', 386, 556, 21.3999996, 46.4000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1004, 5, '2016-08-10 16:54:05', 376, 563, 21.3999996, 46.4000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1005, 5, '2016-08-10 16:54:12', 384, 531, 21.3999996, 46.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1006, 5, '2016-08-10 16:54:20', 384, 548, 21.3999996, 46.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1007, 5, '2016-08-10 16:54:34', 385, 534, 21.3999996, 46.4000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1008, 5, '2016-08-10 16:54:41', 385, 548, 21.3999996, 46.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1009, 5, '2016-08-10 16:54:48', 386, 561, 21.3999996, 46.2999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1010, 5, '2016-08-10 16:54:51', 386, 556, 21.3999996, 46.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1011, 1, '2016-08-10 16:54:56', 336, 615, 22.7999992, 43.2000008, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1012, 5, '2016-08-10 16:55:02', 387, 576, 21.3999996, 46.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1013, 5, '2016-08-10 16:55:10', 385, 541, 21.3999996, 46.2999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1014, 5, '2016-08-10 16:55:15', 376, 581, 21.3999996, 46.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1015, 1, '2016-08-10 16:55:16', 336, 615, 22.7999992, 43.2000008, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1016, 1, '2016-08-10 16:55:16', 336, 615, 22.7999992, 43.2000008, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1017, 5, '2016-08-10 16:55:24', 386, 563, 21.3999996, 46.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1018, 5, '2016-08-10 16:55:31', 388, 509, 21.3999996, 46.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1019, 5, '2016-08-10 16:55:38', 387, 554, 21.3999996, 46.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1020, 5, '2016-08-10 16:55:39', 388, 538, 21.3999996, 46.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1021, 5, '2016-08-10 16:55:52', 387, 565, 21.3999996, 46.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1022, 5, '2016-08-10 16:55:59', 385, 532, 21.3999996, 46.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1023, 5, '2016-08-10 16:56:08', 385, 565, 21.3999996, 46.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1024, 5, '2016-08-10 16:56:14', 386, 522, 21.3999996, 46.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1025, 5, '2016-08-10 16:56:22', 376, 574, 21.3999996, 46.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1026, 5, '2016-08-10 16:56:28', 377, 576, 21.3999996, 46.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1027, 5, '2016-08-10 16:56:36', 384, 520, 21.3999996, 46.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1029, 5, '2016-08-10 16:56:50', 384, 583, 21.3999996, 46.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1037, 5, '2016-08-10 16:57:48', 389, 534, 21.3999996, 46.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1039, 5, '2016-08-10 16:58:02', 388, 579, 21.3999996, 46.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1041, 5, '2016-08-10 16:58:16', 386, 545, 21.3999996, 46.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1043, 5, '2016-08-10 16:58:31', 389, 565, 21.3999996, 46.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1045, 5, '2016-08-10 16:58:45', 385, 588, 21.3999996, 46.2000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1047, 5, '2016-08-10 16:59:00', 388, 528, 21.3999996, 46.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1049, 0, '2016-08-10 16:59:07', 65, 561, 22, 48.4000015, 4864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1051, 5, '2016-08-10 16:59:20', 388, 543, 21.3999996, 46.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1053, 5, '2016-08-10 16:59:35', 391, 567, 21.3999996, 46.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1055, 5, '2016-08-10 16:59:50', 386, 536, 21.3999996, 46.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1057, 5, '2016-08-10 17:00:04', 392, 550, 21.3999996, 46.2000008, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1059, 5, '2016-08-10 17:00:18', 392, 563, 21.3999996, 46.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1061, 5, '2016-08-10 17:00:40', 389, 552, 21.3999996, 46.2000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1063, 5, '2016-08-10 17:00:54', 387, 570, 21.3999996, 46.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1065, 5, '2016-08-10 17:01:07', 390, 528, 21.3999996, 46.2000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1067, 5, '2016-08-10 17:01:23', 388, 530, 21.3999996, 46.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1069, 5, '2016-08-10 17:01:37', 387, 576, 21.3999996, 46.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1071, 5, '2016-08-10 17:01:51', 391, 588, 21.3999996, 46.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1028, 5, '2016-08-10 16:56:42', 387, 538, 21.3999996, 46.2999992, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1030, 5, '2016-08-10 16:56:58', 386, 550, 21.3999996, 46.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1032, 5, '2016-08-10 16:57:12', 387, 536, 21.3999996, 46.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1034, 5, '2016-08-10 16:57:26', 386, 567, 21.3999996, 46.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1038, 5, '2016-08-10 16:57:54', 387, 529, 21.3999996, 46.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1040, 5, '2016-08-10 16:58:09', 389, 556, 21.3999996, 46.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1042, 5, '2016-08-10 16:58:24', 388, 556, 21.3999996, 46.2000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1044, 5, '2016-08-10 16:58:38', 385, 518, 21.3999996, 46.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1046, 5, '2016-08-10 16:58:52', 387, 552, 21.3999996, 46.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1048, 5, '2016-08-10 16:59:00', 386, 501, 21.3999996, 46.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1050, 5, '2016-08-10 16:59:15', 387, 572, 21.3999996, 46.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1052, 5, '2016-08-10 16:59:28', 388, 532, 21.3999996, 46.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1054, 5, '2016-08-10 16:59:42', 389, 556, 21.3999996, 46.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1056, 5, '2016-08-10 16:59:56', 390, 574, 21.3999996, 46.2000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1058, 5, '2016-08-10 17:00:11', 390, 534, 21.3999996, 46.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1031, 5, '2016-08-10 16:57:04', 386, 559, 21.3999996, 46.2000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1033, 5, '2016-08-10 16:57:19', 388, 550, 21.3999996, 46.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1035, 5, '2016-08-10 16:57:34', 377, 554, 21.3999996, 46.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1036, 5, '2016-08-10 16:57:40', 387, 545, 21.3999996, 46.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1060, 5, '2016-08-10 17:00:26', 392, 548, 21.3999996, 46.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1062, 5, '2016-08-10 17:00:48', 391, 525, 21.3999996, 46.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1064, 5, '2016-08-10 17:01:03', 388, 570, 21.3999996, 46.2000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1066, 5, '2016-08-10 17:01:16', 390, 567, 21.3999996, 46.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1068, 5, '2016-08-10 17:01:30', 389, 554, 21.3999996, 46.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1070, 5, '2016-08-10 17:01:45', 389, 567, 21.3999996, 46.2000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1072, 5, '2016-08-10 17:01:59', 389, 545, 21.3999996, 46.2000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1073, 5, '2016-08-10 17:02:06', 386, 534, 21.3999996, 46.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1074, 5, '2016-08-10 17:02:14', 390, 548, 21.3999996, 46.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1075, 5, '2016-08-10 17:02:21', 393, 559, 21.3999996, 46.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1076, 5, '2016-08-10 17:02:28', 391, 554, 21.3999996, 46.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1077, 5, '2016-08-10 17:02:35', 392, 539, 21.3999996, 46.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1078, 5, '2016-08-10 17:02:41', 393, 516, 21.3999996, 46.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1079, 5, '2016-08-10 17:02:44', 391, 545, 21.3999996, 46.0999985, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1080, 5, '2016-08-10 17:02:56', 390, 530, 21.3999996, 46.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1081, 5, '2016-08-10 17:03:04', 390, 597, 21.3999996, 46.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1082, 5, '2016-08-10 17:03:08', 389, 563, 21.3999996, 46.0999985, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1083, 5, '2016-08-10 17:03:18', 389, 548, 21.3999996, 46.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1084, 5, '2016-08-10 17:03:25', 392, 545, 21.3999996, 46.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1085, 5, '2016-08-10 17:03:32', 393, 592, 21.3999996, 46.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1086, 5, '2016-08-10 17:03:40', 390, 552, 21.3999996, 46.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1087, 5, '2016-08-10 17:03:47', 392, 545, 21.3999996, 46.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1088, 5, '2016-08-10 17:03:53', 392, 550, 21.3999996, 46.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1089, 5, '2016-08-10 17:04:02', 392, 554, 21.3999996, 46.0999985, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1090, 3, '2016-08-10 17:04:02', 323, 611, 22.6000004, 46.5999985, 2340);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1091, 5, '2016-08-10 17:04:08', 400, 597, 21.3999996, 46.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1092, 5, '2016-08-10 17:04:16', 393, 585, 21.3999996, 46.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1093, 5, '2016-08-10 17:04:23', 389, 570, 21.5, 46.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1094, 5, '2016-08-10 17:04:29', 393, 567, 21.5, 46.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1095, 5, '2016-08-10 17:04:40', 400, 576, 21.5, 46.0999985, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1096, 5, '2016-08-10 17:04:52', 401, 548, 21.5, 46, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1097, 5, '2016-08-10 17:04:59', 400, 552, 21.5, 46, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1098, 5, '2016-08-10 17:05:05', 392, 599, 21.5, 46, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1099, 5, '2016-08-10 17:05:13', 392, 552, 21.5, 46, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1100, 5, '2016-08-10 17:05:20', 400, 545, 21.5, 46, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1101, 5, '2016-08-10 17:05:22', 390, 539, 21.5, 46, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1102, 2, '2016-08-10 17:05:23', 21, 524, 23.8999996, 42.9000015, 5216);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1103, 2, '2016-08-10 17:05:27', 21, 524, 23.8999996, 42.9000015, 5216);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1104, 5, '2016-08-10 17:05:34', 389, 559, 21.5, 46, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1105, 5, '2016-08-10 17:05:42', 392, 552, 21.5, 46, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1106, 5, '2016-08-10 17:05:46', 391, 554, 21.5, 46, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1107, 5, '2016-08-10 17:05:57', 390, 576, 21.5, 46, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1108, 5, '2016-08-10 17:06:03', 391, 536, 21.5, 46, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1109, 5, '2016-08-10 17:06:11', 392, 530, 21.5, 46, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1110, 5, '2016-08-10 17:06:17', 391, 559, 21.5, 46, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1111, 5, '2016-08-10 17:06:25', 392, 556, 21.5, 46, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1112, 5, '2016-08-10 17:06:32', 392, 545, 21.5, 46, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1113, 5, '2016-08-10 17:06:46', 389, 541, 21.5, 46, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1114, 5, '2016-08-10 17:06:54', 393, 556, 21.5, 46, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1115, 5, '2016-08-10 17:07:01', 392, 567, 21.5, 46, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1116, 5, '2016-08-10 17:07:07', 393, 536, 21.5, 46, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1117, 5, '2016-08-10 17:07:15', 393, 597, 21.5, 46, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1118, 5, '2016-08-10 17:07:22', 389, 590, 21.5, 46, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1119, 5, '2016-08-10 17:07:30', 390, 552, 21.5, 46, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1120, 5, '2016-08-10 17:07:39', 392, 572, 21.5, 46, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1121, 5, '2016-08-10 17:07:44', 387, 550, 21.5, 45.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1122, 5, '2016-08-10 17:07:51', 386, 548, 21.5, 45.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1123, 5, '2016-08-10 17:07:58', 389, 559, 21.5, 45.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1124, 5, '2016-08-10 17:08:06', 389, 579, 21.5, 45.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1125, 5, '2016-08-10 17:08:13', 388, 552, 21.5, 45.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1126, 5, '2016-08-10 17:08:19', 390, 545, 21.5, 45.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1127, 5, '2016-08-10 17:08:27', 390, 541, 21.5, 45.9000015, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1128, 5, '2016-08-10 17:08:33', 390, 572, 21.5, 45.9000015, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1129, 5, '2016-08-10 17:08:49', 390, 559, 21.5, 45.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1130, 5, '2016-08-10 17:08:55', 385, 530, 21.5, 45.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1131, 5, '2016-08-10 17:09:03', 389, 514, 21.5, 45.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1132, 5, '2016-08-10 17:09:09', 390, 541, 21.5, 45.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1133, 5, '2016-08-10 17:09:17', 388, 534, 21.5, 45.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1134, 5, '2016-08-10 17:09:25', 389, 514, 21.5, 45.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1135, 5, '2016-08-10 17:09:31', 389, 534, 21.5, 45.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1136, 5, '2016-08-10 17:09:39', 388, 536, 21.5, 45.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1137, 5, '2016-08-10 17:09:47', 387, 572, 21.5, 45.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1138, 5, '2016-08-10 17:09:54', 389, 622, 21.5, 45.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1139, 5, '2016-08-10 17:10:01', 384, 592, 21.5, 45.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1140, 5, '2016-08-10 17:10:07', 385, 552, 21.5, 45.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1141, 5, '2016-08-10 17:10:15', 386, 534, 21.5, 45.9000015, 29442);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1142, 5, '2016-08-10 17:10:22', 387, 539, 21.5, 45.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1143, 5, '2016-08-10 17:10:26', 385, 530, 21.5, 45.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1144, 1, '2016-08-10 17:10:30', 5, 620, 22.7999992, 43.4000015, 2344);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1145, 5, '2016-08-10 17:10:37', 385, 545, 21.5, 45.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1146, 5, '2016-08-10 17:10:43', 386, 545, 21.5, 45.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1147, 5, '2016-08-10 17:10:51', 386, 556, 21.5, 45.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1148, 5, '2016-08-10 17:10:57', 387, 565, 21.5, 45.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1149, 5, '2016-08-10 17:11:11', 385, 590, 21.5, 45.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1150, 5, '2016-08-10 17:11:13', 386, 581, 21.5, 45.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1151, 5, '2016-08-10 17:11:27', 387, 556, 21.5, 45.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1152, 5, '2016-08-10 17:11:33', 386, 554, 21.5, 45.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1153, 5, '2016-08-10 17:11:41', 386, 567, 21.5, 45.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1154, 5, '2016-08-10 17:11:48', 386, 556, 21.5, 45.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1155, 5, '2016-08-10 17:11:55', 384, 514, 21.5, 45.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1156, 5, '2016-08-10 17:12:03', 385, 530, 21.5, 45.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1157, 5, '2016-08-10 17:12:09', 387, 565, 21.5, 45.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1158, 5, '2016-08-10 17:12:17', 375, 567, 21.5, 45.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1159, 5, '2016-08-10 17:12:23', 375, 550, 21.5, 45.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1160, 5, '2016-08-10 17:12:31', 377, 556, 21.5, 45.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1161, 5, '2016-08-10 17:12:39', 384, 543, 21.5, 45.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1162, 5, '2016-08-10 17:12:45', 375, 581, 21.5, 45.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1163, 5, '2016-08-10 17:12:45', 377, 565, 21.5, 45.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1164, 5, '2016-08-10 17:12:59', 384, 536, 21.5, 45.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1165, 5, '2016-08-10 17:13:07', 384, 561, 21.5, 45.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1166, 5, '2016-08-10 17:13:13', 386, 530, 21.5, 45.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1167, 5, '2016-08-10 17:13:18', 377, 563, 21.5, 45.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1168, 5, '2016-08-10 17:13:29', 375, 541, 21.5, 45.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1169, 5, '2016-08-10 17:13:35', 385, 574, 21.5, 45.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1170, 5, '2016-08-10 17:13:41', 387, 561, 21.5, 45.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1171, 5, '2016-08-10 17:13:50', 385, 543, 21.5, 45.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1172, 5, '2016-08-10 17:13:57', 387, 548, 21.5, 45.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1174, 5, '2016-08-10 17:14:10', 384, 514, 21.5, 45.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1176, 0, '2016-08-10 17:14:11', 71, 605, 22.2999992, 49, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1178, 5, '2016-08-10 17:14:25', 385, 545, 21.5, 45.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1180, 5, '2016-08-10 17:14:40', 376, 512, 21.5, 45.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1182, 5, '2016-08-10 17:15:02', 384, 600, 21.5, 45.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1184, 5, '2016-08-10 17:15:16', 386, 567, 21.5, 45.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1186, 5, '2016-08-10 17:15:31', 387, 574, 21.5, 45.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1188, 5, '2016-08-10 17:15:44', 377, 541, 21.5, 45.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1190, 5, '2016-08-10 17:15:59', 389, 550, 21.5, 45.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1192, 5, '2016-08-10 17:16:13', 388, 525, 21.5, 45.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1208, 5, '2016-08-10 17:18:09', 389, 521, 21.6000004, 45.7999992, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1216, 5, '2016-08-10 17:19:06', 384, 541, 21.6000004, 45.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1232, 5, '2016-08-10 17:20:46', 388, 565, 21.6000004, 45.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1173, 5, '2016-08-10 17:14:04', 386, 534, 21.5, 45.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1175, 0, '2016-08-10 17:14:11', 71, 605, 22.2999992, 49, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1177, 5, '2016-08-10 17:14:19', 384, 565, 21.5, 45.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1193, 5, '2016-08-10 17:16:21', 389, 550, 21.5, 45.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1195, 5, '2016-08-10 17:16:35', 388, 561, 21.5, 45.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1197, 5, '2016-08-10 17:16:50', 384, 576, 21.6000004, 45.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1199, 5, '2016-08-10 17:17:05', 386, 528, 21.6000004, 45.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1201, 5, '2016-08-10 17:17:19', 386, 550, 21.6000004, 45.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1203, 5, '2016-08-10 17:17:33', 388, 552, 21.6000004, 45.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1205, 5, '2016-08-10 17:17:47', 389, 583, 21.6000004, 45.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1207, 5, '2016-08-10 17:18:01', 385, 530, 21.6000004, 45.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1211, 5, '2016-08-10 17:18:30', 390, 567, 21.6000004, 45.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1213, 5, '2016-08-10 17:18:44', 387, 567, 21.6000004, 45.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1215, 5, '2016-08-10 17:18:58', 388, 579, 21.6000004, 45.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1179, 5, '2016-08-10 17:14:34', 376, 581, 21.5, 45.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1181, 5, '2016-08-10 17:14:50', 377, 550, 21.5, 45.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1183, 5, '2016-08-10 17:15:08', 386, 532, 21.5, 45.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1185, 5, '2016-08-10 17:15:23', 386, 543, 21.5, 45.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1187, 5, '2016-08-10 17:15:38', 385, 525, 21.5, 45.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1189, 5, '2016-08-10 17:15:52', 387, 536, 21.5, 45.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1191, 5, '2016-08-10 17:16:07', 388, 559, 21.6000004, 45.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1209, 5, '2016-08-10 17:18:16', 390, 548, 21.6000004, 45.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1217, 5, '2016-08-10 17:19:12', 385, 536, 21.6000004, 45.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1219, 5, '2016-08-10 17:19:20', 385, 548, 21.6000004, 45.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1221, 5, '2016-08-10 17:19:34', 385, 559, 21.6000004, 45.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1223, 5, '2016-08-10 17:19:48', 387, 552, 21.6000004, 45.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1225, 5, '2016-08-10 17:20:04', 388, 539, 21.6000004, 45.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1227, 5, '2016-08-10 17:20:18', 384, 545, 21.6000004, 45.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1229, 5, '2016-08-10 17:20:33', 387, 541, 21.6000004, 45.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1231, 2, '2016-08-10 17:20:40', 583, 548, 23.7999992, 43.2000008, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1194, 5, '2016-08-10 17:16:28', 386, 530, 21.6000004, 45.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1196, 5, '2016-08-10 17:16:43', 389, 539, 21.5, 45.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1198, 5, '2016-08-10 17:16:56', 385, 593, 21.6000004, 45.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1200, 5, '2016-08-10 17:17:10', 389, 530, 21.6000004, 45.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1202, 5, '2016-08-10 17:17:26', 387, 541, 21.6000004, 45.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1204, 5, '2016-08-10 17:17:40', 388, 563, 21.6000004, 45.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1206, 5, '2016-08-10 17:17:55', 387, 548, 21.6000004, 45.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1210, 5, '2016-08-10 17:18:24', 389, 550, 21.6000004, 45.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1212, 5, '2016-08-10 17:18:38', 389, 525, 21.6000004, 45.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1214, 5, '2016-08-10 17:18:52', 387, 567, 21.6000004, 45.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1218, 3, '2016-08-10 17:19:14', 403, 607, 22.7000008, 47.9000015, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1220, 5, '2016-08-10 17:19:27', 387, 581, 21.6000004, 45.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1222, 5, '2016-08-10 17:19:42', 388, 559, 21.6000004, 45.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1224, 5, '2016-08-10 17:19:56', 386, 574, 21.6000004, 45.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1226, 5, '2016-08-10 17:20:11', 385, 552, 21.6000004, 45.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1228, 5, '2016-08-10 17:20:25', 387, 521, 21.6000004, 45.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1230, 5, '2016-08-10 17:20:33', 387, 561, 21.6000004, 45.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1233, 5, '2016-08-10 17:20:54', 387, 545, 21.6000004, 45.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1234, 5, '2016-08-10 17:21:01', 386, 548, 21.6000004, 45.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1235, 5, '2016-08-10 17:21:11', 386, 563, 21.6000004, 45.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1236, 5, '2016-08-10 17:21:15', 386, 554, 21.6000004, 45.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1237, 5, '2016-08-10 17:21:20', 377, 514, 21.6000004, 45.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1238, 5, '2016-08-10 17:21:29', 377, 593, 21.6000004, 45.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1239, 5, '2016-08-10 17:21:36', 384, 539, 21.6000004, 45.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1240, 5, '2016-08-10 17:21:44', 385, 554, 21.6000004, 45.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1241, 5, '2016-08-10 17:21:51', 384, 570, 21.6000004, 45.7000008, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1242, 5, '2016-08-10 17:21:58', 386, 536, 21.6000004, 45.7000008, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1243, 5, '2016-08-10 17:22:06', 386, 523, 21.6000004, 45.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1244, 5, '2016-08-10 17:22:12', 386, 574, 21.6000004, 45.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1245, 5, '2016-08-10 17:22:21', 387, 541, 21.6000004, 45.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1246, 5, '2016-08-10 17:22:27', 384, 559, 21.6000004, 45.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1247, 5, '2016-08-10 17:22:35', 376, 532, 21.6000004, 45.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1248, 5, '2016-08-10 17:22:41', 384, 543, 21.6000004, 45.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1249, 5, '2016-08-10 17:22:42', 387, 552, 21.6000004, 45.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1250, 5, '2016-08-10 17:22:56', 386, 597, 21.6000004, 45.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1251, 5, '2016-08-10 17:23:03', 386, 543, 21.6000004, 45.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1252, 5, '2016-08-10 17:23:10', 386, 534, 21.6000004, 45.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1253, 5, '2016-08-10 17:23:17', 384, 559, 21.6000004, 45.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1254, 5, '2016-08-10 17:23:24', 377, 539, 21.6000004, 45.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1255, 5, '2016-08-10 17:23:28', 385, 581, 21.6000004, 45.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1256, 5, '2016-08-10 17:23:38', 375, 583, 21.6000004, 45.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1257, 5, '2016-08-10 17:23:46', 375, 525, 21.6000004, 45.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1258, 5, '2016-08-10 17:23:53', 377, 545, 21.6000004, 45.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1259, 5, '2016-08-10 17:23:54', 384, 574, 21.6000004, 45.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1260, 5, '2016-08-10 17:24:08', 376, 545, 21.6000004, 45.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1261, 5, '2016-08-10 17:24:15', 377, 556, 21.6000004, 45.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1262, 5, '2016-08-10 17:24:24', 376, 530, 21.6000004, 45.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1263, 5, '2016-08-10 17:24:30', 377, 604, 21.6000004, 45.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1264, 5, '2016-08-10 17:24:36', 377, 554, 21.6000004, 45.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1265, 5, '2016-08-10 17:24:45', 377, 552, 21.6000004, 45.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1266, 5, '2016-08-10 17:24:50', 373, 541, 21.6000004, 45.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1267, 5, '2016-08-10 17:25:05', 377, 545, 21.6000004, 45.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1268, 5, '2016-08-10 17:25:12', 384, 541, 21.6000004, 45.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1269, 5, '2016-08-10 17:25:20', 384, 582, 21.6000004, 45.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1270, 5, '2016-08-10 17:25:26', 384, 566, 21.6000004, 45.5999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1271, 5, '2016-08-10 17:25:34', 376, 530, 21.6000004, 45.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1272, 5, '2016-08-10 17:25:36', 377, 521, 21.6000004, 45.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1273, 1, '2016-08-10 17:25:41', 135, 548, 22.7999992, 43.7999992, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1274, 5, '2016-08-10 17:25:48', 384, 552, 21.6000004, 45.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1275, 5, '2016-08-10 17:25:55', 374, 552, 21.6000004, 45.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1276, 5, '2016-08-10 17:26:02', 374, 552, 21.6000004, 45.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1277, 5, '2016-08-10 17:26:10', 376, 556, 21.6000004, 45.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1278, 5, '2016-08-10 17:26:16', 377, 575, 21.6000004, 45.5999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1279, 5, '2016-08-10 17:26:24', 375, 530, 21.6000004, 45.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1280, 5, '2016-08-10 17:26:32', 375, 532, 21.6000004, 45.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1281, 5, '2016-08-10 17:26:38', 377, 536, 21.6000004, 45.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1282, 5, '2016-08-10 17:26:46', 375, 559, 21.6000004, 45.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1283, 5, '2016-08-10 17:26:53', 377, 534, 21.6000004, 45.5999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1284, 5, '2016-08-10 17:27:00', 375, 563, 21.6000004, 45.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1285, 5, '2016-08-10 17:27:07', 374, 525, 21.6000004, 45.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1286, 5, '2016-08-10 17:27:14', 377, 563, 21.6000004, 45.5999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1287, 5, '2016-08-10 17:27:22', 384, 575, 21.6000004, 45.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1288, 5, '2016-08-10 17:27:29', 376, 548, 21.6000004, 45.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1289, 5, '2016-08-10 17:27:35', 377, 554, 21.6000004, 45.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1290, 5, '2016-08-10 17:27:43', 377, 568, 21.6000004, 45.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1291, 5, '2016-08-10 17:27:50', 376, 582, 21.7000008, 45.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1292, 5, '2016-08-10 17:27:59', 376, 557, 21.6000004, 45.5999985, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1293, 5, '2016-08-10 17:28:04', 377, 566, 21.6000004, 45.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1294, 5, '2016-08-10 17:28:12', 374, 600, 21.6000004, 45.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1295, 5, '2016-08-10 17:28:19', 373, 566, 21.6000004, 45.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1296, 5, '2016-08-10 17:28:26', 375, 570, 21.6000004, 45.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1297, 5, '2016-08-10 17:28:34', 377, 539, 21.6000004, 45.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1298, 5, '2016-08-10 17:28:40', 375, 548, 21.6000004, 45.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1299, 5, '2016-08-10 17:28:48', 375, 530, 21.6000004, 45.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1300, 5, '2016-08-10 17:28:55', 375, 563, 21.7000008, 45.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1301, 5, '2016-08-10 17:29:02', 377, 579, 21.7000008, 45.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1302, 5, '2016-08-10 17:29:10', 377, 584, 21.7000008, 45.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1303, 5, '2016-08-10 17:29:16', 376, 591, 21.6000004, 45.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1304, 5, '2016-08-10 17:29:21', 373, 550, 21.7000008, 45.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1305, 0, '2016-08-10 17:29:24', 4, 547, 22.6000004, 48.7999992, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1306, 5, '2016-08-10 17:29:31', 376, 539, 21.7000008, 45.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1307, 5, '2016-08-10 17:29:37', 384, 566, 21.7000008, 45.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1308, 5, '2016-08-10 17:29:45', 384, 543, 21.7000008, 45.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1309, 5, '2016-08-10 17:29:52', 376, 541, 21.7000008, 45.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1310, 5, '2016-08-10 17:30:00', 384, 532, 21.7000008, 45.5, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1311, 5, '2016-08-10 17:30:06', 376, 579, 21.7000008, 45.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1312, 5, '2016-08-10 17:30:13', 377, 591, 21.7000008, 45.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1313, 5, '2016-08-10 17:30:21', 377, 550, 21.7000008, 45.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1314, 5, '2016-08-10 17:30:28', 372, 563, 21.7000008, 45.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1315, 5, '2016-08-10 17:30:36', 374, 528, 21.7000008, 45.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1316, 5, '2016-08-10 17:30:43', 374, 554, 21.7000008, 45.5, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1317, 5, '2016-08-10 17:30:49', 377, 532, 21.7000008, 45.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1318, 5, '2016-08-10 17:30:57', 374, 575, 21.7000008, 45.5, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1319, 5, '2016-08-10 17:31:04', 375, 554, 21.7000008, 45.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1320, 5, '2016-08-10 17:31:12', 386, 563, 21.7000008, 45.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1321, 5, '2016-08-10 17:31:18', 376, 548, 21.7000008, 45.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1322, 5, '2016-08-10 17:31:26', 376, 552, 21.7000008, 45.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1323, 5, '2016-08-10 17:31:27', 376, 554, 21.7000008, 45.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1325, 5, '2016-08-10 17:31:42', 374, 568, 21.7000008, 45.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1327, 5, '2016-08-10 17:32:02', 376, 550, 21.7000008, 45.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1329, 5, '2016-08-10 17:32:15', 384, 559, 21.7000008, 45.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1331, 5, '2016-08-10 17:32:31', 376, 568, 21.7000008, 45.5, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1333, 5, '2016-08-10 17:32:45', 373, 561, 21.7000008, 45.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1335, 5, '2016-08-10 17:32:58', 374, 550, 21.7000008, 45.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1337, 5, '2016-08-10 17:33:13', 374, 570, 21.7000008, 45.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1339, 5, '2016-08-10 17:33:29', 376, 575, 21.7000008, 45.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1341, 5, '2016-08-10 17:33:38', 375, 566, 21.7000008, 45.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1343, 5, '2016-08-10 17:33:57', 371, 570, 21.7000008, 45.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1345, 5, '2016-08-10 17:34:12', 376, 561, 21.7000008, 45.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1347, 5, '2016-08-10 17:34:23', 373, 575, 21.7000008, 45.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1349, 5, '2016-08-10 17:34:33', 374, 554, 21.7000008, 45.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1351, 5, '2016-08-10 17:34:47', 361, 554, 21.7000008, 45.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1353, 5, '2016-08-10 17:35:02', 371, 548, 21.7000008, 45.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1355, 5, '2016-08-10 17:35:15', 361, 561, 21.7000008, 45.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1357, 5, '2016-08-10 17:35:30', 373, 571, 21.7000008, 45.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1359, 5, '2016-08-10 17:35:44', 375, 559, 21.7000008, 45.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1361, 5, '2016-08-10 17:35:52', 375, 575, 21.7000008, 45.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1363, 5, '2016-08-10 17:36:05', 374, 582, 21.7000008, 45.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1385, 5, '2016-08-10 17:38:51', 374, 568, 21.7000008, 45.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1387, 5, '2016-08-10 17:39:05', 375, 553, 21.7000008, 45.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1389, 5, '2016-08-10 17:39:19', 372, 579, 21.7000008, 45.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1391, 5, '2016-08-10 17:39:35', 370, 580, 21.7000008, 45.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1393, 5, '2016-08-10 17:39:49', 370, 557, 21.7000008, 45.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1395, 5, '2016-08-10 17:40:03', 370, 560, 21.7000008, 45.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1397, 5, '2016-08-10 17:40:17', 372, 549, 21.7000008, 45.5, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1399, 5, '2016-08-10 17:40:31', 373, 598, 21.7000008, 45.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1401, 5, '2016-08-10 17:40:43', 361, 560, 21.7000008, 45.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1403, 1, '2016-08-10 17:40:53', 151, 557, 22.7000008, 44.2000008, 12339);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1324, 5, '2016-08-10 17:31:40', 369, 566, 21.7000008, 45.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1326, 5, '2016-08-10 17:31:55', 376, 530, 21.7000008, 45.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1328, 5, '2016-08-10 17:32:09', 377, 496, 21.7000008, 45.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1330, 5, '2016-08-10 17:32:26', 376, 579, 21.7000008, 45.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1332, 5, '2016-08-10 17:32:37', 377, 561, 21.7000008, 45.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1334, 5, '2016-08-10 17:32:49', 373, 525, 21.7000008, 45.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1336, 5, '2016-08-10 17:33:06', 372, 532, 21.7000008, 45.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1338, 5, '2016-08-10 17:33:21', 384, 561, 21.7000008, 45.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1340, 5, '2016-08-10 17:33:35', 373, 552, 21.7000008, 45.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1342, 5, '2016-08-10 17:33:49', 374, 545, 21.7000008, 45.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1344, 5, '2016-08-10 17:34:05', 375, 548, 21.7000008, 45.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1346, 5, '2016-08-10 17:34:18', 374, 586, 21.7000008, 45.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1348, 3, '2016-08-10 17:34:26', 329, 645, 22.7999992, 47.0999985, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1350, 5, '2016-08-10 17:34:39', 360, 539, 21.7000008, 45.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1352, 5, '2016-08-10 17:34:53', 359, 559, 21.7000008, 45.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1354, 5, '2016-08-10 17:35:09', 369, 582, 21.7000008, 45.5, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1378, 5, '2016-08-10 17:38:01', 373, 563, 21.7000008, 45.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1380, 5, '2016-08-10 17:38:15', 374, 552, 21.7000008, 45.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1386, 5, '2016-08-10 17:38:58', 372, 605, 21.7000008, 45.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1388, 5, '2016-08-10 17:39:13', 371, 607, 21.7000008, 45.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1390, 5, '2016-08-10 17:39:27', 374, 535, 21.7000008, 45.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1392, 5, '2016-08-10 17:39:41', 369, 573, 21.7000008, 45.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1394, 5, '2016-08-10 17:39:55', 373, 555, 21.7000008, 45.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1396, 5, '2016-08-10 17:40:10', 371, 573, 21.7000008, 45.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1398, 5, '2016-08-10 17:40:25', 371, 584, 21.7000008, 45.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1400, 5, '2016-08-10 17:40:39', 371, 598, 21.7000008, 45.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1402, 5, '2016-08-10 17:40:47', 371, 542, 21.7000008, 45.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1356, 5, '2016-08-10 17:35:23', 371, 557, 21.7000008, 45.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1358, 5, '2016-08-10 17:35:37', 376, 528, 21.7000008, 45.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1360, 2, '2016-08-10 17:35:44', 148, 500, 23.6000004, 43.4000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1362, 5, '2016-08-10 17:35:59', 375, 568, 21.7000008, 45.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1364, 5, '2016-08-10 17:36:14', 371, 563, 21.7000008, 45.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1366, 5, '2016-08-10 17:36:27', 376, 575, 21.7000008, 45.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1368, 5, '2016-08-10 17:36:41', 374, 568, 21.7000008, 45.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1370, 5, '2016-08-10 17:36:56', 374, 573, 21.7000008, 45.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1372, 5, '2016-08-10 17:37:17', 376, 566, 21.7000008, 45.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1374, 5, '2016-08-10 17:37:33', 372, 570, 21.7000008, 45.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1376, 5, '2016-08-10 17:37:47', 373, 605, 21.7000008, 45.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1382, 5, '2016-08-10 17:38:29', 370, 584, 21.7000008, 45.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1384, 5, '2016-08-10 17:38:44', 374, 506, 21.7000008, 45.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1365, 5, '2016-08-10 17:36:19', 374, 605, 21.7000008, 45.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1367, 5, '2016-08-10 17:36:35', 375, 591, 21.7000008, 45.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1369, 5, '2016-08-10 17:36:49', 376, 563, 21.7000008, 45.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1371, 5, '2016-08-10 17:37:03', 374, 554, 21.7000008, 45.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1373, 5, '2016-08-10 17:37:25', 371, 568, 21.7000008, 45.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1375, 5, '2016-08-10 17:37:39', 374, 555, 21.7000008, 45.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1377, 5, '2016-08-10 17:37:53', 373, 566, 21.7000008, 45.5, 29474);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1379, 5, '2016-08-10 17:38:07', 374, 577, 21.7000008, 45.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1381, 5, '2016-08-10 17:38:23', 373, 595, 21.7000008, 45.5, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1383, 5, '2016-08-10 17:38:37', 373, 580, 21.7000008, 45.5, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1404, 5, '2016-08-10 17:41:00', 371, 551, 21.7000008, 45.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1405, 5, '2016-08-10 17:41:07', 372, 584, 21.7000008, 45.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1406, 5, '2016-08-10 17:41:15', 370, 577, 21.7000008, 45.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1407, 5, '2016-08-10 17:41:21', 372, 589, 21.7000008, 45.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1408, 5, '2016-08-10 17:41:29', 369, 595, 21.7000008, 45.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1409, 5, '2016-08-10 17:41:34', 370, 557, 21.7000008, 45.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1410, 5, '2016-08-10 17:41:43', 372, 544, 21.7000008, 45.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1411, 5, '2016-08-10 17:41:52', 361, 582, 21.7000008, 45.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1412, 5, '2016-08-10 17:41:57', 361, 589, 21.7000008, 45.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1413, 5, '2016-08-10 17:42:03', 368, 616, 21.7000008, 45.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1414, 5, '2016-08-10 17:42:12', 371, 586, 21.7000008, 45.4000015, 29524);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1415, 5, '2016-08-10 17:42:19', 361, 595, 21.7000008, 45.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1416, 5, '2016-08-10 17:42:27', 369, 544, 21.7000008, 45.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1417, 5, '2016-08-10 17:42:33', 370, 602, 21.7000008, 45.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1418, 5, '2016-08-10 17:42:41', 368, 580, 21.7000008, 45.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1419, 5, '2016-08-10 17:42:48', 370, 560, 21.7000008, 45.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1420, 5, '2016-08-10 17:42:51', 368, 591, 21.7000008, 45.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1421, 5, '2016-08-10 17:43:02', 361, 528, 21.7000008, 45.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1422, 5, '2016-08-10 17:43:09', 369, 551, 21.7000008, 45.4000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1423, 5, '2016-08-10 17:43:24', 371, 562, 21.7000008, 45.4000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1424, 5, '2016-08-10 17:43:31', 369, 577, 21.7000008, 45.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1425, 5, '2016-08-10 17:43:40', 371, 575, 21.7000008, 45.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1426, 5, '2016-08-10 17:43:45', 368, 546, 21.7000008, 45.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1427, 5, '2016-08-10 17:43:48', 368, 611, 21.7000008, 45.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1428, 5, '2016-08-10 17:44:00', 370, 573, 21.7000008, 45.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1429, 5, '2016-08-10 17:44:07', 358, 539, 21.7000008, 45.4000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1430, 5, '2016-08-10 17:44:15', 359, 549, 21.7999992, 45.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1431, 5, '2016-08-10 17:44:21', 360, 564, 21.7000008, 45.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1432, 5, '2016-08-10 17:44:29', 368, 568, 21.7999992, 45.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1433, 5, '2016-08-10 17:44:32', 360, 510, 21.7999992, 45.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1434, 0, '2016-08-10 17:44:36', 18, 588, 22.7000008, 48.2000008, 2056);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1435, 5, '2016-08-10 17:44:43', 361, 575, 21.7999992, 45.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1436, 5, '2016-08-10 17:44:50', 361, 562, 21.7999992, 45.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1437, 5, '2016-08-10 17:44:57', 368, 577, 21.7999992, 45.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1438, 5, '2016-08-10 17:45:05', 368, 566, 21.7999992, 45.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1439, 5, '2016-08-10 17:45:12', 361, 575, 21.7999992, 45.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1440, 5, '2016-08-10 17:45:18', 358, 557, 21.7999992, 45.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1441, 5, '2016-08-10 17:45:27', 368, 582, 21.7999992, 45.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1442, 5, '2016-08-10 17:45:33', 368, 595, 21.7999992, 45.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1443, 5, '2016-08-10 17:45:41', 368, 568, 21.7999992, 45.4000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1444, 5, '2016-08-10 17:45:47', 360, 575, 21.7999992, 45.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1445, 5, '2016-08-10 17:45:55', 369, 573, 21.7999992, 45.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1446, 5, '2016-08-10 17:46:02', 361, 553, 21.7999992, 45.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1447, 5, '2016-08-10 17:46:09', 361, 582, 21.7999992, 45.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1448, 5, '2016-08-10 17:46:17', 368, 580, 21.7999992, 45.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1449, 5, '2016-08-10 17:46:23', 357, 555, 21.7999992, 45.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1450, 5, '2016-08-10 17:46:31', 357, 560, 21.7999992, 45.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1451, 5, '2016-08-10 17:46:39', 359, 557, 21.7999992, 45.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1452, 5, '2016-08-10 17:46:45', 361, 555, 21.7999992, 45.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1453, 5, '2016-08-10 17:46:52', 359, 549, 21.7999992, 45.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1454, 5, '2016-08-10 17:46:59', 361, 589, 21.7999992, 45.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1455, 5, '2016-08-10 17:47:07', 360, 577, 21.7999992, 45.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1456, 5, '2016-08-10 17:47:14', 360, 539, 21.7999992, 45.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1457, 5, '2016-08-10 17:47:21', 361, 549, 21.7999992, 45.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1458, 5, '2016-08-10 17:47:29', 360, 555, 21.7999992, 45.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1459, 5, '2016-08-10 17:47:35', 357, 568, 21.7999992, 45.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1460, 5, '2016-08-10 17:47:43', 361, 566, 21.7999992, 45.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1461, 5, '2016-08-10 17:47:50', 361, 577, 21.7999992, 45.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1462, 5, '2016-08-10 17:47:57', 360, 560, 21.7999992, 45.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1463, 5, '2016-08-10 17:48:04', 359, 546, 21.7999992, 45.2999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1464, 5, '2016-08-10 17:48:11', 368, 528, 21.7999992, 45.2999992, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1465, 5, '2016-08-10 17:48:19', 358, 582, 21.7999992, 45.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1466, 5, '2016-08-10 17:48:27', 360, 566, 21.7999992, 45.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1467, 5, '2016-08-10 17:48:32', 361, 584, 21.7999992, 45.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1468, 5, '2016-08-10 17:48:40', 355, 571, 21.7999992, 45.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1469, 5, '2016-08-10 17:48:46', 357, 535, 21.7999992, 45.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1470, 5, '2016-08-10 17:49:01', 357, 577, 21.7999992, 45.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1471, 5, '2016-08-10 17:49:08', 358, 577, 21.7999992, 45.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1472, 5, '2016-08-10 17:49:16', 360, 575, 21.7999992, 45.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1473, 5, '2016-08-10 17:49:22', 359, 551, 21.7999992, 45.2999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1474, 5, '2016-08-10 17:49:29', 359, 560, 21.7999992, 45.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1475, 5, '2016-08-10 17:49:34', 360, 571, 21.7999992, 45.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1476, 3, '2016-08-10 17:49:35', 340, 651, 23, 46.7999992, 2066);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1477, 3, '2016-08-10 17:49:40', 340, 651, 23, 46.7999992, 2066);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1478, 5, '2016-08-10 17:49:44', 358, 575, 21.7999992, 45.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1479, 5, '2016-08-10 17:49:44', 355, 564, 21.7999992, 45.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1480, 5, '2016-08-10 17:49:59', 359, 555, 21.7999992, 45.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1481, 5, '2016-08-10 17:50:07', 360, 591, 21.7999992, 45.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1482, 5, '2016-08-10 17:50:13', 359, 555, 21.7999992, 45.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1483, 5, '2016-08-10 17:50:21', 357, 586, 21.7999992, 45.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1484, 5, '2016-08-10 17:50:28', 360, 607, 21.7999992, 45.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1485, 5, '2016-08-10 17:50:34', 357, 564, 21.7999992, 45.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1486, 5, '2016-08-10 17:50:42', 359, 555, 21.7999992, 45.2999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1487, 5, '2016-08-10 17:50:49', 359, 595, 21.7999992, 45.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1488, 5, '2016-08-10 17:50:55', 355, 560, 21.7999992, 45.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1489, 2, '2016-08-10 17:50:55', 644, 525, 23.5, 43.5, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1490, 2, '2016-08-10 17:50:56', 644, 525, 23.5, 43.5, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1491, 5, '2016-08-10 17:51:03', 355, 555, 21.7999992, 45.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1492, 5, '2016-08-10 17:51:07', 357, 571, 21.7999992, 45.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1493, 5, '2016-08-10 17:51:18', 358, 589, 21.7999992, 45.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1494, 5, '2016-08-10 17:51:32', 355, 553, 21.7999992, 45.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1495, 5, '2016-08-10 17:51:40', 358, 577, 21.7999992, 45.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1496, 5, '2016-08-10 17:51:41', 358, 555, 21.7999992, 45.2999992, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1497, 5, '2016-08-10 17:51:54', 359, 566, 21.7999992, 45.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1498, 5, '2016-08-10 17:52:00', 357, 595, 21.7999992, 45.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1499, 5, '2016-08-10 17:52:09', 354, 566, 21.7999992, 45.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1500, 5, '2016-08-10 17:52:18', 357, 542, 21.7999992, 45.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1501, 5, '2016-08-10 17:52:22', 359, 571, 21.7999992, 45.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1503, 5, '2016-08-10 17:52:44', 358, 539, 21.7999992, 45.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1505, 5, '2016-08-10 17:53:05', 359, 564, 21.7999992, 45.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1507, 5, '2016-08-10 17:53:20', 354, 557, 21.7999992, 45.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1539, 5, '2016-08-10 17:57:16', 345, 513, 21.7999992, 45.2000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1541, 5, '2016-08-10 17:57:38', 345, 568, 21.7999992, 45.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1543, 5, '2016-08-10 17:57:52', 344, 549, 21.7999992, 45.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1545, 5, '2016-08-10 17:58:07', 344, 560, 21.7999992, 45.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1547, 5, '2016-08-10 17:58:22', 343, 553, 21.7999992, 45.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1549, 5, '2016-08-10 17:58:44', 344, 555, 21.7999992, 45.0999985, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1551, 5, '2016-08-10 17:58:58', 342, 571, 21.7999992, 45.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1581, 5, '2016-08-10 18:02:47', 340, 551, 21.7999992, 45.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1583, 5, '2016-08-10 18:02:55', 340, 560, 21.7999992, 45.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1585, 5, '2016-08-10 18:03:15', 342, 589, 21.7999992, 45, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1587, 5, '2016-08-10 18:03:30', 341, 562, 21.7999992, 45, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1589, 5, '2016-08-10 18:03:51', 342, 586, 21.7999992, 45, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1591, 5, '2016-08-10 18:04:06', 341, 537, 21.7999992, 45, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1593, 5, '2016-08-10 18:04:21', 343, 520, 21.7999992, 45, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1595, 5, '2016-08-10 18:04:35', 343, 540, 21.7999992, 45, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1597, 5, '2016-08-10 18:04:44', 344, 560, 21.7999992, 45, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1502, 5, '2016-08-10 17:52:30', 358, 568, 21.7999992, 45.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1504, 5, '2016-08-10 17:52:52', 357, 598, 21.7999992, 45.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1506, 5, '2016-08-10 17:53:13', 355, 568, 21.7999992, 45.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1508, 5, '2016-08-10 17:53:34', 345, 535, 21.7999992, 45.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1526, 5, '2016-08-10 17:55:50', 352, 575, 21.7999992, 45.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1528, 1, '2016-08-10 17:55:59', 112, 583, 22.7000008, 44.2999992, 9825);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1530, 5, '2016-08-10 17:56:12', 344, 531, 21.7999992, 45.2000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1532, 5, '2016-08-10 17:56:26', 345, 593, 21.7999992, 45.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1534, 5, '2016-08-10 17:56:40', 345, 555, 21.7999992, 45.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1536, 5, '2016-08-10 17:56:55', 345, 568, 21.7999992, 45.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1538, 5, '2016-08-10 17:57:10', 344, 571, 21.7999992, 45.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1540, 5, '2016-08-10 17:57:32', 345, 555, 21.7999992, 45.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1542, 5, '2016-08-10 17:57:46', 344, 586, 21.7999992, 45.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1544, 5, '2016-08-10 17:58:00', 344, 584, 21.7999992, 45.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1546, 5, '2016-08-10 17:58:15', 342, 549, 21.7999992, 45.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1548, 5, '2016-08-10 17:58:29', 343, 564, 21.7999992, 45.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1550, 5, '2016-08-10 17:58:45', 344, 546, 21.7999992, 45.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1552, 5, '2016-08-10 17:59:04', 343, 577, 21.7999992, 45.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1554, 5, '2016-08-10 17:59:19', 343, 568, 21.7999992, 45.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1556, 5, '2016-08-10 17:59:40', 342, 531, 21.7999992, 45.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1562, 5, '2016-08-10 18:00:24', 342, 553, 21.7999992, 45.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1564, 5, '2016-08-10 18:00:37', 340, 540, 21.7999992, 45.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1566, 5, '2016-08-10 18:00:52', 341, 591, 21.7999992, 45.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1568, 5, '2016-08-10 18:01:06', 341, 560, 21.7999992, 45.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1570, 5, '2016-08-10 18:01:22', 341, 577, 21.7999992, 45.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1572, 5, '2016-08-10 18:01:43', 341, 566, 21.7999992, 45.0999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1574, 5, '2016-08-10 18:01:57', 340, 586, 21.7999992, 45.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1578, 5, '2016-08-10 18:02:26', 340, 573, 21.7999992, 45.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1580, 5, '2016-08-10 18:02:39', 340, 553, 21.7999992, 45.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1582, 5, '2016-08-10 18:02:54', 340, 560, 21.7999992, 45, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1584, 5, '2016-08-10 18:03:09', 342, 586, 21.7999992, 45.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1588, 5, '2016-08-10 18:03:45', 341, 562, 21.7999992, 45, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1590, 5, '2016-08-10 18:03:59', 341, 591, 21.7999992, 45, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1592, 5, '2016-08-10 18:04:08', 343, 529, 21.7999992, 45, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1509, 5, '2016-08-10 17:53:42', 345, 544, 21.7999992, 45.2000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1511, 5, '2016-08-10 17:53:56', 352, 571, 21.7999992, 45.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1513, 5, '2016-08-10 17:54:11', 345, 551, 21.7999992, 45.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1515, 5, '2016-08-10 17:54:24', 345, 577, 21.7999992, 45.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1517, 5, '2016-08-10 17:54:38', 345, 551, 21.7999992, 45.2000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1519, 5, '2016-08-10 17:54:54', 352, 586, 21.7999992, 45.2000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1521, 5, '2016-08-10 17:55:14', 352, 582, 21.7999992, 45.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1523, 5, '2016-08-10 17:55:30', 352, 551, 21.7999992, 45.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1525, 5, '2016-08-10 17:55:44', 352, 598, 21.7999992, 45.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1527, 5, '2016-08-10 17:55:59', 352, 571, 21.7999992, 45.2000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1558, 0, '2016-08-10 17:59:49', 52, 557, 22.7000008, 47.5, 1686);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1560, 5, '2016-08-10 18:00:09', 341, 560, 21.7999992, 45.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1576, 5, '2016-08-10 18:02:13', 341, 575, 21.7999992, 45.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1586, 5, '2016-08-10 18:03:23', 342, 560, 21.7999992, 45, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1594, 5, '2016-08-10 18:04:27', 343, 542, 21.7999992, 45, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1596, 5, '2016-08-10 18:04:42', 342, 577, 21.7999992, 45, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1598, 3, '2016-08-10 18:04:50', 54, 594, 22.8999996, 45.7999992, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1510, 5, '2016-08-10 17:53:48', 345, 593, 21.7999992, 45.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1512, 5, '2016-08-10 17:53:59', 352, 582, 21.7999992, 45.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1514, 5, '2016-08-10 17:54:18', 345, 573, 21.7999992, 45.2000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1516, 5, '2016-08-10 17:54:32', 345, 568, 21.7999992, 45.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1518, 5, '2016-08-10 17:54:47', 345, 589, 21.7999992, 45.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1520, 5, '2016-08-10 17:55:02', 345, 557, 21.7999992, 45.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1522, 5, '2016-08-10 17:55:22', 345, 573, 21.7999992, 45.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1524, 5, '2016-08-10 17:55:36', 352, 566, 21.7999992, 45.2000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1529, 5, '2016-08-10 17:56:06', 344, 626, 21.7999992, 45.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1531, 5, '2016-08-10 17:56:20', 344, 605, 21.7999992, 45.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1533, 5, '2016-08-10 17:56:34', 345, 571, 21.7999992, 45.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1535, 5, '2016-08-10 17:56:48', 345, 568, 21.7999992, 45.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1537, 5, '2016-08-10 17:57:03', 343, 568, 21.7999992, 45.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1553, 5, '2016-08-10 17:59:12', 343, 568, 21.7999992, 45.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1555, 5, '2016-08-10 17:59:27', 343, 594, 21.7999992, 45.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1557, 5, '2016-08-10 17:59:43', 340, 568, 21.7999992, 45.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1559, 5, '2016-08-10 17:59:55', 341, 551, 21.7999992, 45.0999985, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1561, 5, '2016-08-10 18:00:12', 342, 586, 21.7999992, 45.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1563, 5, '2016-08-10 18:00:31', 342, 568, 21.7999992, 45.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1565, 5, '2016-08-10 18:00:46', 340, 594, 21.7999992, 45.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1567, 5, '2016-08-10 18:01:00', 341, 566, 21.7999992, 45.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1569, 5, '2016-08-10 18:01:14', 341, 601, 21.7999992, 45.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1571, 5, '2016-08-10 18:01:28', 341, 542, 21.7999992, 45.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1573, 5, '2016-08-10 18:01:47', 340, 573, 21.7999992, 45.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1575, 5, '2016-08-10 18:02:04', 340, 562, 21.7999992, 45.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1577, 5, '2016-08-10 18:02:18', 341, 546, 21.7999992, 45.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1579, 5, '2016-08-10 18:02:33', 340, 575, 21.7999992, 45.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1599, 5, '2016-08-10 18:04:57', 344, 564, 21.7999992, 45, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1600, 5, '2016-08-10 18:05:04', 344, 560, 21.7999992, 45, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1601, 5, '2016-08-10 18:05:17', 343, 568, 21.7999992, 45, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1602, 5, '2016-08-10 18:05:25', 342, 580, 21.7999992, 45, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1603, 5, '2016-08-10 18:05:33', 344, 564, 21.7999992, 45, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1604, 5, '2016-08-10 18:05:39', 344, 573, 21.7999992, 45, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1605, 5, '2016-08-10 18:05:47', 344, 571, 21.7999992, 45, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1606, 5, '2016-08-10 18:05:53', 344, 571, 21.7999992, 45, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1607, 5, '2016-08-10 18:06:01', 343, 564, 21.7999992, 45, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1608, 5, '2016-08-10 18:06:05', 345, 577, 21.7999992, 45, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1609, 2, '2016-08-10 18:06:06', 85, 556, 23.6000004, 43.4000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1610, 2, '2016-08-10 18:06:08', 85, 556, 23.6000004, 43.4000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1611, 5, '2016-08-10 18:06:16', 345, 544, 21.7999992, 45, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1612, 5, '2016-08-10 18:06:26', 345, 564, 21.7999992, 45, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1613, 5, '2016-08-10 18:06:29', 345, 582, 21.7999992, 45, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1614, 5, '2016-08-10 18:06:37', 344, 608, 21.7999992, 45, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1615, 5, '2016-08-10 18:06:44', 344, 586, 21.7999992, 45, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1616, 5, '2016-08-10 18:06:52', 344, 546, 21.7999992, 45, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1617, 5, '2016-08-10 18:06:59', 344, 586, 21.7999992, 45, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1618, 5, '2016-08-10 18:07:05', 344, 555, 21.7999992, 45, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1619, 5, '2016-08-10 18:07:13', 345, 537, 21.7999992, 45, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1620, 5, '2016-08-10 18:07:20', 343, 582, 21.7999992, 45, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1621, 5, '2016-08-10 18:07:28', 345, 584, 21.7999992, 45, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1622, 5, '2016-08-10 18:07:35', 344, 589, 21.7999992, 45, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1623, 5, '2016-08-10 18:07:46', 344, 553, 21.7999992, 45, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1624, 5, '2016-08-10 18:07:55', 344, 568, 21.7999992, 45, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1625, 5, '2016-08-10 18:08:03', 344, 577, 21.7999992, 45, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1626, 5, '2016-08-10 18:08:11', 345, 564, 21.7999992, 45, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1627, 5, '2016-08-10 18:08:17', 345, 542, 21.7999992, 45, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1628, 5, '2016-08-10 18:08:27', 343, 564, 21.7999992, 45, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1629, 5, '2016-08-10 18:08:31', 344, 562, 21.7999992, 45, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1630, 5, '2016-08-10 18:08:39', 344, 557, 21.7999992, 45, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1631, 5, '2016-08-10 18:08:47', 344, 582, 21.7999992, 45, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1632, 5, '2016-08-10 18:08:53', 344, 584, 21.7999992, 45, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1633, 5, '2016-08-10 18:09:02', 344, 575, 21.7999992, 45, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1634, 5, '2016-08-10 18:09:07', 344, 517, 21.7999992, 45, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1635, 5, '2016-08-10 18:09:15', 343, 605, 21.7999992, 45, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1636, 5, '2016-08-10 18:09:22', 343, 580, 21.7999992, 45, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1637, 5, '2016-08-10 18:09:29', 344, 573, 21.7999992, 45, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1638, 5, '2016-08-10 18:09:37', 344, 566, 21.7999992, 45, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1639, 5, '2016-08-10 18:09:43', 342, 535, 21.7999992, 45, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1640, 5, '2016-08-10 18:09:51', 343, 573, 21.7999992, 45, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1641, 5, '2016-08-10 18:10:01', 343, 584, 21.7999992, 45, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1642, 5, '2016-08-10 18:10:05', 341, 568, 21.7999992, 45, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1643, 5, '2016-08-10 18:10:13', 341, 603, 21.7999992, 45, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1644, 5, '2016-08-10 18:10:19', 342, 549, 21.7999992, 45, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1645, 5, '2016-08-10 18:10:27', 342, 586, 21.7999992, 45, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1646, 5, '2016-08-10 18:10:34', 342, 568, 21.7999992, 45, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1647, 5, '2016-08-10 18:10:41', 341, 566, 21.7999992, 45, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1648, 5, '2016-08-10 18:10:49', 341, 575, 21.7999992, 45, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1649, 5, '2016-08-10 18:10:55', 341, 573, 21.7999992, 45, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1650, 5, '2016-08-10 18:11:04', 341, 564, 21.7999992, 45, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1651, 5, '2016-08-10 18:11:09', 342, 564, 21.7999992, 45, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1652, 1, '2016-08-10 18:11:10', 19, 566, 22.6000004, 44.4000015, 5961);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1653, 5, '2016-08-10 18:11:17', 342, 566, 21.7999992, 45, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1654, 5, '2016-08-10 18:11:24', 342, 586, 21.7999992, 45, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1655, 5, '2016-08-10 18:11:31', 342, 568, 21.7999992, 45, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1656, 5, '2016-08-10 18:11:39', 340, 568, 21.7999992, 45, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1657, 5, '2016-08-10 18:11:54', 340, 551, 21.7999992, 45, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1658, 5, '2016-08-10 18:12:00', 342, 584, 21.7999992, 45, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1659, 5, '2016-08-10 18:12:07', 340, 515, 21.7999992, 45, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1660, 5, '2016-08-10 18:12:15', 340, 544, 21.7999992, 44.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1661, 5, '2016-08-10 18:12:29', 340, 582, 21.7999992, 44.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1662, 5, '2016-08-10 18:12:36', 341, 566, 21.7999992, 44.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1663, 5, '2016-08-10 18:12:43', 341, 568, 21.7999992, 44.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1664, 5, '2016-08-10 18:12:51', 340, 575, 21.7999992, 44.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1665, 5, '2016-08-10 18:12:56', 340, 564, 21.7999992, 44.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1666, 5, '2016-08-10 18:13:05', 340, 555, 21.7999992, 44.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1667, 5, '2016-08-10 18:13:12', 340, 540, 21.7999992, 44.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1668, 5, '2016-08-10 18:13:19', 340, 584, 21.7999992, 44.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1669, 5, '2016-08-10 18:13:27', 340, 575, 21.7999992, 44.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1670, 5, '2016-08-10 18:13:33', 340, 577, 21.7999992, 44.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1671, 5, '2016-08-10 18:13:41', 340, 535, 21.7999992, 44.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1672, 5, '2016-08-10 18:13:55', 340, 580, 21.7999992, 44.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1673, 5, '2016-08-10 18:14:02', 339, 533, 21.7999992, 44.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1674, 5, '2016-08-10 18:14:09', 339, 594, 21.7999992, 44.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1675, 5, '2016-08-10 18:14:17', 339, 557, 21.7999992, 44.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1676, 5, '2016-08-10 18:14:18', 339, 533, 21.7999992, 44.9000015, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1677, 5, '2016-08-10 18:14:30', 339, 562, 21.7999992, 44.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1678, 5, '2016-08-10 18:14:38', 339, 584, 21.7999992, 44.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1679, 5, '2016-08-10 18:14:45', 339, 568, 21.7999992, 44.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1681, 5, '2016-08-10 18:14:53', 339, 575, 21.7999992, 44.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1693, 5, '2016-08-10 18:16:27', 341, 589, 21.7999992, 44.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1695, 5, '2016-08-10 18:16:47', 340, 584, 21.7999992, 44.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1697, 5, '2016-08-10 18:17:08', 340, 553, 21.7999992, 44.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1699, 5, '2016-08-10 18:17:31', 340, 573, 21.7999992, 44.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1701, 5, '2016-08-10 18:17:44', 340, 582, 21.7999992, 44.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1703, 5, '2016-08-10 18:18:07', 340, 564, 21.7999992, 44.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1705, 5, '2016-08-10 18:18:17', 340, 577, 21.7999992, 44.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1717, 5, '2016-08-10 18:19:46', 339, 580, 21.7999992, 44.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1719, 5, '2016-08-10 18:19:55', 339, 589, 21.7999992, 44.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1721, 5, '2016-08-10 18:20:09', 339, 608, 21.7999992, 44.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1723, 5, '2016-08-10 18:20:22', 339, 551, 21.8999996, 44.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1725, 5, '2016-08-10 18:20:37', 339, 535, 21.7999992, 44.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1727, 5, '2016-08-10 18:20:52', 339, 603, 21.8999996, 44.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1729, 5, '2016-08-10 18:21:08', 339, 574, 21.8999996, 44.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1731, 5, '2016-08-10 18:21:16', 339, 558, 21.8999996, 44.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1733, 5, '2016-08-10 18:21:28', 341, 574, 21.8999996, 44.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1735, 5, '2016-08-10 18:21:42', 340, 575, 21.8999996, 44.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1737, 5, '2016-08-10 18:21:57', 341, 553, 21.8999996, 44.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1739, 5, '2016-08-10 18:22:10', 341, 542, 21.8999996, 44.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1741, 5, '2016-08-10 18:22:25', 341, 608, 21.8999996, 44.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1743, 5, '2016-08-10 18:22:39', 341, 599, 21.8999996, 44.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1747, 5, '2016-08-10 18:23:08', 340, 555, 21.8999996, 44.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1749, 5, '2016-08-10 18:23:22', 340, 590, 21.8999996, 44.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1751, 5, '2016-08-10 18:23:36', 340, 558, 21.8999996, 44.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1753, 5, '2016-08-10 18:23:51', 340, 522, 21.8999996, 44.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1755, 5, '2016-08-10 18:24:08', 340, 583, 21.8999996, 44.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1757, 5, '2016-08-10 18:24:20', 340, 592, 21.8999996, 44.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1759, 5, '2016-08-10 18:24:28', 340, 562, 21.8999996, 44.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1761, 5, '2016-08-10 18:24:48', 340, 592, 21.8999996, 44.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1763, 5, '2016-08-10 18:25:03', 340, 555, 21.8999996, 44.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1765, 5, '2016-08-10 18:25:18', 340, 578, 21.8999996, 44.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1767, 5, '2016-08-10 18:25:32', 340, 599, 21.8999996, 44.7999992, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1769, 5, '2016-08-10 18:25:46', 340, 558, 21.8999996, 44.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1771, 5, '2016-08-10 18:26:00', 340, 544, 21.8999996, 44.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1773, 5, '2016-08-10 18:26:14', 340, 571, 21.8999996, 44.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1777, 5, '2016-08-10 18:26:36', 340, 562, 21.8999996, 44.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1779, 5, '2016-08-10 18:26:50', 340, 540, 21.8999996, 44.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1781, 5, '2016-08-10 18:27:05', 340, 533, 21.8999996, 44.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1783, 5, '2016-08-10 18:27:22', 340, 615, 21.8999996, 44.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1785, 5, '2016-08-10 18:27:34', 341, 580, 21.8999996, 44.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1787, 5, '2016-08-10 18:27:48', 341, 569, 21.8999996, 44.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1789, 5, '2016-08-10 18:28:02', 341, 555, 21.8999996, 44.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1680, 5, '2016-08-10 18:14:53', 339, 571, 21.7999992, 44.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1682, 0, '2016-08-10 18:15:01', 35, 590, 22.2000008, 46.9000015, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1684, 5, '2016-08-10 18:15:21', 339, 562, 21.7999992, 44.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1686, 5, '2016-08-10 18:15:35', 341, 580, 21.7999992, 44.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1688, 5, '2016-08-10 18:15:50', 341, 568, 21.7999992, 44.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1690, 5, '2016-08-10 18:16:05', 340, 562, 21.7999992, 44.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1692, 5, '2016-08-10 18:16:19', 340, 542, 21.7999992, 44.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1694, 5, '2016-08-10 18:16:41', 340, 553, 21.7999992, 44.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1702, 5, '2016-08-10 18:17:59', 340, 635, 21.7999992, 44.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1704, 5, '2016-08-10 18:18:14', 340, 582, 21.7999992, 44.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1706, 5, '2016-08-10 18:18:28', 340, 589, 21.7999992, 44.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1708, 5, '2016-08-10 18:18:43', 340, 608, 21.7999992, 44.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1710, 5, '2016-08-10 18:18:56', 341, 598, 21.7999992, 44.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1712, 5, '2016-08-10 18:19:11', 341, 642, 21.7999992, 44.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1714, 5, '2016-08-10 18:19:25', 339, 569, 21.7999992, 44.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1716, 5, '2016-08-10 18:19:39', 339, 580, 21.7999992, 44.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1718, 5, '2016-08-10 18:19:54', 339, 569, 21.8999996, 44.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1720, 3, '2016-08-10 18:20:01', 144, 588, 22.6000004, 45.7999992, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1722, 5, '2016-08-10 18:20:16', 339, 564, 21.8999996, 44.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1724, 5, '2016-08-10 18:20:30', 339, 567, 21.7999992, 44.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1748, 5, '2016-08-10 18:23:15', 340, 578, 21.8999996, 44.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1750, 5, '2016-08-10 18:23:30', 340, 583, 21.8999996, 44.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1752, 5, '2016-08-10 18:23:46', 340, 571, 21.8999996, 44.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1754, 5, '2016-08-10 18:23:59', 340, 574, 21.8999996, 44.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1756, 5, '2016-08-10 18:24:12', 340, 522, 21.8999996, 44.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1758, 5, '2016-08-10 18:24:27', 340, 587, 21.8999996, 44.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1760, 5, '2016-08-10 18:24:42', 340, 594, 21.8999996, 44.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1762, 5, '2016-08-10 18:24:56', 340, 569, 21.8999996, 44.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1764, 5, '2016-08-10 18:25:10', 340, 592, 21.8999996, 44.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1766, 5, '2016-08-10 18:25:24', 340, 592, 21.8999996, 44.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1768, 5, '2016-08-10 18:25:38', 340, 542, 21.8999996, 44.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1770, 5, '2016-08-10 18:25:48', 340, 544, 21.8999996, 44.7999992, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1772, 5, '2016-08-10 18:26:08', 340, 567, 21.8999996, 44.7999992, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1774, 5, '2016-08-10 18:26:19', 340, 592, 21.8999996, 44.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1804, 5, '2016-08-10 18:29:50', 338, 585, 21.8999996, 44.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1806, 5, '2016-08-10 18:30:04', 338, 517, 21.8999996, 44.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1808, 5, '2016-08-10 18:30:12', 338, 537, 21.8999996, 44.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1810, 5, '2016-08-10 18:30:26', 339, 606, 21.8999996, 44.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1812, 5, '2016-08-10 18:30:40', 338, 592, 21.8999996, 44.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1814, 5, '2016-08-10 18:30:54', 338, 578, 21.8999996, 44.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1683, 5, '2016-08-10 18:15:06', 339, 586, 21.7999992, 44.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1685, 5, '2016-08-10 18:15:29', 339, 573, 21.7999992, 44.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1687, 5, '2016-08-10 18:15:43', 341, 535, 21.7999992, 44.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1689, 5, '2016-08-10 18:15:57', 341, 571, 21.7999992, 44.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1691, 5, '2016-08-10 18:16:11', 340, 562, 21.7999992, 44.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1707, 5, '2016-08-10 18:18:35', 340, 573, 21.7999992, 44.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1709, 5, '2016-08-10 18:18:49', 341, 560, 21.7999992, 44.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1711, 5, '2016-08-10 18:19:04', 340, 568, 21.7999992, 44.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1713, 5, '2016-08-10 18:19:19', 341, 577, 21.7999992, 44.7999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1715, 5, '2016-08-10 18:19:34', 339, 558, 21.7999992, 44.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1745, 5, '2016-08-10 18:22:54', 341, 558, 21.8999996, 44.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1775, 1, '2016-08-10 18:26:23', 67, 585, 22.6000004, 44.5, 8545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1791, 5, '2016-08-10 18:28:17', 339, 592, 21.8999996, 44.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1793, 5, '2016-08-10 18:28:31', 339, 608, 21.8999996, 44.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1795, 5, '2016-08-10 18:28:46', 339, 578, 21.8999996, 44.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1797, 5, '2016-08-10 18:29:00', 340, 560, 21.8999996, 44.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1799, 5, '2016-08-10 18:29:14', 339, 594, 21.8999996, 44.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1801, 5, '2016-08-10 18:29:29', 339, 564, 21.8999996, 44.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1803, 5, '2016-08-10 18:29:43', 338, 587, 21.8999996, 44.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1805, 5, '2016-08-10 18:29:58', 338, 553, 21.8999996, 44.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1807, 0, '2016-08-10 18:30:06', 7, 566, 22.1000004, 49.2000008, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1809, 5, '2016-08-10 18:30:19', 339, 560, 21.8999996, 44.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1811, 5, '2016-08-10 18:30:34', 337, 592, 21.8999996, 44.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1813, 5, '2016-08-10 18:30:48', 338, 590, 21.8999996, 44.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1696, 5, '2016-08-10 18:16:55', 340, 557, 21.7999992, 44.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1698, 5, '2016-08-10 18:17:23', 340, 577, 21.7999992, 44.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1700, 5, '2016-08-10 18:17:38', 340, 566, 21.7999992, 44.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1726, 5, '2016-08-10 18:20:45', 339, 569, 21.7999992, 44.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1728, 5, '2016-08-10 18:20:59', 339, 576, 21.7999992, 44.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1730, 5, '2016-08-10 18:21:13', 339, 585, 21.8999996, 44.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1732, 2, '2016-08-10 18:21:21', 51, 535, 23.7000008, 43.2000008, 4370);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1734, 5, '2016-08-10 18:21:34', 341, 573, 21.8999996, 44.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1736, 5, '2016-08-10 18:21:49', 341, 531, 21.8999996, 44.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1738, 5, '2016-08-10 18:22:01', 341, 583, 21.8999996, 44.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1740, 5, '2016-08-10 18:22:18', 341, 615, 21.8999996, 44.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1742, 5, '2016-08-10 18:22:32', 341, 583, 21.8999996, 44.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1744, 5, '2016-08-10 18:22:46', 341, 562, 21.8999996, 44.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1746, 5, '2016-08-10 18:22:58', 340, 542, 21.8999996, 44.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1776, 5, '2016-08-10 18:26:29', 340, 560, 21.8999996, 44.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1778, 5, '2016-08-10 18:26:44', 340, 612, 21.8999996, 44.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1780, 5, '2016-08-10 18:26:58', 340, 587, 21.8999996, 44.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1782, 5, '2016-08-10 18:27:12', 340, 560, 21.8999996, 44.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1784, 5, '2016-08-10 18:27:22', 341, 549, 21.8999996, 44.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1786, 5, '2016-08-10 18:27:41', 341, 596, 21.8999996, 44.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1788, 5, '2016-08-10 18:27:55', 341, 553, 21.8999996, 44.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1790, 5, '2016-08-10 18:28:10', 341, 544, 21.8999996, 44.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1792, 5, '2016-08-10 18:28:24', 339, 574, 21.8999996, 44.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1794, 5, '2016-08-10 18:28:38', 339, 580, 21.8999996, 44.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1796, 5, '2016-08-10 18:28:52', 339, 558, 21.8999996, 44.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1798, 5, '2016-08-10 18:29:07', 339, 564, 21.8999996, 44.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1800, 5, '2016-08-10 18:29:22', 339, 569, 21.8999996, 44.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1802, 5, '2016-08-10 18:29:35', 338, 615, 21.8999996, 44.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1815, 5, '2016-08-10 18:31:02', 338, 574, 21.8999996, 44.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1816, 5, '2016-08-10 18:31:09', 337, 569, 21.8999996, 44.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1817, 5, '2016-08-10 18:31:16', 337, 558, 21.8999996, 44.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1818, 5, '2016-08-10 18:31:24', 337, 578, 21.8999996, 44.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1819, 5, '2016-08-10 18:31:31', 337, 576, 21.8999996, 44.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1820, 5, '2016-08-10 18:31:38', 337, 601, 21.8999996, 44.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1821, 5, '2016-08-10 18:31:45', 337, 594, 21.8999996, 44.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1822, 5, '2016-08-10 18:31:52', 337, 560, 21.8999996, 44.7999992, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1823, 5, '2016-08-10 18:32:00', 337, 590, 21.8999996, 44.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1824, 5, '2016-08-10 18:32:08', 337, 612, 21.8999996, 44.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1825, 5, '2016-08-10 18:32:22', 337, 585, 21.8999996, 44.7999992, 29442);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1826, 5, '2016-08-10 18:32:29', 337, 535, 21.8999996, 44.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1827, 5, '2016-08-10 18:32:35', 337, 555, 21.8999996, 44.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1828, 5, '2016-08-10 18:32:43', 337, 562, 21.8999996, 44.7999992, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1829, 5, '2016-08-10 18:32:49', 337, 585, 21.8999996, 44.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1830, 5, '2016-08-10 18:32:57', 337, 576, 21.8999996, 44.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1831, 5, '2016-08-10 18:32:59', 337, 578, 21.8999996, 44.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1832, 5, '2016-08-10 18:33:14', 337, 562, 21.8999996, 44.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1833, 5, '2016-08-10 18:33:18', 337, 599, 21.8999996, 44.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1834, 5, '2016-08-10 18:33:25', 337, 594, 21.8999996, 44.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1835, 5, '2016-08-10 18:33:34', 337, 576, 21.8999996, 44.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1836, 5, '2016-08-10 18:33:40', 337, 555, 21.8999996, 44.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1837, 5, '2016-08-10 18:33:48', 337, 562, 21.8999996, 44.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1838, 5, '2016-08-10 18:33:54', 337, 569, 21.8999996, 44.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1839, 5, '2016-08-10 18:34:02', 337, 564, 21.8999996, 44.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1840, 5, '2016-08-10 18:34:16', 337, 542, 21.8999996, 44.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1841, 5, '2016-08-10 18:34:24', 338, 594, 21.8999996, 44.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1842, 5, '2016-08-10 18:34:30', 338, 619, 21.8999996, 44.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1843, 5, '2016-08-10 18:34:37', 338, 583, 21.8999996, 44.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1844, 5, '2016-08-10 18:34:38', 338, 555, 21.8999996, 44.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1845, 5, '2016-08-10 18:34:49', 337, 540, 21.8999996, 44.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1846, 5, '2016-08-10 18:35:00', 337, 569, 21.8999996, 44.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1847, 5, '2016-08-10 18:35:06', 337, 574, 21.8999996, 44.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1848, 3, '2016-08-10 18:35:07', 96, 618, 22.5, 47.2999992, 6263);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1849, 3, '2016-08-10 18:35:07', 96, 618, 22.5, 47.2999992, 6263);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1850, 5, '2016-08-10 18:35:13', 339, 576, 21.8999996, 44.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1851, 5, '2016-08-10 18:35:21', 338, 590, 21.8999996, 44.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1852, 5, '2016-08-10 18:35:30', 338, 564, 21.8999996, 44.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1853, 5, '2016-08-10 18:35:35', 338, 599, 21.8999996, 44.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1854, 5, '2016-08-10 18:35:42', 338, 567, 21.8999996, 44.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1855, 5, '2016-08-10 18:35:50', 338, 580, 21.8999996, 44.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1856, 5, '2016-08-10 18:35:56', 340, 594, 21.8999996, 44.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1857, 5, '2016-08-10 18:36:04', 339, 567, 21.8999996, 44.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1858, 5, '2016-08-10 18:36:12', 339, 596, 21.8999996, 44.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1859, 5, '2016-08-10 18:36:18', 339, 578, 21.8999996, 44.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1860, 5, '2016-08-10 18:36:26', 339, 576, 21.8999996, 44.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1861, 5, '2016-08-10 18:36:26', 339, 571, 21.8999996, 44.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1862, 2, '2016-08-10 18:36:34', 38, 524, 23.7999992, 43.2000008, 2368);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1863, 5, '2016-08-10 18:36:39', 339, 562, 21.8999996, 44.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1864, 5, '2016-08-10 18:36:47', 339, 549, 21.8999996, 44.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1865, 5, '2016-08-10 18:36:54', 338, 569, 21.8999996, 44.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1866, 5, '2016-08-10 18:37:04', 339, 587, 21.8999996, 44.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1867, 5, '2016-08-10 18:37:10', 339, 583, 21.8999996, 44.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1868, 5, '2016-08-10 18:37:16', 339, 571, 21.8999996, 44.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1869, 5, '2016-08-10 18:37:23', 339, 592, 21.8999996, 44.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1870, 5, '2016-08-10 18:37:29', 339, 576, 21.8999996, 44.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1871, 5, '2016-08-10 18:37:37', 340, 578, 21.8999996, 44.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1872, 5, '2016-08-10 18:37:45', 339, 590, 21.8999996, 44.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1873, 5, '2016-08-10 18:37:51', 340, 542, 21.8999996, 44.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1874, 5, '2016-08-10 18:37:59', 339, 580, 21.8999996, 44.7000008, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1875, 5, '2016-08-10 18:38:05', 340, 533, 21.8999996, 44.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1876, 5, '2016-08-10 18:38:14', 340, 564, 21.8999996, 44.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1877, 5, '2016-08-10 18:38:21', 339, 558, 21.8999996, 44.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1878, 5, '2016-08-10 18:38:27', 339, 578, 21.8999996, 44.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1879, 5, '2016-08-10 18:38:35', 339, 549, 21.8999996, 44.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1880, 5, '2016-08-10 18:38:41', 340, 590, 21.8999996, 44.7000008, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1881, 5, '2016-08-10 18:38:49', 340, 603, 21.8999996, 44.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1882, 5, '2016-08-10 18:38:56', 339, 562, 21.8999996, 44.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1883, 5, '2016-08-10 18:39:03', 339, 555, 21.8999996, 44.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1884, 5, '2016-08-10 18:39:11', 340, 580, 21.8999996, 44.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1885, 5, '2016-08-10 18:39:17', 339, 540, 21.8999996, 44.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1886, 5, '2016-08-10 18:39:25', 339, 540, 21.8999996, 44.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1887, 5, '2016-08-10 18:39:47', 340, 576, 21.8999996, 44.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1888, 5, '2016-08-10 18:39:53', 340, 574, 21.8999996, 44.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1889, 5, '2016-08-10 18:40:01', 339, 592, 21.8999996, 44.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1890, 5, '2016-08-10 18:40:07', 338, 571, 21.8999996, 44.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1891, 5, '2016-08-10 18:40:16', 338, 555, 21.8999996, 44.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1892, 5, '2016-08-10 18:40:23', 339, 567, 21.8999996, 44.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1893, 5, '2016-08-10 18:40:29', 338, 562, 21.8999996, 44.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1894, 5, '2016-08-10 18:40:38', 339, 537, 21.8999996, 44.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1896, 5, '2016-08-10 18:40:58', 339, 578, 21.8999996, 44.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1898, 5, '2016-08-10 18:41:13', 340, 585, 21.8999996, 44.7000008, 29506);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1900, 5, '2016-08-10 18:41:28', 339, 526, 21.8999996, 44.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1902, 1, '2016-08-10 18:41:35', 82, 540, 22.6000004, 44.7999992, 10391);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1904, 5, '2016-08-10 18:41:49', 339, 576, 21.8999996, 44.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1906, 5, '2016-08-10 18:42:05', 339, 594, 21.8999996, 44.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1908, 5, '2016-08-10 18:42:15', 340, 578, 21.8999996, 44.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1910, 5, '2016-08-10 18:42:31', 339, 544, 21.8999996, 44.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1938, 5, '2016-08-10 18:45:54', 339, 561, 22, 44.5999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1940, 5, '2016-08-10 18:46:07', 338, 556, 22, 44.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1942, 5, '2016-08-10 18:46:29', 338, 561, 22, 44.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1944, 5, '2016-08-10 18:46:42', 336, 558, 22, 44.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1946, 5, '2016-08-10 18:46:57', 336, 537, 22, 44.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1948, 5, '2016-08-10 18:47:12', 336, 554, 22, 44.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1950, 5, '2016-08-10 18:47:28', 337, 565, 22, 44.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1952, 5, '2016-08-10 18:47:41', 337, 578, 22, 44.5999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1954, 5, '2016-08-10 18:47:54', 337, 583, 22, 44.5999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1956, 5, '2016-08-10 18:48:09', 337, 576, 22, 44.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1958, 5, '2016-08-10 18:48:30', 337, 569, 22, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1960, 5, '2016-08-10 18:48:45', 337, 592, 22, 44.5999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1962, 5, '2016-08-10 18:48:59', 337, 578, 22, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1964, 5, '2016-08-10 18:49:14', 337, 569, 22, 44.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1978, 5, '2016-08-10 18:50:55', 338, 563, 22, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1980, 5, '2016-08-10 18:51:08', 338, 569, 22, 44.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1982, 5, '2016-08-10 18:51:24', 337, 587, 22, 44.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1984, 5, '2016-08-10 18:51:39', 337, 567, 22, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1986, 2, '2016-08-10 18:51:39', 35, 515, 23.8999996, 43.2000008, 6529);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1988, 5, '2016-08-10 18:51:53', 338, 561, 22, 44.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1990, 5, '2016-08-10 18:52:07', 338, 576, 22, 44.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1992, 5, '2016-08-10 18:52:20', 339, 545, 22, 44.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1994, 5, '2016-08-10 18:52:34', 339, 567, 22, 44.5999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1996, 5, '2016-08-10 18:52:49', 338, 540, 22, 44.5999985, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1998, 5, '2016-08-10 18:53:03', 338, 558, 22, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2000, 5, '2016-08-10 18:53:25', 339, 606, 22, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2002, 5, '2016-08-10 18:53:40', 336, 583, 22, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2004, 5, '2016-08-10 18:53:55', 336, 578, 22, 44.5999985, 32835);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2022, 5, '2016-08-10 18:56:03', 341, 601, 22, 44.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2024, 5, '2016-08-10 18:56:23', 338, 561, 22, 44.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2026, 5, '2016-08-10 18:56:40', 339, 563, 22, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2028, 1, '2016-08-10 18:56:46', 37, 526, 22.6000004, 45, 10241);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2030, 5, '2016-08-10 18:57:00', 340, 556, 22, 44.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2032, 5, '2016-08-10 18:57:15', 340, 554, 22, 44.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2034, 5, '2016-08-10 18:57:32', 341, 590, 22, 44.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2036, 5, '2016-08-10 18:57:44', 340, 574, 22, 44.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2038, 5, '2016-08-10 18:57:58', 339, 558, 22, 44.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2040, 5, '2016-08-10 18:58:12', 339, 585, 22, 44.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2042, 5, '2016-08-10 18:58:29', 339, 552, 22, 44.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2044, 5, '2016-08-10 18:58:42', 339, 565, 22, 44.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1895, 5, '2016-08-10 18:40:43', 339, 585, 21.8999996, 44.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1897, 5, '2016-08-10 18:41:05', 339, 537, 21.8999996, 44.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1899, 5, '2016-08-10 18:41:21', 340, 531, 21.8999996, 44.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1901, 5, '2016-08-10 18:41:30', 339, 555, 21.8999996, 44.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1903, 5, '2016-08-10 18:41:41', 339, 558, 21.8999996, 44.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1905, 5, '2016-08-10 18:41:55', 339, 587, 21.8999996, 44.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1907, 5, '2016-08-10 18:42:09', 340, 533, 21.8999996, 44.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1909, 5, '2016-08-10 18:42:25', 339, 578, 21.8999996, 44.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1939, 5, '2016-08-10 18:46:00', 338, 587, 22, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1941, 5, '2016-08-10 18:46:15', 338, 556, 22, 44.5999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1943, 5, '2016-08-10 18:46:36', 336, 574, 22, 44.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1945, 5, '2016-08-10 18:46:50', 336, 561, 22, 44.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1947, 5, '2016-08-10 18:47:05', 337, 592, 22, 44.5999985, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1949, 5, '2016-08-10 18:47:18', 337, 544, 22, 44.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1967, 5, '2016-08-10 18:49:35', 337, 556, 22, 44.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1969, 5, '2016-08-10 18:49:50', 337, 540, 22, 44.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1971, 5, '2016-08-10 18:50:04', 337, 563, 22, 44.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1973, 5, '2016-08-10 18:50:16', 337, 563, 22, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1975, 5, '2016-08-10 18:50:32', 338, 565, 22, 44.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1977, 5, '2016-08-10 18:50:47', 338, 558, 22, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1979, 5, '2016-08-10 18:51:01', 338, 550, 22, 44.5999985, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1981, 5, '2016-08-10 18:51:16', 338, 567, 22, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1995, 5, '2016-08-10 18:52:42', 340, 547, 22, 44.5999985, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1997, 5, '2016-08-10 18:52:56', 338, 569, 22, 44.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1999, 5, '2016-08-10 18:53:10', 337, 576, 22, 44.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2001, 5, '2016-08-10 18:53:32', 327, 576, 22, 44.5999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2003, 5, '2016-08-10 18:53:46', 336, 561, 22, 44.5999985, 32835);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2005, 5, '2016-08-10 18:54:01', 339, 538, 22, 44.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2007, 5, '2016-08-10 18:54:15', 337, 569, 22, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2009, 5, '2016-08-10 18:54:31', 324, 615, 22, 44.5999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2011, 5, '2016-08-10 18:54:44', 339, 636, 22, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2013, 5, '2016-08-10 18:54:58', 337, 569, 22, 44.5999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2015, 5, '2016-08-10 18:55:12', 339, 561, 22, 44.5999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2017, 5, '2016-08-10 18:55:28', 339, 545, 22, 44.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2019, 5, '2016-08-10 18:55:42', 340, 592, 22, 44.5999985, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2021, 5, '2016-08-10 18:55:57', 340, 590, 22, 44.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1911, 5, '2016-08-10 18:42:41', 340, 560, 22, 44.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1913, 5, '2016-08-10 18:42:53', 339, 610, 21.8999996, 44.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1915, 5, '2016-08-10 18:43:01', 340, 567, 22, 44.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1917, 5, '2016-08-10 18:43:21', 340, 550, 22, 44.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1919, 5, '2016-08-10 18:43:36', 339, 571, 21.8999996, 44.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1921, 5, '2016-08-10 18:43:48', 339, 507, 22, 44.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1923, 5, '2016-08-10 18:44:05', 339, 560, 21.8999996, 44.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1925, 5, '2016-08-10 18:44:19', 339, 567, 22, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1927, 5, '2016-08-10 18:44:33', 339, 555, 22, 44.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1929, 5, '2016-08-10 18:44:48', 338, 562, 22, 44.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1931, 5, '2016-08-10 18:45:09', 338, 550, 22, 44.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1933, 0, '2016-08-10 18:45:17', 16, 534, 22.3999996, 48.9000015, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1935, 5, '2016-08-10 18:45:30', 338, 562, 22, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1937, 5, '2016-08-10 18:45:45', 338, 569, 22, 44.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1951, 5, '2016-08-10 18:47:33', 337, 544, 22, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1953, 5, '2016-08-10 18:47:48', 337, 592, 22, 44.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1955, 5, '2016-08-10 18:48:02', 337, 581, 22, 44.5999985, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1957, 5, '2016-08-10 18:48:16', 337, 558, 22, 44.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1959, 5, '2016-08-10 18:48:39', 337, 606, 22, 44.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1961, 5, '2016-08-10 18:48:52', 337, 561, 22, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1963, 5, '2016-08-10 18:49:06', 337, 547, 22, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1965, 5, '2016-08-10 18:49:20', 337, 585, 22, 44.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1983, 5, '2016-08-10 18:51:30', 337, 617, 22, 44.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1985, 5, '2016-08-10 18:51:39', 339, 534, 22, 44.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1987, 2, '2016-08-10 18:51:46', 35, 515, 23.8999996, 43.2000008, 6529);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1989, 5, '2016-08-10 18:51:58', 338, 583, 22, 44.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1991, 5, '2016-08-10 18:52:15', 339, 578, 22, 44.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1993, 5, '2016-08-10 18:52:22', 340, 543, 22, 44.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2023, 5, '2016-08-10 18:56:11', 339, 599, 22, 44.5999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2025, 5, '2016-08-10 18:56:23', 339, 585, 22, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2027, 5, '2016-08-10 18:56:42', 339, 527, 22, 44.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2029, 5, '2016-08-10 18:56:54', 340, 587, 22, 44.5999985, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2031, 5, '2016-08-10 18:57:08', 339, 569, 22, 44.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2033, 5, '2016-08-10 18:57:22', 341, 590, 22, 44.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2035, 5, '2016-08-10 18:57:36', 341, 554, 22, 44.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2037, 5, '2016-08-10 18:57:51', 340, 550, 22, 44.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2039, 5, '2016-08-10 18:58:06', 339, 578, 22, 44.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2041, 5, '2016-08-10 18:58:20', 339, 627, 22, 44.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2043, 5, '2016-08-10 18:58:34', 339, 527, 22, 44.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2045, 5, '2016-08-10 18:58:48', 340, 623, 22, 44.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1912, 5, '2016-08-10 18:42:45', 340, 563, 21.8999996, 44.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1914, 5, '2016-08-10 18:43:01', 339, 594, 21.8999996, 44.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1916, 5, '2016-08-10 18:43:15', 339, 533, 22, 44.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1918, 5, '2016-08-10 18:43:29', 339, 546, 22, 44.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1920, 5, '2016-08-10 18:43:43', 339, 567, 21.8999996, 44.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1922, 5, '2016-08-10 18:43:57', 339, 538, 22, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1924, 5, '2016-08-10 18:44:13', 339, 553, 22, 44.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1926, 5, '2016-08-10 18:44:27', 339, 587, 22, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1928, 5, '2016-08-10 18:44:48', 339, 578, 22, 44.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1930, 5, '2016-08-10 18:45:03', 338, 558, 22, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1932, 5, '2016-08-10 18:45:15', 338, 569, 22, 44.5999985, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1934, 5, '2016-08-10 18:45:23', 338, 638, 22, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1936, 5, '2016-08-10 18:45:39', 338, 533, 22, 44.5999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1966, 5, '2016-08-10 18:49:29', 337, 572, 22, 44.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1968, 5, '2016-08-10 18:49:43', 337, 576, 22, 44.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1970, 5, '2016-08-10 18:49:56', 337, 578, 22, 44.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1972, 5, '2016-08-10 18:50:11', 337, 572, 22, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1974, 3, '2016-08-10 18:50:19', 98, 577, 22.6000004, 47.2000008, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (1976, 5, '2016-08-10 18:50:42', 338, 563, 22, 44.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2006, 5, '2016-08-10 18:54:09', 339, 563, 22, 44.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2008, 5, '2016-08-10 18:54:22', 336, 554, 22, 44.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2010, 5, '2016-08-10 18:54:34', 337, 592, 22, 44.5999985, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2012, 5, '2016-08-10 18:54:54', 337, 576, 22, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2014, 5, '2016-08-10 18:54:58', 339, 550, 22, 44.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2016, 5, '2016-08-10 18:55:21', 337, 554, 22, 44.5999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2018, 5, '2016-08-10 18:55:34', 340, 563, 22, 44.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2020, 5, '2016-08-10 18:55:49', 339, 583, 22, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2046, 5, '2016-08-10 18:58:57', 340, 576, 22, 44.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2047, 5, '2016-08-10 18:59:02', 338, 602, 22, 44.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2048, 5, '2016-08-10 18:59:10', 338, 567, 22, 44.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2049, 5, '2016-08-10 18:59:17', 40, 558, 22, 44.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2050, 5, '2016-08-10 18:59:24', 40, 604, 22, 44.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2051, 5, '2016-08-10 18:59:32', 40, 576, 22, 44.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2052, 5, '2016-08-10 18:59:38', 40, 608, 22, 44.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2053, 5, '2016-08-10 18:59:46', 41, 611, 22, 44.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2054, 5, '2016-08-10 18:59:53', 39, 567, 22, 44.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2055, 5, '2016-08-10 19:00:00', 41, 569, 22, 44.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2056, 5, '2016-08-10 19:00:08', 41, 569, 22, 44.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2057, 5, '2016-08-10 19:00:14', 39, 585, 22, 44.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2058, 5, '2016-08-10 19:00:23', 39, 585, 22, 44.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2059, 5, '2016-08-10 19:00:26', 39, 583, 22, 44.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2060, 0, '2016-08-10 19:00:31', 5, 544, 22.7000008, 48.0999985, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2061, 5, '2016-08-10 19:00:44', 39, 587, 22, 44.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2062, 5, '2016-08-10 19:00:51', 39, 540, 22, 44.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2063, 5, '2016-08-10 19:01:00', 39, 613, 22, 44.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2064, 5, '2016-08-10 19:01:04', 39, 576, 22, 44.7000008, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2065, 5, '2016-08-10 19:01:11', 39, 565, 22, 44.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2066, 5, '2016-08-10 19:01:19', 39, 538, 22, 44.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2067, 5, '2016-08-10 19:01:34', 39, 554, 22, 44.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2068, 5, '2016-08-10 19:01:41', 39, 590, 22, 44.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2069, 5, '2016-08-10 19:01:48', 39, 581, 22, 44.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2070, 5, '2016-08-10 19:01:49', 40, 565, 22, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2071, 5, '2016-08-10 19:02:02', 38, 576, 22, 44.5999985, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2072, 5, '2016-08-10 19:02:10', 38, 572, 22, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2073, 5, '2016-08-10 19:02:17', 38, 587, 22, 44.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2074, 5, '2016-08-10 19:02:23', 38, 583, 22, 44.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2075, 5, '2016-08-10 19:02:29', 38, 558, 22, 44.5999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2076, 5, '2016-08-10 19:02:38', 38, 567, 22.1000004, 44.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2077, 5, '2016-08-10 19:02:46', 38, 578, 22.1000004, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2078, 5, '2016-08-10 19:02:54', 39, 561, 22, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2079, 5, '2016-08-10 19:02:59', 38, 572, 22, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2080, 5, '2016-08-10 19:03:06', 38, 587, 22.1000004, 44.5999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2081, 5, '2016-08-10 19:03:13', 38, 613, 22.1000004, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2082, 5, '2016-08-10 19:03:24', 38, 576, 22.1000004, 44.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2083, 5, '2016-08-10 19:03:28', 38, 590, 22.1000004, 44.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2084, 5, '2016-08-10 19:03:36', 38, 576, 22.1000004, 44.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2085, 5, '2016-08-10 19:03:38', 38, 561, 22.1000004, 44.5999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2086, 5, '2016-08-10 19:03:50', 39, 545, 22.1000004, 44.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2087, 5, '2016-08-10 19:03:57', 39, 587, 22.1000004, 44.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2088, 5, '2016-08-10 19:04:04', 39, 578, 22.1000004, 44.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2089, 5, '2016-08-10 19:04:12', 39, 540, 22.1000004, 44.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2090, 5, '2016-08-10 19:04:19', 37, 565, 22.1000004, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2091, 5, '2016-08-10 19:04:25', 37, 563, 22.1000004, 44.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2092, 5, '2016-08-10 19:04:33', 37, 543, 22.1000004, 44.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2093, 5, '2016-08-10 19:04:48', 37, 527, 22.1000004, 44.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2094, 5, '2016-08-10 19:04:54', 37, 576, 22.1000004, 44.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2095, 5, '2016-08-10 19:05:02', 37, 563, 22.1000004, 44.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2096, 5, '2016-08-10 19:05:08', 38, 587, 22.1000004, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2097, 5, '2016-08-10 19:05:16', 37, 569, 22.1000004, 44.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2098, 5, '2016-08-10 19:05:23', 37, 581, 22.1000004, 44.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2099, 5, '2016-08-10 19:05:27', 37, 609, 22.1000004, 44.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2100, 3, '2016-08-10 19:05:28', 37, 578, 22.7999992, 46.7999992, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2101, 3, '2016-08-10 19:05:31', 37, 578, 22.7999992, 46.7999992, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2102, 5, '2016-08-10 19:05:37', 37, 597, 22.1000004, 44.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2103, 5, '2016-08-10 19:05:46', 37, 578, 22.1000004, 44.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2104, 5, '2016-08-10 19:05:51', 37, 563, 22.1000004, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2105, 5, '2016-08-10 19:05:59', 37, 585, 22.1000004, 44.5999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2106, 5, '2016-08-10 19:06:06', 38, 572, 22.1000004, 44.5999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2107, 5, '2016-08-10 19:06:13', 38, 550, 22.1000004, 44.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2108, 5, '2016-08-10 19:06:21', 38, 565, 22.1000004, 44.5999985, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2109, 5, '2016-08-10 19:06:28', 38, 581, 22.1000004, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2110, 5, '2016-08-10 19:06:43', 38, 581, 22.1000004, 44.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2111, 5, '2016-08-10 19:06:48', 36, 574, 22.1000004, 44.5999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2112, 2, '2016-08-10 19:06:49', 9, 505, 23.8999996, 42.7999992, 4224);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2113, 2, '2016-08-10 19:06:49', 9, 505, 23.8999996, 42.7999992, 4224);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2114, 5, '2016-08-10 19:06:57', 36, 567, 22.1000004, 44.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2115, 5, '2016-08-10 19:07:03', 36, 576, 22.1000004, 44.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2116, 5, '2016-08-10 19:07:11', 36, 545, 22.1000004, 44.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2117, 5, '2016-08-10 19:07:18', 36, 595, 22.1000004, 44.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2118, 5, '2016-08-10 19:07:25', 37, 569, 22.1000004, 44.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2119, 5, '2016-08-10 19:07:33', 37, 583, 22.1000004, 44.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2120, 5, '2016-08-10 19:07:40', 35, 572, 22.1000004, 44.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2121, 5, '2016-08-10 19:07:47', 35, 550, 22.1000004, 44.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2122, 5, '2016-08-10 19:07:54', 35, 550, 22.1000004, 44.5999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2123, 5, '2016-08-10 19:08:01', 35, 583, 22.1000004, 44.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2124, 5, '2016-08-10 19:08:09', 35, 569, 22.1000004, 44.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2125, 5, '2016-08-10 19:08:15', 35, 572, 22.1000004, 44.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2126, 5, '2016-08-10 19:08:23', 36, 576, 22.1000004, 44.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2128, 5, '2016-08-10 19:08:37', 37, 538, 22.1000004, 44.5999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2130, 5, '2016-08-10 19:08:51', 37, 543, 22.1000004, 44.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2132, 5, '2016-08-10 19:09:05', 35, 567, 22.1000004, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2148, 5, '2016-08-10 19:11:01', 35, 547, 22.1000004, 44.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2156, 5, '2016-08-10 19:11:52', 34, 538, 22.1000004, 44.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2158, 5, '2016-08-10 19:12:05', 34, 585, 22.1000004, 44.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2182, 5, '2016-08-10 19:15:05', 33, 576, 22.1000004, 44.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2184, 5, '2016-08-10 19:15:18', 33, 585, 22.1000004, 44.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2186, 5, '2016-08-10 19:15:34', 33, 514, 22.1000004, 44.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2194, 5, '2016-08-10 19:16:24', 33, 547, 22.1000004, 44.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2196, 5, '2016-08-10 19:16:39', 33, 583, 22.1000004, 44.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2204, 5, '2016-08-10 19:17:36', 33, 550, 22.1000004, 44.5, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2206, 5, '2016-08-10 19:17:50', 33, 572, 22.1000004, 44.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2208, 5, '2016-08-10 19:18:04', 33, 569, 22.1000004, 44.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2210, 5, '2016-08-10 19:18:18', 33, 585, 22.1000004, 44.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2212, 5, '2016-08-10 19:18:34', 33, 604, 22.1000004, 44.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2214, 5, '2016-08-10 19:18:48', 33, 558, 22.1000004, 44.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2216, 5, '2016-08-10 19:19:09', 33, 599, 22.1000004, 44.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2226, 5, '2016-08-10 19:20:21', 33, 592, 22.1000004, 44.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2228, 5, '2016-08-10 19:20:36', 33, 583, 22.1000004, 44.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2230, 3, '2016-08-10 19:20:43', 41, 607, 22.7999992, 46.2999992, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2232, 5, '2016-08-10 19:20:57', 33, 585, 22.1000004, 44.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2234, 5, '2016-08-10 19:21:11', 33, 558, 22.1000004, 44.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2244, 5, '2016-08-10 19:22:09', 32, 563, 22.1000004, 44.5, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2246, 5, '2016-08-10 19:22:23', 32, 552, 22.1000004, 44.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2256, 5, '2016-08-10 19:23:42', 32, 541, 22.1000004, 44.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2258, 5, '2016-08-10 19:23:56', 32, 599, 22.1000004, 44.5, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2260, 5, '2016-08-10 19:24:10', 32, 581, 22.1000004, 44.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2262, 5, '2016-08-10 19:24:25', 32, 574, 22.1000004, 44.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2264, 5, '2016-08-10 19:24:40', 32, 530, 22.1000004, 44.4000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2266, 5, '2016-08-10 19:25:08', 33, 554, 22.1000004, 44.4000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2268, 5, '2016-08-10 19:25:22', 32, 563, 22.1000004, 44.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2290, 5, '2016-08-10 19:27:54', 33, 607, 22.1000004, 44.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2292, 5, '2016-08-10 19:28:09', 33, 556, 22.1000004, 44.4000015, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2294, 5, '2016-08-10 19:28:22', 32, 554, 22.1000004, 44.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2296, 5, '2016-08-10 19:28:36', 33, 565, 22.1000004, 44.4000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2298, 5, '2016-08-10 19:28:51', 32, 611, 22.1000004, 44.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2127, 5, '2016-08-10 19:08:29', 37, 576, 22.1000004, 44.5999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2129, 5, '2016-08-10 19:08:45', 37, 556, 22.1000004, 44.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2131, 5, '2016-08-10 19:09:00', 35, 581, 22.1000004, 44.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2175, 5, '2016-08-10 19:14:08', 34, 599, 22.1000004, 44.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2183, 5, '2016-08-10 19:15:12', 33, 561, 22.1000004, 44.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2185, 5, '2016-08-10 19:15:19', 33, 583, 22.1000004, 44.5, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2187, 5, '2016-08-10 19:15:37', 33, 561, 22.1000004, 44.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2189, 5, '2016-08-10 19:15:48', 33, 550, 22.1000004, 44.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2191, 5, '2016-08-10 19:16:03', 33, 578, 22.1000004, 44.5, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2193, 5, '2016-08-10 19:16:16', 33, 576, 22.1000004, 44.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2195, 5, '2016-08-10 19:16:31', 33, 583, 22.1000004, 44.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2197, 5, '2016-08-10 19:16:46', 33, 552, 22.1000004, 44.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2199, 5, '2016-08-10 19:17:00', 33, 552, 22.1000004, 44.5, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2201, 5, '2016-08-10 19:17:15', 33, 565, 22.1000004, 44.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2225, 5, '2016-08-10 19:20:14', 33, 538, 22.1000004, 44.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2227, 5, '2016-08-10 19:20:28', 33, 561, 22.1000004, 44.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2229, 5, '2016-08-10 19:20:38', 33, 572, 22.1000004, 44.5, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2231, 5, '2016-08-10 19:20:50', 33, 567, 22.1000004, 44.5, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2289, 5, '2016-08-10 19:27:46', 33, 577, 22.1000004, 44.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2291, 5, '2016-08-10 19:28:00', 33, 599, 22.1000004, 44.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2293, 5, '2016-08-10 19:28:14', 32, 550, 22.1000004, 44.4000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2295, 5, '2016-08-10 19:28:31', 33, 565, 22.1000004, 44.4000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2297, 5, '2016-08-10 19:28:45', 32, 584, 22.1000004, 44.4000015, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2299, 5, '2016-08-10 19:28:51', 32, 565, 22.1000004, 44.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2133, 5, '2016-08-10 19:09:13', 35, 554, 22.1000004, 44.5999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2135, 5, '2016-08-10 19:09:27', 35, 583, 22.1000004, 44.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2137, 5, '2016-08-10 19:09:42', 35, 569, 22.1000004, 44.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2139, 5, '2016-08-10 19:09:56', 36, 590, 22.1000004, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2141, 5, '2016-08-10 19:10:11', 34, 578, 22.1000004, 44.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2143, 5, '2016-08-10 19:10:25', 34, 587, 22.1000004, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2145, 5, '2016-08-10 19:10:39', 34, 545, 22.1000004, 44.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2147, 5, '2016-08-10 19:10:50', 35, 554, 22.1000004, 44.5999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2149, 5, '2016-08-10 19:11:07', 34, 609, 22.1000004, 44.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2151, 5, '2016-08-10 19:11:23', 35, 572, 22.1000004, 44.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2153, 5, '2016-08-10 19:11:37', 34, 567, 22.1000004, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2155, 5, '2016-08-10 19:11:51', 34, 554, 22.1000004, 44.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2157, 1, '2016-08-10 19:11:59', 21, 561, 22.5, 44.9000015, 10249);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2159, 5, '2016-08-10 19:12:13', 34, 585, 22.1000004, 44.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2161, 5, '2016-08-10 19:12:26', 35, 587, 22.1000004, 44.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2163, 5, '2016-08-10 19:12:41', 33, 552, 22.1000004, 44.5999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2165, 5, '2016-08-10 19:12:56', 33, 595, 22.1000004, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2167, 5, '2016-08-10 19:13:06', 33, 569, 22.1000004, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2169, 5, '2016-08-10 19:13:24', 33, 574, 22.1000004, 44.5999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2171, 5, '2016-08-10 19:13:39', 33, 565, 22.1000004, 44.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2173, 5, '2016-08-10 19:13:53', 33, 604, 22.1000004, 44.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2177, 5, '2016-08-10 19:14:23', 33, 597, 22.1000004, 44.5999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2179, 5, '2016-08-10 19:14:37', 34, 567, 22.1000004, 44.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2181, 5, '2016-08-10 19:14:58', 34, 567, 22.1000004, 44.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2203, 5, '2016-08-10 19:17:28', 33, 574, 22.1000004, 44.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2205, 5, '2016-08-10 19:17:43', 33, 599, 22.1000004, 44.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2207, 5, '2016-08-10 19:17:58', 33, 558, 22.1000004, 44.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2209, 5, '2016-08-10 19:18:11', 33, 545, 22.1000004, 44.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2211, 5, '2016-08-10 19:18:26', 33, 592, 22.1000004, 44.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2213, 5, '2016-08-10 19:18:40', 34, 565, 22.1000004, 44.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2215, 5, '2016-08-10 19:19:02', 33, 554, 22.1000004, 44.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2217, 5, '2016-08-10 19:19:17', 34, 543, 22.1000004, 44.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2219, 5, '2016-08-10 19:19:30', 33, 561, 22.1000004, 44.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2221, 5, '2016-08-10 19:19:44', 33, 518, 22.1000004, 44.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2223, 5, '2016-08-10 19:20:00', 33, 583, 22.1000004, 44.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2233, 5, '2016-08-10 19:21:04', 33, 550, 22.1000004, 44.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2235, 5, '2016-08-10 19:21:19', 34, 599, 22.1000004, 44.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2237, 5, '2016-08-10 19:21:33', 34, 565, 22.1000004, 44.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2239, 5, '2016-08-10 19:21:47', 34, 604, 22.1000004, 44.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2241, 5, '2016-08-10 19:21:59', 34, 578, 22.1000004, 44.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2243, 2, '2016-08-10 19:22:02', 8, 542, 24, 42.5999985, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2245, 5, '2016-08-10 19:22:16', 32, 567, 22.1000004, 44.5, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2247, 5, '2016-08-10 19:22:30', 32, 552, 22.1000004, 44.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2249, 5, '2016-08-10 19:22:42', 32, 632, 22.1000004, 44.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2251, 5, '2016-08-10 19:23:07', 32, 578, 22.1000004, 44.5, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2253, 5, '2016-08-10 19:23:20', 32, 599, 22.1000004, 44.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2255, 5, '2016-08-10 19:23:35', 32, 567, 22.1000004, 44.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2257, 5, '2016-08-10 19:23:49', 32, 572, 22.1000004, 44.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2259, 5, '2016-08-10 19:24:06', 32, 576, 22.1000004, 44.4000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2261, 5, '2016-08-10 19:24:21', 32, 572, 22.1000004, 44.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2263, 5, '2016-08-10 19:24:32', 32, 606, 22.1000004, 44.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2265, 5, '2016-08-10 19:24:54', 32, 606, 22.1000004, 44.4000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2267, 5, '2016-08-10 19:25:16', 33, 563, 22.1000004, 44.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2269, 5, '2016-08-10 19:25:29', 32, 602, 22.1000004, 44.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2271, 5, '2016-08-10 19:25:44', 32, 576, 22.1000004, 44.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2273, 5, '2016-08-10 19:25:58', 32, 570, 22.1000004, 44.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2275, 5, '2016-08-10 19:26:12', 33, 554, 22.1000004, 44.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2277, 5, '2016-08-10 19:26:27', 33, 569, 22.1000004, 44.4000015, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2279, 5, '2016-08-10 19:26:41', 33, 583, 22.1000004, 44.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2281, 5, '2016-08-10 19:26:56', 33, 563, 22.1000004, 44.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2283, 5, '2016-08-10 19:27:10', 33, 565, 22.1000004, 44.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2285, 5, '2016-08-10 19:27:24', 33, 602, 22.1000004, 44.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2287, 1, '2016-08-10 19:27:33', 17, 522, 22.3999996, 45, 8311);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2134, 5, '2016-08-10 19:09:20', 35, 552, 22.1000004, 44.5999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2136, 5, '2016-08-10 19:09:35', 35, 581, 22.1000004, 44.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2138, 5, '2016-08-10 19:09:52', 35, 611, 22.1000004, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2140, 5, '2016-08-10 19:10:03', 36, 563, 22.1000004, 44.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2142, 5, '2016-08-10 19:10:18', 34, 585, 22.1000004, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2144, 5, '2016-08-10 19:10:32', 34, 595, 22.1000004, 44.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2146, 5, '2016-08-10 19:10:47', 34, 545, 22.1000004, 44.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2150, 5, '2016-08-10 19:11:15', 35, 618, 22.1000004, 44.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2152, 5, '2016-08-10 19:11:29', 34, 583, 22.1000004, 44.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2154, 5, '2016-08-10 19:11:43', 34, 611, 22.1000004, 44.5999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2160, 5, '2016-08-10 19:12:20', 35, 567, 22.1000004, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2162, 5, '2016-08-10 19:12:35', 33, 574, 22.1000004, 44.5999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2164, 5, '2016-08-10 19:12:42', 35, 578, 22.1000004, 44.5999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2166, 5, '2016-08-10 19:13:03', 33, 597, 22.1000004, 44.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2168, 5, '2016-08-10 19:13:17', 33, 561, 22.1000004, 44.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2170, 5, '2016-08-10 19:13:30', 33, 576, 22.1000004, 44.5999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2172, 5, '2016-08-10 19:13:46', 33, 565, 22.1000004, 44.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2174, 5, '2016-08-10 19:14:03', 33, 620, 22.1000004, 44.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2176, 5, '2016-08-10 19:14:15', 34, 565, 22.1000004, 44.5, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2178, 5, '2016-08-10 19:14:28', 33, 563, 22.1000004, 44.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2180, 5, '2016-08-10 19:14:43', 34, 552, 22.1000004, 44.5, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2188, 0, '2016-08-10 19:15:41', 2, 550, 22.7000008, 47.4000015, 8243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2190, 5, '2016-08-10 19:15:55', 33, 606, 22.1000004, 44.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2192, 5, '2016-08-10 19:16:09', 33, 583, 22.1000004, 44.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2198, 5, '2016-08-10 19:16:52', 33, 604, 22.1000004, 44.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2200, 5, '2016-08-10 19:17:06', 33, 576, 22.1000004, 44.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2202, 5, '2016-08-10 19:17:22', 33, 543, 22.1000004, 44.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2218, 5, '2016-08-10 19:19:24', 34, 585, 22.1000004, 44.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2220, 5, '2016-08-10 19:19:38', 33, 572, 22.1000004, 44.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2222, 5, '2016-08-10 19:19:51', 33, 550, 22.1000004, 44.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2224, 5, '2016-08-10 19:20:06', 33, 599, 22.1000004, 44.5, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2236, 5, '2016-08-10 19:21:26', 34, 554, 22.1000004, 44.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2238, 5, '2016-08-10 19:21:41', 34, 547, 22.1000004, 44.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2240, 5, '2016-08-10 19:21:54', 34, 565, 22.1000004, 44.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2242, 2, '2016-08-10 19:22:00', 8, 542, 24, 42.5999985, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2248, 5, '2016-08-10 19:22:38', 32, 550, 22.1000004, 44.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2250, 5, '2016-08-10 19:22:53', 32, 554, 22.1000004, 44.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2252, 5, '2016-08-10 19:23:08', 32, 543, 22.1000004, 44.5, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2254, 5, '2016-08-10 19:23:28', 32, 527, 22.1000004, 44.5, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2270, 5, '2016-08-10 19:25:37', 32, 597, 22.1000004, 44.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2272, 5, '2016-08-10 19:25:52', 32, 599, 22.1000004, 44.4000015, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2274, 5, '2016-08-10 19:26:06', 33, 516, 22.1000004, 44.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2276, 5, '2016-08-10 19:26:20', 33, 561, 22.1000004, 44.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2278, 5, '2016-08-10 19:26:34', 32, 563, 22.1000004, 44.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2280, 5, '2016-08-10 19:26:48', 33, 597, 22.1000004, 44.4000015, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2282, 5, '2016-08-10 19:27:04', 33, 536, 22.1000004, 44.4000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2284, 5, '2016-08-10 19:27:18', 33, 585, 22.1000004, 44.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2286, 5, '2016-08-10 19:27:27', 33, 581, 22.1000004, 44.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2288, 5, '2016-08-10 19:27:40', 33, 585, 22.1000004, 44.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2300, 5, '2016-08-10 19:29:12', 32, 576, 22.1000004, 44.4000015, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2301, 5, '2016-08-10 19:29:20', 32, 576, 22.2000008, 44.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2302, 5, '2016-08-10 19:29:27', 33, 577, 22.1000004, 44.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2303, 5, '2016-08-10 19:29:34', 33, 567, 22.1000004, 44.4000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2304, 5, '2016-08-10 19:29:43', 33, 547, 22.1000004, 44.4000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2305, 5, '2016-08-10 19:29:48', 33, 578, 22.1000004, 44.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2306, 5, '2016-08-10 19:29:56', 33, 602, 22.1000004, 44.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2307, 5, '2016-08-10 19:30:04', 33, 554, 22.1000004, 44.4000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2308, 5, '2016-08-10 19:30:11', 33, 554, 22.1000004, 44.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2309, 5, '2016-08-10 19:30:17', 32, 592, 22.2000008, 44.4000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2310, 5, '2016-08-10 19:30:25', 32, 565, 22.2000008, 44.4000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2311, 5, '2016-08-10 19:30:32', 32, 561, 22.2000008, 44.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2312, 5, '2016-08-10 19:30:39', 32, 563, 22.1000004, 44.4000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2313, 5, '2016-08-10 19:30:45', 32, 597, 22.2000008, 44.4000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2314, 5, '2016-08-10 19:30:47', 33, 604, 22.2000008, 44.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2315, 0, '2016-08-10 19:30:51', 2, 545, 22.7000008, 47.0999985, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2316, 5, '2016-08-10 19:31:00', 33, 583, 22.2000008, 44.4000015, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2317, 5, '2016-08-10 19:31:14', 33, 565, 22.2000008, 44.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2318, 5, '2016-08-10 19:31:29', 33, 586, 22.2000008, 44.4000015, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2319, 5, '2016-08-10 19:31:35', 33, 570, 22.2000008, 44.4000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2320, 5, '2016-08-10 19:31:43', 33, 556, 22.2000008, 44.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2321, 5, '2016-08-10 19:31:51', 33, 523, 22.2000008, 44.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2322, 5, '2016-08-10 19:32:00', 33, 543, 22.2000008, 44.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2323, 5, '2016-08-10 19:32:04', 32, 572, 22.2000008, 44.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2324, 5, '2016-08-10 19:32:11', 32, 563, 22.2000008, 44.4000015, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2325, 5, '2016-08-10 19:32:19', 32, 572, 22.2000008, 44.4000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2326, 5, '2016-08-10 19:32:27', 32, 545, 22.2000008, 44.4000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2327, 5, '2016-08-10 19:32:34', 32, 550, 22.2000008, 44.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2328, 5, '2016-08-10 19:32:42', 32, 584, 22.2000008, 44.4000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2329, 5, '2016-08-10 19:32:47', 32, 584, 22.2000008, 44.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2330, 5, '2016-08-10 19:32:50', 32, 565, 22.2000008, 44.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2331, 5, '2016-08-10 19:33:03', 32, 565, 22.2000008, 44.4000015, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2332, 5, '2016-08-10 19:33:10', 32, 550, 22.2000008, 44.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2333, 5, '2016-08-10 19:33:16', 32, 545, 22.2000008, 44.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2334, 5, '2016-08-10 19:33:23', 32, 595, 22.2000008, 44.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2335, 5, '2016-08-10 19:33:32', 32, 592, 22.2000008, 44.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2336, 5, '2016-08-10 19:33:38', 32, 568, 22.2000008, 44.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2337, 5, '2016-08-10 19:33:46', 32, 565, 22.2000008, 44.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2338, 5, '2016-08-10 19:33:54', 32, 588, 22.2000008, 44.4000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2339, 5, '2016-08-10 19:33:59', 32, 532, 22.2000008, 44.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2340, 5, '2016-08-10 19:34:07', 32, 570, 22.2000008, 44.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2341, 5, '2016-08-10 19:34:14', 32, 570, 22.2000008, 44.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2342, 5, '2016-08-10 19:34:22', 33, 514, 22.2000008, 44.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2343, 5, '2016-08-10 19:34:29', 33, 586, 22.2000008, 44.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2344, 5, '2016-08-10 19:34:35', 33, 545, 22.2000008, 44.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2345, 5, '2016-08-10 19:34:43', 33, 587, 22.2000008, 44.4000015, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2346, 5, '2016-08-10 19:34:49', 33, 576, 22.2000008, 44.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2347, 5, '2016-08-10 19:34:58', 33, 554, 22.2000008, 44.4000015, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2348, 5, '2016-08-10 19:35:05', 33, 577, 22.2000008, 44.4000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2349, 5, '2016-08-10 19:35:18', 33, 579, 22.2000008, 44.4000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2350, 5, '2016-08-10 19:35:25', 33, 541, 22.2000008, 44.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2351, 5, '2016-08-10 19:35:34', 33, 568, 22.2000008, 44.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2352, 5, '2016-08-10 19:35:38', 25, 543, 22.2000008, 44.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2353, 5, '2016-08-10 19:35:49', 25, 586, 22.2000008, 44.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2354, 5, '2016-08-10 19:35:49', 25, 579, 22.2000008, 44.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2355, 3, '2016-08-10 19:35:59', 8, 583, 22.7999992, 46.2000008, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2356, 5, '2016-08-10 19:36:01', 25, 593, 22.2000008, 44.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2357, 5, '2016-08-10 19:36:11', 25, 561, 22.2000008, 44.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2358, 5, '2016-08-10 19:36:16', 25, 556, 22.2000008, 44.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2360, 5, '2016-08-10 19:36:31', 25, 586, 22.2000008, 44.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2362, 5, '2016-08-10 19:36:45', 25, 602, 22.2000008, 44.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2364, 5, '2016-08-10 19:37:00', 25, 570, 22.2000008, 44.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2366, 5, '2016-08-10 19:37:10', 25, 591, 22.2000008, 44.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2396, 5, '2016-08-10 19:40:50', 25, 604, 22.2000008, 44.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2398, 5, '2016-08-10 19:41:04', 24, 565, 22.2000008, 44.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2400, 5, '2016-08-10 19:41:25', 25, 602, 22.2000008, 44.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2424, 5, '2016-08-10 19:44:15', 24, 579, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2428, 5, '2016-08-10 19:44:39', 24, 575, 22.2000008, 44.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2430, 5, '2016-08-10 19:45:01', 23, 581, 22.2000008, 44.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2432, 5, '2016-08-10 19:45:15', 23, 561, 22.2000008, 44.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2434, 5, '2016-08-10 19:45:28', 24, 581, 22.2000008, 44.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2436, 5, '2016-08-10 19:45:43', 24, 586, 22.2000008, 44.2999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2468, 5, '2016-08-10 19:49:19', 24, 577, 22.2000008, 44.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2470, 5, '2016-08-10 19:49:33', 24, 577, 22.2000008, 44.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2472, 5, '2016-08-10 19:49:48', 24, 609, 22.2000008, 44.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2474, 5, '2016-08-10 19:50:03', 24, 552, 22.2000008, 44.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2476, 5, '2016-08-10 19:50:17', 24, 545, 22.2000008, 44.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2478, 5, '2016-08-10 19:50:31', 24, 577, 22.2000008, 44.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2480, 5, '2016-08-10 19:50:44', 24, 565, 22.2000008, 44.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2482, 5, '2016-08-10 19:50:59', 24, 552, 22.2000008, 44.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2484, 3, '2016-08-10 19:51:00', 3, 605, 22.6000004, 46.0999985, 5270);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2486, 5, '2016-08-10 19:51:14', 24, 550, 22.2000008, 44.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2488, 5, '2016-08-10 19:51:35', 24, 552, 22.2000008, 44.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2490, 5, '2016-08-10 19:51:50', 24, 591, 22.2000008, 44.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2492, 5, '2016-08-10 19:52:05', 24, 518, 22.2000008, 44.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2494, 5, '2016-08-10 19:52:20', 24, 584, 22.2000008, 44.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2500, 5, '2016-08-10 19:52:54', 24, 577, 22.2000008, 44.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2502, 5, '2016-08-10 19:53:03', 24, 554, 22.2000008, 44.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2504, 5, '2016-08-10 19:53:23', 24, 543, 22.2000008, 44.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2506, 5, '2016-08-10 19:53:44', 24, 607, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2508, 5, '2016-08-10 19:53:59', 24, 523, 22.2000008, 44.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2510, 5, '2016-08-10 19:54:16', 24, 561, 22.2000008, 44.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2512, 5, '2016-08-10 19:54:28', 24, 593, 22.2000008, 44.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2514, 5, '2016-08-10 19:54:43', 24, 550, 22.2000008, 44.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2516, 5, '2016-08-10 19:54:56', 24, 577, 22.2000008, 44.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2518, 5, '2016-08-10 19:55:11', 23, 559, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2520, 5, '2016-08-10 19:55:25', 24, 493, 22.2000008, 44.2999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2522, 5, '2016-08-10 19:55:41', 24, 581, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2524, 5, '2016-08-10 19:55:54', 24, 516, 22.2000008, 44.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2526, 5, '2016-08-10 19:56:08', 24, 575, 22.2000008, 44.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2550, 5, '2016-08-10 19:59:09', 23, 570, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2552, 5, '2016-08-10 19:59:23', 23, 577, 22.2000008, 44.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2554, 5, '2016-08-10 19:59:44', 24, 547, 22.2000008, 44.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2556, 5, '2016-08-10 19:59:59', 23, 570, 22.2000008, 44.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2558, 5, '2016-08-10 20:00:12', 23, 607, 22.2000008, 44.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2560, 5, '2016-08-10 20:00:26', 23, 593, 22.2000008, 44.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2562, 5, '2016-08-10 20:00:42', 23, 568, 22.2000008, 44.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2564, 5, '2016-08-10 20:00:57', 23, 561, 22.2000008, 44.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2566, 5, '2016-08-10 20:01:09', 23, 600, 22.2000008, 44.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2568, 5, '2016-08-10 20:01:17', 23, 572, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2570, 5, '2016-08-10 20:01:32', 23, 577, 22.2000008, 44.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2572, 5, '2016-08-10 20:01:46', 23, 586, 22.2000008, 44.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2574, 5, '2016-08-10 20:02:00', 23, 554, 22.2000008, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2576, 5, '2016-08-10 20:02:14', 23, 565, 22.2000008, 44.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2359, 5, '2016-08-10 19:36:24', 25, 552, 22.2000008, 44.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2361, 5, '2016-08-10 19:36:38', 25, 541, 22.2000008, 44.4000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2363, 5, '2016-08-10 19:36:51', 25, 575, 22.2000008, 44.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2365, 5, '2016-08-10 19:37:07', 25, 565, 22.2000008, 44.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2367, 2, '2016-08-10 19:37:14', 3, 503, 23.8999996, 42.5, 4448);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2369, 5, '2016-08-10 19:37:28', 25, 563, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2399, 5, '2016-08-10 19:41:14', 25, 516, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2401, 5, '2016-08-10 19:41:32', 25, 575, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2403, 5, '2016-08-10 19:41:46', 25, 602, 22.2000008, 44.2999992, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2405, 5, '2016-08-10 19:42:03', 25, 556, 22.2000008, 44.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2407, 5, '2016-08-10 19:42:16', 25, 575, 22.2000008, 44.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2409, 5, '2016-08-10 19:42:29', 25, 559, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2411, 5, '2016-08-10 19:42:38', 25, 591, 22.2000008, 44.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2413, 5, '2016-08-10 19:42:51', 25, 559, 22.2000008, 44.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2415, 5, '2016-08-10 19:43:05', 24, 577, 22.2000008, 44.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2417, 5, '2016-08-10 19:43:20', 24, 575, 22.2000008, 44.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2419, 5, '2016-08-10 19:43:34', 25, 534, 22.2000008, 44.2999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2421, 5, '2016-08-10 19:43:50', 24, 554, 22.2000008, 44.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2423, 5, '2016-08-10 19:44:03', 24, 556, 22.2000008, 44.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2427, 5, '2016-08-10 19:44:31', 24, 568, 22.2000008, 44.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2429, 5, '2016-08-10 19:44:46', 23, 516, 22.2000008, 44.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2431, 5, '2016-08-10 19:45:09', 25, 550, 22.2000008, 44.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2433, 5, '2016-08-10 19:45:22', 24, 593, 22.2000008, 44.2999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2435, 5, '2016-08-10 19:45:38', 24, 543, 22.2000008, 44.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2437, 5, '2016-08-10 19:45:48', 24, 584, 22.2000008, 44.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2441, 0, '2016-08-10 19:46:04', 1, 543, 22.7000008, 46.9000015, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2443, 5, '2016-08-10 19:46:20', 24, 561, 22.2000008, 44.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2445, 5, '2016-08-10 19:46:33', 24, 568, 22.2000008, 44.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2447, 5, '2016-08-10 19:46:51', 24, 591, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2449, 5, '2016-08-10 19:47:05', 24, 550, 22.2000008, 44.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2451, 5, '2016-08-10 19:47:17', 24, 579, 22.2000008, 44.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2453, 5, '2016-08-10 19:47:31', 24, 575, 22.2000008, 44.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2455, 5, '2016-08-10 19:47:46', 24, 554, 22.2000008, 44.2999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2457, 5, '2016-08-10 19:48:00', 24, 575, 22.2000008, 44.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2459, 5, '2016-08-10 19:48:15', 24, 554, 22.2000008, 44.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2461, 5, '2016-08-10 19:48:29', 24, 572, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2463, 5, '2016-08-10 19:48:44', 24, 593, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2465, 5, '2016-08-10 19:48:57', 24, 521, 22.2000008, 44.2999992, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2467, 5, '2016-08-10 19:49:12', 24, 563, 22.2000008, 44.2999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2481, 5, '2016-08-10 19:50:55', 24, 527, 22.2000008, 44.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2483, 5, '2016-08-10 19:50:59', 24, 552, 22.2000008, 44.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2485, 3, '2016-08-10 19:51:07', 3, 605, 22.6000004, 46.0999985, 5270);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2487, 5, '2016-08-10 19:51:21', 24, 609, 22.2000008, 44.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2489, 5, '2016-08-10 19:51:44', 24, 588, 22.2000008, 44.2999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2491, 5, '2016-08-10 19:51:56', 24, 584, 22.2000008, 44.2999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2493, 5, '2016-08-10 19:52:11', 24, 550, 22.2000008, 44.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2495, 5, '2016-08-10 19:52:21', 24, 581, 22.2000008, 44.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2497, 5, '2016-08-10 19:52:32', 24, 577, 22.2000008, 44.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2499, 5, '2016-08-10 19:52:47', 24, 550, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2501, 5, '2016-08-10 19:53:02', 24, 550, 22.2000008, 44.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2503, 5, '2016-08-10 19:53:13', 24, 565, 22.2000008, 44.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2505, 5, '2016-08-10 19:53:38', 24, 538, 22.2000008, 44.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2507, 5, '2016-08-10 19:53:53', 24, 556, 22.2000008, 44.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2525, 5, '2016-08-10 19:55:58', 24, 579, 22.2000008, 44.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2527, 5, '2016-08-10 19:56:16', 23, 595, 22.2000008, 44.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2529, 5, '2016-08-10 19:56:37', 23, 541, 22.2000008, 44.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2531, 5, '2016-08-10 19:56:52', 23, 547, 22.2000008, 44.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2533, 5, '2016-08-10 19:57:06', 24, 497, 22.2000008, 44.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2535, 5, '2016-08-10 19:57:21', 24, 565, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2537, 5, '2016-08-10 19:57:42', 23, 581, 22.2000008, 44.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2539, 5, '2016-08-10 19:57:49', 24, 550, 22.2000008, 44.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2541, 5, '2016-08-10 19:58:03', 24, 538, 22.2000008, 44.2999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2543, 5, '2016-08-10 19:58:18', 23, 607, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2545, 5, '2016-08-10 19:58:35', 23, 581, 22.2000008, 44.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2547, 5, '2016-08-10 19:58:48', 23, 577, 22.2000008, 44.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2549, 5, '2016-08-10 19:59:00', 23, 572, 22.2000008, 44.2999992, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2551, 5, '2016-08-10 19:59:15', 23, 577, 22.2000008, 44.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2553, 5, '2016-08-10 19:59:30', 24, 572, 22.2000008, 44.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2555, 5, '2016-08-10 19:59:51', 23, 552, 22.2000008, 44.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2557, 5, '2016-08-10 20:00:05', 23, 584, 22.2000008, 44.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2559, 5, '2016-08-10 20:00:20', 23, 577, 22.2000008, 44.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2561, 5, '2016-08-10 20:00:34', 23, 563, 22.2000008, 44.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2563, 5, '2016-08-10 20:00:48', 23, 559, 22.2000008, 44.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2565, 5, '2016-08-10 20:01:03', 23, 559, 22.2000008, 44.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2567, 0, '2016-08-10 20:01:11', 0, 513, 22.7000008, 46.9000015, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2569, 5, '2016-08-10 20:01:24', 23, 538, 22.2000008, 44.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2571, 5, '2016-08-10 20:01:38', 23, 530, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2573, 5, '2016-08-10 20:01:54', 23, 584, 22.2000008, 44.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2575, 5, '2016-08-10 20:02:08', 23, 579, 22.2000008, 44.2000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2577, 5, '2016-08-10 20:02:22', 23, 568, 22.2000008, 44.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2579, 5, '2016-08-10 20:02:36', 23, 541, 22.2000008, 44.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2368, 5, '2016-08-10 19:37:20', 25, 577, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2370, 5, '2016-08-10 19:37:35', 25, 577, 22.2000008, 44.2999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2372, 5, '2016-08-10 19:37:49', 25, 538, 22.2000008, 44.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2374, 5, '2016-08-10 19:38:03', 25, 574, 22.2000008, 44.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2376, 5, '2016-08-10 19:38:19', 32, 570, 22.2000008, 44.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2378, 5, '2016-08-10 19:38:33', 25, 570, 22.2000008, 44.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2380, 5, '2016-08-10 19:38:48', 25, 530, 22.2000008, 44.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2382, 5, '2016-08-10 19:39:01', 24, 588, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2384, 5, '2016-08-10 19:39:24', 24, 538, 22.2000008, 44.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2386, 5, '2016-08-10 19:39:37', 24, 572, 22.2000008, 44.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2388, 5, '2016-08-10 19:39:52', 24, 575, 22.2000008, 44.2999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2390, 5, '2016-08-10 19:40:06', 24, 561, 22.2000008, 44.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2392, 5, '2016-08-10 19:40:20', 24, 559, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2394, 5, '2016-08-10 19:40:35', 25, 588, 22.2000008, 44.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2402, 5, '2016-08-10 19:41:39', 25, 563, 22.2000008, 44.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2404, 5, '2016-08-10 19:41:54', 25, 584, 22.2000008, 44.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2406, 5, '2016-08-10 19:42:08', 25, 543, 22.2000008, 44.2999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2408, 5, '2016-08-10 19:42:22', 25, 543, 22.2000008, 44.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2410, 5, '2016-08-10 19:42:37', 25, 602, 22.2000008, 44.2999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2412, 1, '2016-08-10 19:42:45', 5, 566, 22.3999996, 45.0999985, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2414, 5, '2016-08-10 19:42:57', 24, 554, 22.2000008, 44.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2416, 5, '2016-08-10 19:43:11', 23, 593, 22.2000008, 44.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2418, 5, '2016-08-10 19:43:29', 25, 547, 22.2000008, 44.2999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2420, 5, '2016-08-10 19:43:43', 25, 534, 22.2000008, 44.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2422, 5, '2016-08-10 19:43:56', 24, 588, 22.2000008, 44.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2426, 5, '2016-08-10 19:44:25', 24, 588, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2438, 5, '2016-08-10 19:45:58', 24, 559, 22.2000008, 44.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2440, 0, '2016-08-10 19:45:59', 1, 543, 22.7000008, 46.9000015, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2442, 5, '2016-08-10 19:46:13', 24, 541, 22.2000008, 44.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2444, 5, '2016-08-10 19:46:30', 24, 584, 22.2000008, 44.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2446, 5, '2016-08-10 19:46:41', 24, 554, 22.2000008, 44.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2448, 5, '2016-08-10 19:46:53', 24, 577, 22.2000008, 44.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2450, 5, '2016-08-10 19:47:09', 24, 595, 22.2000008, 44.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2452, 5, '2016-08-10 19:47:24', 24, 584, 22.2000008, 44.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2454, 5, '2016-08-10 19:47:41', 24, 572, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2456, 5, '2016-08-10 19:47:52', 24, 554, 22.2000008, 44.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2458, 5, '2016-08-10 19:48:08', 24, 577, 22.2000008, 44.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2460, 5, '2016-08-10 19:48:21', 24, 527, 22.2000008, 44.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2462, 5, '2016-08-10 19:48:36', 24, 545, 22.2000008, 44.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2464, 5, '2016-08-10 19:48:50', 24, 559, 22.2000008, 44.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2466, 5, '2016-08-10 19:48:59', 24, 561, 22.2000008, 44.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2496, 2, '2016-08-10 19:52:26', 1, 502, 23.8999996, 42.2999992, 4680);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2498, 5, '2016-08-10 19:52:40', 24, 568, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2528, 5, '2016-08-10 19:56:22', 23, 561, 22.2000008, 44.2999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2530, 5, '2016-08-10 19:56:44', 24, 584, 22.2000008, 44.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2532, 5, '2016-08-10 19:56:58', 24, 516, 22.2000008, 44.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2534, 5, '2016-08-10 19:57:12', 24, 541, 22.2000008, 44.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2536, 5, '2016-08-10 19:57:27', 23, 545, 22.2000008, 44.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2538, 5, '2016-08-10 19:57:48', 24, 550, 22.2000008, 44.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2540, 1, '2016-08-10 19:57:58', 1, 571, 22.3999996, 45.2000008, 4214);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2542, 5, '2016-08-10 19:58:03', 23, 550, 22.2000008, 44.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2544, 5, '2016-08-10 19:58:24', 23, 572, 22.2000008, 44.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2546, 5, '2016-08-10 19:58:39', 23, 534, 22.2000008, 44.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2548, 5, '2016-08-10 19:58:53', 23, 545, 22.2000008, 44.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2578, 5, '2016-08-10 20:02:30', 23, 563, 22.2000008, 44.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2580, 5, '2016-08-10 20:02:45', 23, 570, 22.2000008, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2371, 5, '2016-08-10 19:37:44', 25, 565, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2373, 5, '2016-08-10 19:37:52', 25, 593, 22.2000008, 44.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2375, 5, '2016-08-10 19:38:11', 32, 575, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2377, 5, '2016-08-10 19:38:25', 25, 572, 22.2000008, 44.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2379, 5, '2016-08-10 19:38:39', 25, 577, 22.2000008, 44.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2381, 5, '2016-08-10 19:38:55', 32, 586, 22.2000008, 44.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2383, 5, '2016-08-10 19:39:09', 24, 532, 22.2000008, 44.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2385, 5, '2016-08-10 19:39:30', 24, 577, 22.2000008, 44.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2387, 5, '2016-08-10 19:39:45', 24, 556, 22.2000008, 44.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2389, 5, '2016-08-10 19:39:54', 24, 559, 22.2000008, 44.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2391, 5, '2016-08-10 19:40:13', 24, 550, 22.2000008, 44.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2393, 5, '2016-08-10 19:40:27', 24, 584, 22.2000008, 44.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2395, 5, '2016-08-10 19:40:42', 25, 559, 22.2000008, 44.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2397, 5, '2016-08-10 19:40:57', 24, 554, 22.2000008, 44.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2425, 5, '2016-08-10 19:44:18', 24, 591, 22.2000008, 44.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2439, 5, '2016-08-10 19:45:58', 24, 559, 22.2000008, 44.2999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2469, 5, '2016-08-10 19:49:26', 24, 572, 22.2000008, 44.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2471, 5, '2016-08-10 19:49:41', 24, 572, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2473, 5, '2016-08-10 19:49:55', 24, 547, 22.2000008, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2475, 5, '2016-08-10 19:50:09', 24, 600, 22.2000008, 44.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2477, 5, '2016-08-10 19:50:23', 24, 559, 22.2000008, 44.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2479, 5, '2016-08-10 19:50:38', 24, 577, 22.2000008, 44.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2509, 5, '2016-08-10 19:54:08', 24, 534, 22.2000008, 44.2999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2511, 5, '2016-08-10 19:54:20', 24, 552, 22.2000008, 44.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2513, 5, '2016-08-10 19:54:34', 24, 595, 22.2000008, 44.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2515, 5, '2016-08-10 19:54:50', 24, 547, 22.2000008, 44.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2517, 5, '2016-08-10 19:55:04', 23, 595, 22.2000008, 44.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2519, 5, '2016-08-10 19:55:18', 24, 588, 22.2000008, 44.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2521, 5, '2016-08-10 19:55:32', 24, 577, 22.2000008, 44.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2523, 5, '2016-08-10 19:55:46', 24, 521, 22.2000008, 44.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2581, 5, '2016-08-10 20:02:50', 23, 561, 22.2000008, 44.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2582, 5, '2016-08-10 20:02:58', 23, 547, 22.2000008, 44.2000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2583, 5, '2016-08-10 20:03:05', 23, 602, 22.2000008, 44.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2584, 5, '2016-08-10 20:03:12', 23, 600, 22.2000008, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2585, 5, '2016-08-10 20:03:15', 23, 565, 22.2000008, 44.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2586, 5, '2016-08-10 20:03:26', 23, 568, 22.2000008, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2587, 5, '2016-08-10 20:03:35', 23, 561, 22.2000008, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2588, 5, '2016-08-10 20:03:42', 23, 568, 22.2000008, 44.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2589, 5, '2016-08-10 20:03:48', 23, 547, 22.2000008, 44.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2590, 5, '2016-08-10 20:03:55', 23, 575, 22.2000008, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2591, 5, '2016-08-10 20:04:02', 23, 577, 22.2000008, 44.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2592, 5, '2016-08-10 20:04:10', 23, 543, 22.2000008, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2593, 5, '2016-08-10 20:04:16', 23, 563, 22.2000008, 44.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2594, 5, '2016-08-10 20:04:24', 23, 586, 22.2000008, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2595, 5, '2016-08-10 20:04:31', 23, 547, 22.2000008, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2596, 5, '2016-08-10 20:04:38', 24, 554, 22.2000008, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2597, 5, '2016-08-10 20:04:46', 24, 577, 22.2000008, 44.2000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2598, 5, '2016-08-10 20:04:53', 24, 577, 22.2000008, 44.2000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2599, 5, '2016-08-10 20:04:54', 23, 565, 22.2000008, 44.2000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2600, 5, '2016-08-10 20:05:12', 23, 581, 22.2000008, 44.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2601, 5, '2016-08-10 20:05:14', 23, 556, 22.2000008, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2602, 5, '2016-08-10 20:05:21', 23, 536, 22.2000008, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2603, 5, '2016-08-10 20:05:28', 23, 579, 22.2000008, 44.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2604, 5, '2016-08-10 20:05:36', 23, 554, 22.2000008, 44.2000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2605, 5, '2016-08-10 20:05:43', 23, 577, 22.2000008, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2606, 5, '2016-08-10 20:05:49', 24, 577, 22.2000008, 44.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2607, 5, '2016-08-10 20:05:58', 24, 561, 22.2000008, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2608, 5, '2016-08-10 20:06:04', 24, 602, 22.2000008, 44.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2609, 5, '2016-08-10 20:06:08', 24, 559, 22.2000008, 44.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2610, 3, '2016-08-10 20:06:11', 2, 591, 22.6000004, 46.0999985, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2611, 3, '2016-08-10 20:06:12', 2, 591, 22.6000004, 46.0999985, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2612, 5, '2016-08-10 20:06:19', 24, 536, 22.2000008, 44.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2613, 5, '2016-08-10 20:06:26', 24, 579, 22.2000008, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2614, 5, '2016-08-10 20:06:33', 24, 563, 22.2000008, 44.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2615, 5, '2016-08-10 20:06:40', 23, 565, 22.2000008, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2616, 5, '2016-08-10 20:06:48', 23, 595, 22.2000008, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2617, 5, '2016-08-10 20:06:55', 23, 572, 22.2000008, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2618, 5, '2016-08-10 20:07:01', 24, 568, 22.2000008, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2619, 5, '2016-08-10 20:07:07', 24, 556, 22.2000008, 44.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2620, 5, '2016-08-10 20:07:16', 23, 595, 22.2000008, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2621, 5, '2016-08-10 20:07:23', 23, 588, 22.2000008, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2622, 5, '2016-08-10 20:07:30', 23, 538, 22.2000008, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2623, 5, '2016-08-10 20:07:32', 23, 547, 22.2000008, 44.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2624, 2, '2016-08-10 20:07:38', 0, 474, 23.7000008, 42.2999992, 4196);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2625, 5, '2016-08-10 20:07:46', 24, 550, 22.2000008, 44.2000008, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2626, 5, '2016-08-10 20:07:59', 24, 602, 22.2000008, 44.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2627, 5, '2016-08-10 20:08:07', 24, 534, 22.2000008, 44.2000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2628, 5, '2016-08-10 20:08:13', 24, 597, 22.2000008, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2629, 5, '2016-08-10 20:08:22', 24, 579, 22.2000008, 44.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2630, 5, '2016-08-10 20:08:28', 24, 572, 22.2000008, 44.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2631, 5, '2016-08-10 20:08:36', 24, 568, 22.2999992, 44.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2632, 5, '2016-08-10 20:08:42', 24, 561, 22.2000008, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2633, 5, '2016-08-10 20:08:49', 23, 577, 22.2000008, 44.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2634, 5, '2016-08-10 20:08:57', 23, 600, 22.2000008, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2635, 5, '2016-08-10 20:09:03', 23, 575, 22.2000008, 44.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2636, 5, '2016-08-10 20:09:11', 23, 570, 22.2999992, 44.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2637, 5, '2016-08-10 20:09:19', 24, 581, 22.2000008, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2638, 5, '2016-08-10 20:09:25', 24, 565, 22.2000008, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2639, 5, '2016-08-10 20:09:33', 24, 591, 22.2000008, 44.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2640, 5, '2016-08-10 20:09:39', 24, 543, 22.2000008, 44.2000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2641, 5, '2016-08-10 20:09:47', 24, 581, 22.2000008, 44.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2642, 5, '2016-08-10 20:09:54', 24, 577, 22.2000008, 44.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2643, 5, '2016-08-10 20:10:01', 24, 602, 22.2999992, 44.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2644, 5, '2016-08-10 20:10:09', 24, 570, 22.2999992, 44.2000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2645, 5, '2016-08-10 20:10:15', 24, 570, 22.2999992, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2646, 5, '2016-08-10 20:10:23', 24, 588, 22.2000008, 44.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2647, 5, '2016-08-10 20:10:29', 24, 593, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2648, 5, '2016-08-10 20:10:37', 24, 556, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2649, 5, '2016-08-10 20:10:45', 24, 565, 22.2000008, 44.2000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2650, 5, '2016-08-10 20:10:51', 24, 570, 22.2999992, 44.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2651, 5, '2016-08-10 20:10:59', 24, 572, 22.2999992, 44.2000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2652, 5, '2016-08-10 20:11:05', 24, 554, 22.2999992, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2653, 5, '2016-08-10 20:11:13', 24, 554, 22.2999992, 44.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2654, 5, '2016-08-10 20:11:20', 24, 547, 22.2999992, 44.2000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2655, 5, '2016-08-10 20:11:27', 24, 588, 22.2999992, 44.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2656, 5, '2016-08-10 20:11:35', 24, 572, 22.2999992, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2657, 5, '2016-08-10 20:11:41', 24, 577, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2658, 5, '2016-08-10 20:11:49', 24, 538, 22.2999992, 44.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2660, 5, '2016-08-10 20:12:11', 24, 561, 22.2999992, 44.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2666, 5, '2016-08-10 20:12:54', 24, 588, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2668, 1, '2016-08-10 20:13:02', 1, 553, 22.2999992, 45.2000008, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2670, 5, '2016-08-10 20:13:15', 24, 534, 22.2999992, 44.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2674, 5, '2016-08-10 20:13:44', 24, 563, 22.2999992, 44.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2676, 5, '2016-08-10 20:13:55', 24, 577, 22.2999992, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2678, 5, '2016-08-10 20:14:13', 24, 547, 22.2999992, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2680, 5, '2016-08-10 20:14:27', 24, 577, 22.2999992, 44.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2682, 5, '2016-08-10 20:14:41', 24, 568, 22.2999992, 44.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2684, 5, '2016-08-10 20:14:56', 24, 579, 22.2999992, 44.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2686, 5, '2016-08-10 20:15:10', 24, 577, 22.2999992, 44.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2688, 5, '2016-08-10 20:15:25', 24, 591, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2696, 5, '2016-08-10 20:16:19', 24, 530, 22.2999992, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2702, 5, '2016-08-10 20:16:51', 24, 593, 22.2999992, 44.2000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2704, 5, '2016-08-10 20:17:05', 24, 561, 22.2999992, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2706, 5, '2016-08-10 20:17:19', 24, 552, 22.2999992, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2708, 5, '2016-08-10 20:17:33', 24, 547, 22.2999992, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2710, 5, '2016-08-10 20:17:48', 24, 597, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2716, 5, '2016-08-10 20:18:31', 23, 530, 22.2999992, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2718, 5, '2016-08-10 20:18:46', 23, 559, 22.2999992, 44.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2720, 5, '2016-08-10 20:19:00', 23, 586, 22.2999992, 44.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2722, 5, '2016-08-10 20:19:15', 23, 565, 22.2999992, 44.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2724, 5, '2016-08-10 20:19:28', 23, 530, 22.2999992, 44.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2726, 5, '2016-08-10 20:19:43', 23, 556, 22.2999992, 44.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2728, 5, '2016-08-10 20:19:58', 23, 532, 22.2999992, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2730, 5, '2016-08-10 20:20:12', 23, 541, 22.2999992, 44.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2732, 5, '2016-08-10 20:20:27', 23, 530, 22.2999992, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2734, 5, '2016-08-10 20:20:42', 23, 593, 22.2999992, 44.2000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2736, 5, '2016-08-10 20:20:55', 23, 547, 22.2999992, 44.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2738, 5, '2016-08-10 20:21:10', 23, 600, 22.2999992, 44.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2740, 5, '2016-08-10 20:21:21', 23, 547, 22.2999992, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2742, 3, '2016-08-10 20:21:24', 1, 585, 22.6000004, 46.0999985, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2750, 5, '2016-08-10 20:22:20', 23, 541, 22.2999992, 44.2000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2762, 5, '2016-08-10 20:23:40', 23, 556, 22.2999992, 44.2000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2768, 5, '2016-08-10 20:24:30', 23, 568, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2770, 5, '2016-08-10 20:24:44', 23, 600, 22.2999992, 44.2000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2772, 5, '2016-08-10 20:25:00', 23, 550, 22.2999992, 44.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2798, 5, '2016-08-10 20:28:06', 23, 570, 22.2999992, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2800, 1, '2016-08-10 20:28:13', 1, 548, 22.2999992, 45.0999985, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2802, 5, '2016-08-10 20:28:27', 23, 536, 22.2999992, 44.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2804, 5, '2016-08-10 20:28:42', 23, 600, 22.2999992, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2806, 5, '2016-08-10 20:28:56', 23, 579, 22.2999992, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2808, 5, '2016-08-10 20:29:10', 23, 586, 22.2999992, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2810, 5, '2016-08-10 20:29:25', 23, 523, 22.2999992, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2812, 5, '2016-08-10 20:29:39', 23, 597, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2814, 5, '2016-08-10 20:29:53', 23, 570, 22.2999992, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2816, 5, '2016-08-10 20:30:09', 23, 584, 22.2999992, 44.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2818, 5, '2016-08-10 20:30:30', 23, 597, 22.2999992, 44.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2828, 0, '2016-08-10 20:31:35', 1, 551, 22.6000004, 46.5, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2830, 5, '2016-08-10 20:31:48', 23, 556, 22.2999992, 44.2000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2832, 5, '2016-08-10 20:31:57', 23, 565, 22.2999992, 44.2000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2834, 5, '2016-08-10 20:32:17', 23, 575, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2836, 5, '2016-08-10 20:32:32', 23, 570, 22.2999992, 44.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2838, 5, '2016-08-10 20:32:46', 23, 518, 22.2999992, 44.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2840, 5, '2016-08-10 20:33:00', 23, 563, 22.2999992, 44.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2842, 5, '2016-08-10 20:33:15', 23, 552, 22.2999992, 44.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2844, 5, '2016-08-10 20:33:29', 24, 577, 22.2999992, 44.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2846, 5, '2016-08-10 20:33:43', 23, 570, 22.2999992, 44.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2848, 5, '2016-08-10 20:33:59', 23, 588, 22.2999992, 44.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2850, 5, '2016-08-10 20:34:12', 23, 577, 22.2999992, 44.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2852, 5, '2016-08-10 20:34:33', 23, 581, 22.2999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2868, 5, '2016-08-10 20:36:31', 23, 563, 22.2999992, 44.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2870, 3, '2016-08-10 20:36:37', 1, 538, 22.5, 46, 2322);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2872, 5, '2016-08-10 20:36:50', 23, 581, 22.2999992, 44.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2874, 5, '2016-08-10 20:37:05', 23, 591, 22.2999992, 44.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2876, 5, '2016-08-10 20:37:19', 23, 565, 22.2999992, 44.0999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2878, 5, '2016-08-10 20:37:33', 23, 541, 22.2999992, 44.0999985, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2880, 5, '2016-08-10 20:37:48', 23, 600, 22.2999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2882, 2, '2016-08-10 20:37:56', 1, 486, 23.5, 42.2000008, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2884, 5, '2016-08-10 20:38:09', 23, 559, 22.2999992, 44.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2886, 5, '2016-08-10 20:38:23', 22, 579, 22.2999992, 44.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2888, 5, '2016-08-10 20:38:38', 23, 535, 22.2999992, 44.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2890, 5, '2016-08-10 20:38:53', 23, 532, 22.2999992, 44.0999985, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2892, 5, '2016-08-10 20:39:07', 23, 568, 22.2999992, 44.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2659, 5, '2016-08-10 20:12:03', 24, 534, 22.2999992, 44.2000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2661, 5, '2016-08-10 20:12:17', 24, 602, 22.2999992, 44.2000008, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2671, 5, '2016-08-10 20:13:16', 24, 554, 22.2999992, 44.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2675, 5, '2016-08-10 20:13:51', 24, 591, 22.2999992, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2677, 5, '2016-08-10 20:14:05', 24, 570, 22.2999992, 44.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2679, 5, '2016-08-10 20:14:20', 23, 561, 22.2999992, 44.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2681, 5, '2016-08-10 20:14:34', 24, 538, 22.2999992, 44.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2683, 5, '2016-08-10 20:14:49', 24, 577, 22.2999992, 44.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2685, 5, '2016-08-10 20:15:03', 24, 584, 22.2999992, 44.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2697, 0, '2016-08-10 20:16:21', 0, 549, 22.6000004, 46.7000008, 1682);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2699, 5, '2016-08-10 20:16:29', 24, 568, 22.2999992, 44.2000008, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2701, 5, '2016-08-10 20:16:44', 24, 575, 22.2999992, 44.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2711, 5, '2016-08-10 20:17:55', 24, 577, 22.2999992, 44.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2713, 5, '2016-08-10 20:18:10', 23, 570, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2715, 5, '2016-08-10 20:18:24', 23, 572, 22.2999992, 44.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2717, 5, '2016-08-10 20:18:39', 23, 536, 22.2999992, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2719, 5, '2016-08-10 20:18:53', 23, 545, 22.2999992, 44.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2743, 5, '2016-08-10 20:21:31', 23, 577, 22.2999992, 44.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2745, 5, '2016-08-10 20:21:45', 23, 563, 22.2999992, 44.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2747, 5, '2016-08-10 20:22:01', 23, 550, 22.2999992, 44.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2751, 5, '2016-08-10 20:22:29', 23, 547, 22.2999992, 44.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2753, 5, '2016-08-10 20:22:42', 23, 575, 22.2999992, 44.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2755, 2, '2016-08-10 20:22:50', 0, 482, 23.6000004, 42.2000008, 13392);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2757, 5, '2016-08-10 20:23:04', 23, 563, 22.2999992, 44.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2759, 5, '2016-08-10 20:23:18', 23, 563, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2763, 5, '2016-08-10 20:23:48', 23, 561, 22.2999992, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2765, 5, '2016-08-10 20:24:02', 23, 547, 22.2999992, 44.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2767, 5, '2016-08-10 20:24:23', 23, 552, 22.2999992, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2769, 5, '2016-08-10 20:24:38', 23, 543, 22.2999992, 44.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2771, 5, '2016-08-10 20:24:52', 23, 577, 22.2999992, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2773, 5, '2016-08-10 20:25:06', 23, 575, 22.2999992, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2775, 5, '2016-08-10 20:25:15', 23, 510, 22.2999992, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2777, 5, '2016-08-10 20:25:35', 23, 559, 22.2999992, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2779, 5, '2016-08-10 20:25:49', 23, 577, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2781, 5, '2016-08-10 20:26:04', 23, 584, 22.2999992, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2783, 5, '2016-08-10 20:26:17', 23, 559, 22.2999992, 44.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2785, 5, '2016-08-10 20:26:28', 23, 577, 22.2999992, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2787, 5, '2016-08-10 20:26:47', 23, 572, 22.2999992, 44.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2789, 5, '2016-08-10 20:27:01', 23, 593, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2819, 5, '2016-08-10 20:30:37', 23, 536, 22.2999992, 44.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2821, 5, '2016-08-10 20:30:51', 23, 591, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2823, 5, '2016-08-10 20:31:05', 23, 593, 22.2999992, 44.2000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2825, 5, '2016-08-10 20:31:19', 23, 568, 22.2999992, 44.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2827, 5, '2016-08-10 20:31:31', 23, 539, 22.2999992, 44.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2857, 5, '2016-08-10 20:35:09', 23, 523, 22.2999992, 44.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2859, 5, '2016-08-10 20:35:24', 23, 563, 22.2999992, 44.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2861, 5, '2016-08-10 20:35:38', 23, 556, 22.2999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2863, 5, '2016-08-10 20:35:54', 23, 554, 22.2999992, 44.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2865, 5, '2016-08-10 20:36:07', 23, 561, 22.2999992, 44.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2867, 5, '2016-08-10 20:36:21', 23, 555, 22.2999992, 44.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2869, 5, '2016-08-10 20:36:32', 23, 593, 22.2999992, 44.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2871, 5, '2016-08-10 20:36:38', 23, 577, 22.2999992, 44.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2873, 5, '2016-08-10 20:36:57', 23, 563, 22.2999992, 44.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2881, 5, '2016-08-10 20:37:54', 23, 559, 22.2999992, 44.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2883, 5, '2016-08-10 20:38:01', 23, 556, 22.2999992, 44.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2885, 5, '2016-08-10 20:38:18', 22, 570, 22.2999992, 44.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2887, 5, '2016-08-10 20:38:31', 23, 579, 22.2999992, 44.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2889, 5, '2016-08-10 20:38:45', 23, 527, 22.2999992, 44.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2891, 5, '2016-08-10 20:38:59', 23, 545, 22.2999992, 44.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2662, 5, '2016-08-10 20:12:25', 24, 588, 22.2999992, 44.2000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2664, 5, '2016-08-10 20:12:39', 24, 588, 22.2999992, 44.2000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2672, 5, '2016-08-10 20:13:29', 24, 563, 22.2999992, 44.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2690, 5, '2016-08-10 20:15:39', 24, 588, 22.2999992, 44.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2692, 5, '2016-08-10 20:15:53', 24, 543, 22.2999992, 44.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2694, 5, '2016-08-10 20:16:09', 24, 591, 22.2999992, 44.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2698, 0, '2016-08-10 20:16:22', 0, 549, 22.6000004, 46.7000008, 1682);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2700, 5, '2016-08-10 20:16:37', 24, 530, 22.2999992, 44.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2712, 5, '2016-08-10 20:18:03', 23, 575, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2714, 5, '2016-08-10 20:18:16', 23, 561, 22.2999992, 44.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2744, 5, '2016-08-10 20:21:38', 23, 579, 22.2999992, 44.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2746, 5, '2016-08-10 20:21:52', 23, 543, 22.2999992, 44.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2748, 5, '2016-08-10 20:22:08', 23, 538, 22.2999992, 44.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2752, 5, '2016-08-10 20:22:35', 23, 588, 22.2999992, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2754, 5, '2016-08-10 20:22:43', 23, 577, 22.2999992, 44.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2756, 5, '2016-08-10 20:22:56', 23, 568, 22.2999992, 44.2000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2758, 5, '2016-08-10 20:23:11', 23, 575, 22.2999992, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2760, 5, '2016-08-10 20:23:18', 23, 523, 22.2999992, 44.2000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2764, 5, '2016-08-10 20:23:55', 23, 616, 22.2999992, 44.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2766, 5, '2016-08-10 20:24:16', 23, 563, 22.2999992, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2774, 5, '2016-08-10 20:25:14', 23, 565, 22.2999992, 44.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2776, 5, '2016-08-10 20:25:28', 23, 568, 22.2999992, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2778, 5, '2016-08-10 20:25:42', 23, 575, 22.2999992, 44.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2780, 5, '2016-08-10 20:25:56', 23, 570, 22.2999992, 44.2000008, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2782, 5, '2016-08-10 20:26:12', 23, 547, 22.2999992, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2784, 5, '2016-08-10 20:26:25', 23, 591, 22.2999992, 44.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2786, 5, '2016-08-10 20:26:40', 23, 545, 22.2999992, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2788, 5, '2016-08-10 20:26:54', 23, 588, 22.2999992, 44.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2790, 5, '2016-08-10 20:27:08', 23, 584, 22.2999992, 44.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2792, 5, '2016-08-10 20:27:22', 23, 579, 22.2999992, 44.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2794, 5, '2016-08-10 20:27:37', 23, 570, 22.2999992, 44.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2796, 5, '2016-08-10 20:27:51', 23, 577, 22.2999992, 44.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2820, 5, '2016-08-10 20:30:44', 23, 581, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2822, 5, '2016-08-10 20:30:58', 23, 563, 22.2999992, 44.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2824, 5, '2016-08-10 20:31:13', 23, 547, 22.2999992, 44.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2826, 5, '2016-08-10 20:31:27', 23, 552, 22.2999992, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2854, 5, '2016-08-10 20:34:48', 23, 556, 22.2999992, 44.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2856, 5, '2016-08-10 20:35:08', 23, 597, 22.2999992, 44.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2858, 5, '2016-08-10 20:35:19', 23, 530, 22.2999992, 44.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2860, 5, '2016-08-10 20:35:31', 23, 581, 22.2999992, 44.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2862, 5, '2016-08-10 20:35:46', 23, 586, 22.2999992, 44.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2864, 5, '2016-08-10 20:35:59', 23, 568, 22.2999992, 44.0999985, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2866, 5, '2016-08-10 20:36:16', 23, 543, 22.2999992, 44.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2663, 5, '2016-08-10 20:12:32', 24, 523, 22.2999992, 44.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2665, 5, '2016-08-10 20:12:47', 24, 575, 22.2999992, 44.2000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2667, 5, '2016-08-10 20:13:01', 24, 586, 22.2999992, 44.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2669, 5, '2016-08-10 20:13:08', 24, 559, 22.2999992, 44.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2673, 5, '2016-08-10 20:13:37', 24, 572, 22.2999992, 44.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2687, 5, '2016-08-10 20:15:17', 24, 591, 22.2999992, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2689, 5, '2016-08-10 20:15:31', 24, 550, 22.2999992, 44.2000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2691, 5, '2016-08-10 20:15:46', 24, 532, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2693, 5, '2016-08-10 20:16:01', 24, 536, 22.2999992, 44.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2695, 5, '2016-08-10 20:16:11', 24, 532, 22.2999992, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2703, 5, '2016-08-10 20:16:59', 24, 554, 22.2999992, 44.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2705, 5, '2016-08-10 20:17:12', 24, 547, 22.2999992, 44.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2707, 5, '2016-08-10 20:17:27', 24, 572, 22.2999992, 44.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2709, 5, '2016-08-10 20:17:41', 24, 572, 22.2999992, 44.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2721, 5, '2016-08-10 20:19:06', 23, 579, 22.2999992, 44.2000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2723, 5, '2016-08-10 20:19:22', 23, 561, 22.2999992, 44.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2725, 5, '2016-08-10 20:19:36', 23, 561, 22.2999992, 44.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2727, 5, '2016-08-10 20:19:51', 23, 579, 22.2999992, 44.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2729, 5, '2016-08-10 20:20:06', 23, 579, 22.2999992, 44.2000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2731, 5, '2016-08-10 20:20:18', 23, 568, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2733, 5, '2016-08-10 20:20:33', 23, 597, 22.2999992, 44.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2735, 5, '2016-08-10 20:20:48', 23, 556, 22.2999992, 44.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2737, 5, '2016-08-10 20:21:03', 23, 536, 22.2999992, 44.2000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2739, 5, '2016-08-10 20:21:16', 23, 581, 22.2999992, 44.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2741, 3, '2016-08-10 20:21:22', 1, 585, 22.6000004, 46.0999985, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2749, 5, '2016-08-10 20:22:14', 23, 543, 22.2999992, 44.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2761, 5, '2016-08-10 20:23:32', 23, 568, 22.2999992, 44.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2791, 5, '2016-08-10 20:27:16', 23, 570, 22.2999992, 44.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2793, 5, '2016-08-10 20:27:30', 23, 541, 22.2999992, 44.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2795, 5, '2016-08-10 20:27:44', 23, 556, 22.2999992, 44.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2797, 5, '2016-08-10 20:27:58', 23, 581, 22.2999992, 44.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2799, 5, '2016-08-10 20:28:11', 23, 565, 22.2999992, 44.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2801, 5, '2016-08-10 20:28:20', 23, 556, 22.2999992, 44.2000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2803, 5, '2016-08-10 20:28:34', 23, 518, 22.2999992, 44.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2805, 5, '2016-08-10 20:28:49', 23, 559, 22.2999992, 44.2000008, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2807, 5, '2016-08-10 20:29:03', 23, 575, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2809, 5, '2016-08-10 20:29:18', 23, 568, 22.2999992, 44.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2811, 5, '2016-08-10 20:29:31', 23, 570, 22.2999992, 44.2000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2813, 5, '2016-08-10 20:29:46', 23, 572, 22.2999992, 44.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2815, 5, '2016-08-10 20:30:01', 23, 521, 22.2999992, 44.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2817, 5, '2016-08-10 20:30:22', 23, 586, 22.2999992, 44.2000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2829, 5, '2016-08-10 20:31:41', 23, 552, 22.2999992, 44.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2831, 5, '2016-08-10 20:31:55', 23, 579, 22.2999992, 44.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2833, 5, '2016-08-10 20:32:10', 23, 518, 22.2999992, 44.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2835, 5, '2016-08-10 20:32:25', 23, 552, 22.2999992, 44.0999985, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2837, 5, '2016-08-10 20:32:38', 23, 572, 22.2999992, 44.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2839, 5, '2016-08-10 20:32:53', 23, 595, 22.2999992, 44.0999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2841, 5, '2016-08-10 20:33:08', 23, 586, 22.2999992, 44.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2843, 5, '2016-08-10 20:33:19', 23, 591, 22.2999992, 44.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2845, 5, '2016-08-10 20:33:30', 23, 565, 22.2999992, 44.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2847, 5, '2016-08-10 20:33:51', 23, 591, 22.2999992, 44.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2849, 5, '2016-08-10 20:34:05', 23, 556, 22.2999992, 44.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2851, 5, '2016-08-10 20:34:19', 23, 579, 22.2999992, 44.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2853, 5, '2016-08-10 20:34:40', 23, 570, 22.2999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2855, 5, '2016-08-10 20:34:56', 23, 554, 22.2999992, 44.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2875, 5, '2016-08-10 20:37:11', 23, 566, 22.2999992, 44.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2877, 5, '2016-08-10 20:37:26', 23, 563, 22.2999992, 44.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2879, 5, '2016-08-10 20:37:40', 23, 563, 22.2999992, 44.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2893, 5, '2016-08-10 20:39:21', 23, 563, 22.2999992, 44.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2894, 5, '2016-08-10 20:39:28', 24, 588, 22.2999992, 44.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2895, 5, '2016-08-10 20:39:36', 23, 561, 22.2999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2896, 5, '2016-08-10 20:39:42', 23, 530, 22.2999992, 44.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2897, 5, '2016-08-10 20:39:49', 23, 555, 22.2999992, 44.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2898, 5, '2016-08-10 20:39:58', 23, 639, 22.2999992, 44.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2899, 5, '2016-08-10 20:40:04', 22, 553, 22.2999992, 44.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2900, 5, '2016-08-10 20:40:11', 22, 556, 22.2999992, 44.0999985, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2901, 5, '2016-08-10 20:40:19', 22, 563, 22.2999992, 44.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2902, 5, '2016-08-10 20:40:25', 22, 534, 22.2999992, 44.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2903, 5, '2016-08-10 20:40:40', 22, 554, 22.2999992, 44.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2904, 5, '2016-08-10 20:40:47', 22, 577, 22.2999992, 44.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2905, 5, '2016-08-10 20:40:54', 22, 602, 22.2999992, 44.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2906, 5, '2016-08-10 20:40:57', 22, 577, 22.2999992, 44.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2907, 5, '2016-08-10 20:41:10', 22, 600, 22.2999992, 44.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2908, 5, '2016-08-10 20:41:16', 22, 557, 22.2999992, 44.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2909, 5, '2016-08-10 20:41:22', 22, 566, 22.2999992, 44.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2910, 5, '2016-08-10 20:41:30', 22, 559, 22.2999992, 44.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2911, 5, '2016-08-10 20:41:37', 22, 568, 22.2999992, 44.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2912, 5, '2016-08-10 20:41:44', 22, 559, 22.2999992, 44.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2913, 5, '2016-08-10 20:41:52', 22, 577, 22.2999992, 44.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2914, 5, '2016-08-10 20:41:58', 22, 605, 22.2999992, 44.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2915, 5, '2016-08-10 20:42:07', 22, 544, 22.2999992, 44.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2916, 5, '2016-08-10 20:42:13', 22, 532, 22.2999992, 44.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2917, 5, '2016-08-10 20:42:20', 22, 561, 22.2999992, 44.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2918, 5, '2016-08-10 20:42:27', 22, 570, 22.2999992, 44.0999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2919, 5, '2016-08-10 20:42:34', 22, 553, 22.2999992, 44.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2920, 5, '2016-08-10 20:42:42', 22, 535, 22.2999992, 44.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2921, 5, '2016-08-10 20:42:48', 23, 577, 22.2999992, 44.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2922, 5, '2016-08-10 20:42:58', 16, 591, 22.2999992, 44.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2923, 5, '2016-08-10 20:43:04', 1, 604, 22.2999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2924, 5, '2016-08-10 20:43:10', 1, 554, 22.2999992, 44.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2925, 5, '2016-08-10 20:43:19', 0, 595, 22.2999992, 44.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2926, 5, '2016-08-10 20:43:21', 2, 541, 22.2999992, 44.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2927, 1, '2016-08-10 20:43:22', 0, 615, 22.2000008, 45.0999985, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2928, 1, '2016-08-10 20:43:23', 0, 615, 22.2000008, 45.0999985, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2929, 5, '2016-08-10 20:43:32', 2, 597, 22.2999992, 44.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2930, 5, '2016-08-10 20:43:37', 0, 635, 22.2999992, 44.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2931, 5, '2016-08-10 20:43:46', 0, 566, 22.2999992, 44.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2932, 5, '2016-08-10 20:43:54', 0, 581, 22.2999992, 44.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2933, 5, '2016-08-10 20:44:00', 0, 577, 22.2999992, 44.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2934, 5, '2016-08-10 20:44:09', 0, 588, 22.2999992, 44.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2935, 5, '2016-08-10 20:44:15', 0, 557, 22.2999992, 44.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2936, 5, '2016-08-10 20:44:23', 0, 539, 22.2999992, 44.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2937, 5, '2016-08-10 20:44:31', 0, 565, 22.2999992, 44.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2938, 5, '2016-08-10 20:44:45', 0, 588, 22.2999992, 44.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2939, 5, '2016-08-10 20:44:51', 0, 600, 22.2999992, 44.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2940, 5, '2016-08-10 20:44:58', 0, 579, 22.2999992, 44.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2941, 5, '2016-08-10 20:45:08', 2, 534, 22.2999992, 44.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2942, 5, '2016-08-10 20:45:12', 2, 556, 22.2999992, 44.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2944, 5, '2016-08-10 20:45:28', 0, 559, 22.2999992, 44.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2946, 5, '2016-08-10 20:45:42', 2, 584, 22.2999992, 44.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2948, 5, '2016-08-10 20:45:56', 2, 532, 22.2999992, 44.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2956, 5, '2016-08-10 20:46:48', 2, 577, 22.2999992, 44.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2986, 5, '2016-08-10 20:50:22', 2, 553, 22.2999992, 44, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2988, 5, '2016-08-10 20:50:39', 1, 575, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2990, 5, '2016-08-10 20:50:58', 2, 575, 22.2999992, 44, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2992, 5, '2016-08-10 20:51:14', 2, 598, 22.2999992, 44, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2994, 5, '2016-08-10 20:51:26', 2, 541, 22.2999992, 44, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2996, 5, '2016-08-10 20:51:40', 2, 579, 22.2999992, 44, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2998, 3, '2016-08-10 20:51:49', 1, 592, 22.3999996, 46, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3000, 5, '2016-08-10 20:52:02', 2, 566, 22.2999992, 44, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3002, 5, '2016-08-10 20:52:16', 1, 570, 22.2999992, 44, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3004, 5, '2016-08-10 20:52:25', 2, 570, 22.2999992, 44, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3006, 5, '2016-08-10 20:52:52', 2, 570, 22.2999992, 44, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3008, 5, '2016-08-10 20:53:04', 1, 588, 22.2999992, 44, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3038, 5, '2016-08-10 20:56:42', 6, 564, 22.2999992, 44, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3040, 5, '2016-08-10 20:56:57', 6, 514, 22.2999992, 44, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3042, 5, '2016-08-10 20:57:11', 6, 566, 22.2999992, 44, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3044, 5, '2016-08-10 20:57:26', 6, 603, 22.2999992, 44, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3046, 5, '2016-08-10 20:57:39', 6, 575, 22.2999992, 44, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3048, 5, '2016-08-10 20:57:53', 6, 548, 22.3999996, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3050, 5, '2016-08-10 20:58:09', 6, 566, 22.2999992, 44, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3052, 5, '2016-08-10 20:58:23', 6, 568, 22.3999996, 44, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3054, 5, '2016-08-10 20:58:33', 6, 575, 22.3999996, 44, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3056, 5, '2016-08-10 20:58:44', 6, 546, 22.2999992, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3058, 5, '2016-08-10 20:59:06', 6, 575, 22.2999992, 44, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3060, 5, '2016-08-10 20:59:20', 6, 539, 22.2999992, 44, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3062, 5, '2016-08-10 20:59:38', 6, 593, 22.2999992, 44, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3064, 5, '2016-08-10 20:59:49', 6, 579, 22.2999992, 44, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3070, 5, '2016-08-10 21:00:32', 25, 584, 22.2999992, 44, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3072, 5, '2016-08-10 21:00:48', 25, 548, 22.2999992, 44, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3074, 5, '2016-08-10 21:01:01', 25, 596, 22.3999996, 44, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3096, 5, '2016-08-10 21:03:25', 25, 596, 22.3999996, 44, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3098, 5, '2016-08-10 21:03:46', 25, 588, 22.3999996, 44, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3100, 5, '2016-08-10 21:04:00', 25, 562, 22.3999996, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3102, 5, '2016-08-10 21:04:17', 24, 564, 22.3999996, 44, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3106, 5, '2016-08-10 21:04:44', 23, 577, 22.3999996, 44, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3124, 5, '2016-08-10 21:06:53', 23, 559, 22.3999996, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3140, 5, '2016-08-10 21:08:47', 23, 562, 22.3999996, 44, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3150, 5, '2016-08-10 21:10:07', 23, 568, 22.3999996, 44, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3152, 5, '2016-08-10 21:10:20', 23, 582, 22.3999996, 44, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3154, 5, '2016-08-10 21:10:33', 23, 579, 22.3999996, 44, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3156, 5, '2016-08-10 21:10:50', 23, 596, 22.3999996, 44, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3158, 5, '2016-08-10 21:11:11', 23, 577, 22.3999996, 44, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3160, 5, '2016-08-10 21:11:26', 23, 544, 22.3999996, 44, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3162, 5, '2016-08-10 21:11:42', 23, 555, 22.3999996, 44, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3164, 5, '2016-08-10 21:11:54', 23, 566, 22.3999996, 44, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3166, 5, '2016-08-10 21:12:08', 23, 535, 22.3999996, 44, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3174, 5, '2016-08-10 21:13:06', 23, 593, 22.3999996, 44, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3176, 5, '2016-08-10 21:13:20', 23, 548, 22.3999996, 44, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3178, 5, '2016-08-10 21:13:34', 23, 573, 22.3999996, 44, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3180, 5, '2016-08-10 21:13:44', 23, 596, 22.3999996, 44, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3184, 5, '2016-08-10 21:14:10', 23, 553, 22.3999996, 44, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3186, 5, '2016-08-10 21:14:25', 23, 584, 22.3999996, 44, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3188, 5, '2016-08-10 21:14:40', 23, 588, 22.3999996, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3190, 5, '2016-08-10 21:14:54', 23, 570, 22.3999996, 44, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3192, 5, '2016-08-10 21:15:16', 23, 557, 22.3999996, 44, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3194, 5, '2016-08-10 21:15:30', 23, 575, 22.3999996, 43.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3196, 5, '2016-08-10 21:15:44', 23, 577, 22.3999996, 44, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3218, 5, '2016-08-10 21:18:08', 23, 586, 22.3999996, 43.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3220, 5, '2016-08-10 21:18:22', 23, 535, 22.3999996, 43.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3222, 5, '2016-08-10 21:18:36', 23, 591, 22.3999996, 43.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3224, 5, '2016-08-10 21:18:50', 23, 586, 22.3999996, 43.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3226, 5, '2016-08-10 21:19:05', 23, 570, 22.3999996, 43.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3228, 5, '2016-08-10 21:19:26', 23, 575, 22.3999996, 43.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3230, 5, '2016-08-10 21:19:38', 23, 544, 22.3999996, 43.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2943, 5, '2016-08-10 20:45:20', 0, 541, 22.2999992, 44.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2945, 5, '2016-08-10 20:45:34', 0, 579, 22.2999992, 44.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2947, 5, '2016-08-10 20:45:48', 1, 557, 22.2999992, 44.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2949, 5, '2016-08-10 20:46:04', 2, 544, 22.2999992, 44.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2951, 5, '2016-08-10 20:46:18', 2, 570, 22.2999992, 44.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2953, 5, '2016-08-10 20:46:33', 2, 566, 22.2999992, 44.0999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2955, 5, '2016-08-10 20:46:47', 2, 577, 22.2999992, 44.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2957, 5, '2016-08-10 20:47:00', 2, 584, 22.2999992, 44.0999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3041, 5, '2016-08-10 20:56:58', 6, 562, 22.2999992, 44, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3043, 5, '2016-08-10 20:57:17', 6, 582, 22.3999996, 44, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3045, 5, '2016-08-10 20:57:34', 6, 568, 22.2999992, 44, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3047, 5, '2016-08-10 20:57:48', 6, 551, 22.2999992, 44, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3049, 5, '2016-08-10 20:58:02', 6, 537, 22.2999992, 44, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3051, 5, '2016-08-10 20:58:15', 6, 573, 22.2999992, 44, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3053, 5, '2016-08-10 20:58:29', 6, 548, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3055, 1, '2016-08-10 20:58:38', 0, 579, 22.2000008, 45.2000008, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3057, 5, '2016-08-10 20:58:59', 6, 573, 22.3999996, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3059, 5, '2016-08-10 20:59:14', 6, 528, 22.2999992, 44, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3061, 5, '2016-08-10 20:59:27', 6, 596, 22.3999996, 44, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3063, 5, '2016-08-10 20:59:41', 6, 575, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3065, 5, '2016-08-10 20:59:56', 6, 577, 22.2999992, 44, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3067, 5, '2016-08-10 21:00:11', 6, 577, 22.3999996, 44, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3087, 5, '2016-08-10 21:02:27', 25, 537, 22.2999992, 44, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3089, 5, '2016-08-10 21:02:41', 25, 577, 22.2999992, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3101, 5, '2016-08-10 21:04:07', 23, 539, 22.3999996, 44, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3103, 5, '2016-08-10 21:04:21', 24, 548, 22.3999996, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3107, 5, '2016-08-10 21:04:51', 23, 566, 22.3999996, 44, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3109, 5, '2016-08-10 21:05:13', 24, 577, 22.3999996, 44, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3111, 5, '2016-08-10 21:05:27', 23, 603, 22.3999996, 44, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3113, 5, '2016-08-10 21:05:41', 23, 568, 22.3999996, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3115, 5, '2016-08-10 21:05:55', 23, 566, 22.3999996, 44, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3117, 5, '2016-08-10 21:06:09', 23, 551, 22.3999996, 44, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3121, 5, '2016-08-10 21:06:39', 23, 559, 22.3999996, 44, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3123, 5, '2016-08-10 21:06:53', 24, 568, 22.3999996, 44, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3125, 3, '2016-08-10 21:07:08', 1, 599, 22.3999996, 46, 8755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3127, 5, '2016-08-10 21:07:21', 23, 559, 22.3999996, 44, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3129, 5, '2016-08-10 21:07:36', 24, 603, 22.3999996, 44, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3131, 5, '2016-08-10 21:07:51', 23, 564, 22.3999996, 44, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3133, 5, '2016-08-10 21:07:58', 23, 548, 22.3999996, 44, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3135, 5, '2016-08-10 21:08:15', 23, 537, 22.3999996, 44, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3137, 5, '2016-08-10 21:08:26', 23, 579, 22.3999996, 44, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3139, 5, '2016-08-10 21:08:41', 23, 548, 22.3999996, 44, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3141, 5, '2016-08-10 21:08:55', 23, 551, 22.3999996, 44, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3143, 5, '2016-08-10 21:09:16', 24, 568, 22.3999996, 44, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3145, 5, '2016-08-10 21:09:31', 23, 577, 22.3999996, 44, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3147, 5, '2016-08-10 21:09:45', 23, 573, 22.3999996, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3177, 5, '2016-08-10 21:13:26', 23, 546, 22.3999996, 44, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3179, 5, '2016-08-10 21:13:41', 23, 559, 22.3999996, 44, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3197, 5, '2016-08-10 21:15:52', 23, 586, 22.3999996, 43.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3199, 5, '2016-08-10 21:16:06', 23, 575, 22.3999996, 43.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3201, 5, '2016-08-10 21:16:20', 23, 577, 22.3999996, 43.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3203, 5, '2016-08-10 21:16:34', 23, 532, 22.3999996, 43.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3205, 5, '2016-08-10 21:16:48', 23, 532, 22.3999996, 43.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3207, 5, '2016-08-10 21:16:58', 23, 577, 22.3999996, 43.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3209, 5, '2016-08-10 21:17:18', 23, 539, 22.3999996, 43.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3211, 5, '2016-08-10 21:17:27', 23, 582, 22.3999996, 43.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3213, 0, '2016-08-10 21:17:32', 0, 557, 22.2999992, 45.2000008, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3215, 5, '2016-08-10 21:17:47', 23, 596, 22.3999996, 43.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3217, 5, '2016-08-10 21:18:00', 23, 573, 22.3999996, 43.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3219, 5, '2016-08-10 21:18:14', 23, 535, 22.3999996, 43.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3221, 5, '2016-08-10 21:18:30', 23, 553, 22.3999996, 43.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3223, 5, '2016-08-10 21:18:44', 23, 535, 22.3999996, 43.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3225, 5, '2016-08-10 21:18:59', 23, 568, 22.3999996, 43.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3227, 5, '2016-08-10 21:19:21', 23, 541, 22.3999996, 43.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3229, 5, '2016-08-10 21:19:34', 23, 573, 22.3999996, 43.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3231, 5, '2016-08-10 21:19:48', 23, 557, 22.3999996, 43.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3233, 5, '2016-08-10 21:20:02', 23, 566, 22.3999996, 43.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3235, 5, '2016-08-10 21:20:17', 23, 553, 22.3999996, 43.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2950, 5, '2016-08-10 20:46:11', 2, 577, 22.2999992, 44.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2952, 5, '2016-08-10 20:46:25', 2, 570, 22.2999992, 44.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2954, 5, '2016-08-10 20:46:38', 2, 561, 22.2999992, 44.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2958, 5, '2016-08-10 20:47:06', 2, 562, 22.2999992, 44.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2960, 5, '2016-08-10 20:47:15', 2, 584, 22.2999992, 44.0999985, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2962, 5, '2016-08-10 20:47:29', 2, 603, 22.2999992, 44.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2964, 5, '2016-08-10 20:47:44', 2, 562, 22.2999992, 44.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2966, 5, '2016-08-10 20:47:59', 2, 568, 22.2999992, 44.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2968, 5, '2016-08-10 20:48:12', 1, 562, 22.2999992, 44.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2970, 5, '2016-08-10 20:48:27', 2, 559, 22.2999992, 44.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2972, 5, '2016-08-10 20:48:42', 2, 544, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2974, 5, '2016-08-10 20:48:55', 2, 544, 22.2999992, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2976, 5, '2016-08-10 20:49:11', 2, 537, 22.2999992, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2978, 5, '2016-08-10 20:49:25', 2, 562, 22.2999992, 44, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2980, 5, '2016-08-10 20:49:39', 2, 581, 22.2999992, 44, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2982, 5, '2016-08-10 20:49:53', 1, 539, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2984, 5, '2016-08-10 20:50:08', 2, 548, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3010, 5, '2016-08-10 20:53:16', 2, 579, 22.2999992, 44, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3012, 5, '2016-08-10 20:53:23', 2, 600, 22.2999992, 44, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3014, 5, '2016-08-10 20:53:43', 2, 584, 22.2999992, 44, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3016, 5, '2016-08-10 20:53:57', 2, 568, 22.2999992, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3018, 5, '2016-08-10 20:54:12', 3, 557, 22.2999992, 44, 28784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3020, 5, '2016-08-10 20:54:26', 3, 610, 22.2999992, 44, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3022, 5, '2016-08-10 20:54:40', 3, 564, 22.2999992, 44, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3024, 5, '2016-08-10 20:55:02', 6, 546, 22.2999992, 44, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3026, 5, '2016-08-10 20:55:16', 6, 577, 22.2999992, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3028, 5, '2016-08-10 20:55:30', 6, 582, 22.2999992, 44, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3030, 5, '2016-08-10 20:55:45', 6, 568, 22.2999992, 44, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3032, 5, '2016-08-10 20:55:59', 6, 564, 22.2999992, 44, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3034, 5, '2016-08-10 20:56:14', 6, 577, 22.2999992, 44, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3036, 5, '2016-08-10 20:56:27', 6, 573, 22.2999992, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3066, 5, '2016-08-10 21:00:04', 6, 562, 22.3999996, 44, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3068, 5, '2016-08-10 21:00:19', 8, 539, 22.3999996, 44, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3076, 5, '2016-08-10 21:01:15', 25, 588, 22.2999992, 44, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3078, 5, '2016-08-10 21:01:29', 25, 603, 22.3999996, 44, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3080, 5, '2016-08-10 21:01:43', 25, 598, 22.2999992, 44, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3082, 5, '2016-08-10 21:01:58', 25, 557, 22.3999996, 44, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3084, 5, '2016-08-10 21:02:13', 25, 539, 22.2999992, 44, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3086, 0, '2016-08-10 21:02:20', 0, 568, 22.5, 46.4000015, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3088, 5, '2016-08-10 21:02:35', 25, 506, 22.3999996, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3090, 5, '2016-08-10 21:02:49', 25, 582, 22.3999996, 44, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3092, 5, '2016-08-10 21:03:03', 25, 559, 22.3999996, 44, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3094, 5, '2016-08-10 21:03:17', 25, 577, 22.3999996, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3104, 5, '2016-08-10 21:04:29', 24, 548, 22.3999996, 44, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3108, 5, '2016-08-10 21:05:05', 24, 575, 22.3999996, 44, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3110, 5, '2016-08-10 21:05:19', 23, 528, 22.3999996, 44, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3112, 5, '2016-08-10 21:05:33', 23, 570, 22.3999996, 44, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3114, 5, '2016-08-10 21:05:48', 23, 584, 22.3999996, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3116, 5, '2016-08-10 21:06:02', 23, 562, 22.3999996, 44, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3118, 5, '2016-08-10 21:06:17', 23, 525, 22.3999996, 44, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3120, 5, '2016-08-10 21:06:31', 23, 548, 22.3999996, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3122, 5, '2016-08-10 21:06:45', 24, 557, 22.3999996, 44, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3126, 5, '2016-08-10 21:07:08', 23, 553, 22.3999996, 44, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3128, 5, '2016-08-10 21:07:29', 24, 582, 22.3999996, 44, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3130, 5, '2016-08-10 21:07:43', 23, 551, 22.3999996, 44, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3132, 5, '2016-08-10 21:07:57', 23, 562, 22.3999996, 44, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3134, 5, '2016-08-10 21:08:12', 23, 566, 22.3999996, 44, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3136, 2, '2016-08-10 21:08:19', 0, 513, 23.2000008, 42.4000015, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3138, 5, '2016-08-10 21:08:33', 23, 579, 22.3999996, 44, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3142, 5, '2016-08-10 21:09:08', 23, 573, 22.3999996, 44, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3144, 5, '2016-08-10 21:09:23', 23, 575, 22.3999996, 44, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3146, 5, '2016-08-10 21:09:39', 23, 541, 22.3999996, 44, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3148, 5, '2016-08-10 21:09:52', 23, 566, 22.3999996, 44, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3168, 5, '2016-08-10 21:12:23', 23, 584, 22.3999996, 44, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3170, 5, '2016-08-10 21:12:40', 23, 575, 22.3999996, 44, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3172, 5, '2016-08-10 21:12:52', 23, 579, 22.3999996, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3182, 5, '2016-08-10 21:13:56', 23, 516, 22.3999996, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3198, 5, '2016-08-10 21:15:58', 23, 568, 22.3999996, 43.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3200, 5, '2016-08-10 21:16:12', 23, 575, 22.3999996, 43.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3202, 5, '2016-08-10 21:16:27', 23, 568, 22.3999996, 43.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3204, 5, '2016-08-10 21:16:42', 23, 535, 22.3999996, 43.9000015, 31061);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3206, 5, '2016-08-10 21:16:57', 23, 570, 22.3999996, 43.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3208, 5, '2016-08-10 21:17:10', 23, 506, 22.3999996, 43.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3210, 5, '2016-08-10 21:17:20', 23, 635, 22.3999996, 43.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3212, 0, '2016-08-10 21:17:28', 0, 557, 22.2999992, 45.2000008, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3214, 5, '2016-08-10 21:17:38', 23, 575, 22.3999996, 43.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3216, 5, '2016-08-10 21:17:54', 23, 588, 22.3999996, 43.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3232, 5, '2016-08-10 21:19:56', 23, 570, 22.3999996, 43.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3234, 5, '2016-08-10 21:20:10', 23, 582, 22.3999996, 43.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2959, 0, '2016-08-10 20:47:10', 1, 556, 22.5, 46.4000015, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2961, 5, '2016-08-10 20:47:22', 2, 537, 22.2999992, 44.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2963, 5, '2016-08-10 20:47:36', 2, 568, 22.2999992, 44.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2965, 5, '2016-08-10 20:47:50', 2, 582, 22.2999992, 44.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2967, 5, '2016-08-10 20:48:05', 2, 568, 22.2999992, 44.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2969, 5, '2016-08-10 20:48:20', 1, 559, 22.2999992, 44.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2971, 5, '2016-08-10 20:48:34', 2, 586, 22.2999992, 44.0999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2973, 5, '2016-08-10 20:48:48', 2, 544, 22.2999992, 44, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2975, 5, '2016-08-10 20:49:02', 2, 568, 22.2999992, 44, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2977, 5, '2016-08-10 20:49:16', 2, 555, 22.2999992, 44, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2979, 5, '2016-08-10 20:49:31', 2, 543, 22.2999992, 44, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2981, 5, '2016-08-10 20:49:46', 2, 588, 22.2999992, 44, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2983, 5, '2016-08-10 20:49:58', 1, 562, 22.2999992, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2985, 5, '2016-08-10 20:50:14', 2, 564, 22.2999992, 44, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2987, 5, '2016-08-10 20:50:29', 2, 551, 22.2999992, 44, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2989, 5, '2016-08-10 20:50:50', 1, 535, 22.2999992, 44, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2991, 5, '2016-08-10 20:51:04', 2, 551, 22.2999992, 44, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2993, 5, '2016-08-10 20:51:18', 2, 539, 22.2999992, 44, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2995, 5, '2016-08-10 20:51:33', 2, 573, 22.2999992, 44, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2997, 5, '2016-08-10 20:51:43', 2, 562, 22.2999992, 44, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (2999, 5, '2016-08-10 20:51:55', 2, 546, 22.2999992, 44, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3001, 5, '2016-08-10 20:52:10', 2, 562, 22.2999992, 44, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3003, 5, '2016-08-10 20:52:24', 1, 544, 22.2999992, 44, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3005, 5, '2016-08-10 20:52:39', 2, 579, 22.2999992, 44, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3007, 5, '2016-08-10 20:53:00', 1, 577, 22.2999992, 44, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3009, 2, '2016-08-10 20:53:07', 0, 509, 23.2999992, 42.2000008, 17446);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3011, 5, '2016-08-10 20:53:21', 2, 568, 22.2999992, 44, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3013, 5, '2016-08-10 20:53:36', 2, 596, 22.2999992, 44, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3015, 5, '2016-08-10 20:53:43', 2, 591, 22.2999992, 44, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3017, 5, '2016-08-10 20:54:04', 3, 588, 22.2999992, 44, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3019, 5, '2016-08-10 20:54:18', 3, 553, 22.2999992, 44, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3021, 5, '2016-08-10 20:54:33', 3, 566, 22.2999992, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3023, 5, '2016-08-10 20:54:54', 7, 582, 22.2999992, 44, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3025, 5, '2016-08-10 20:55:10', 6, 579, 22.2999992, 44, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3027, 5, '2016-08-10 20:55:23', 6, 555, 22.2999992, 44, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3029, 5, '2016-08-10 20:55:38', 6, 588, 22.2999992, 44, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3031, 5, '2016-08-10 20:55:51', 6, 532, 22.2999992, 44, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3033, 5, '2016-08-10 20:56:06', 6, 559, 22.2999992, 44, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3035, 5, '2016-08-10 20:56:21', 6, 564, 22.2999992, 44, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3037, 5, '2016-08-10 20:56:35', 6, 579, 22.2999992, 44, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3039, 5, '2016-08-10 20:56:51', 6, 575, 22.2999992, 44, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3069, 5, '2016-08-10 21:00:26', 25, 539, 22.2999992, 44, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3071, 5, '2016-08-10 21:00:39', 24, 596, 22.2999992, 44, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3073, 5, '2016-08-10 21:00:53', 25, 566, 22.2999992, 44, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3075, 5, '2016-08-10 21:01:07', 25, 541, 22.3999996, 44, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3077, 5, '2016-08-10 21:01:22', 25, 557, 22.3999996, 44, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3079, 5, '2016-08-10 21:01:29', 25, 566, 22.3999996, 44, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3081, 5, '2016-08-10 21:01:51', 25, 575, 22.3999996, 44, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3083, 5, '2016-08-10 21:02:05', 25, 546, 22.2999992, 44, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3085, 5, '2016-08-10 21:02:18', 23, 582, 22.3999996, 44, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3091, 5, '2016-08-10 21:02:55', 25, 555, 22.3999996, 44, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3093, 5, '2016-08-10 21:03:10', 25, 568, 22.3999996, 44, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3095, 5, '2016-08-10 21:03:25', 25, 562, 22.3999996, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3097, 5, '2016-08-10 21:03:39', 25, 532, 22.3999996, 44, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3099, 5, '2016-08-10 21:03:50', 25, 557, 22.3999996, 44, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3105, 5, '2016-08-10 21:04:36', 24, 579, 22.3999996, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3119, 5, '2016-08-10 21:06:26', 23, 570, 22.3999996, 44, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3149, 5, '2016-08-10 21:09:59', 23, 617, 22.3999996, 44, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3151, 5, '2016-08-10 21:10:14', 23, 568, 22.3999996, 44, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3153, 5, '2016-08-10 21:10:28', 23, 539, 22.3999996, 44, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3155, 5, '2016-08-10 21:10:43', 23, 593, 22.3999996, 44, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3157, 5, '2016-08-10 21:10:56', 23, 553, 22.3999996, 44, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3159, 5, '2016-08-10 21:11:19', 23, 586, 22.3999996, 44, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3161, 5, '2016-08-10 21:11:32', 23, 523, 22.3999996, 44, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3163, 5, '2016-08-10 21:11:47', 23, 537, 22.3999996, 44, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3165, 5, '2016-08-10 21:12:02', 23, 548, 22.3999996, 44, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3167, 5, '2016-08-10 21:12:16', 23, 577, 22.3999996, 44, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3169, 5, '2016-08-10 21:12:30', 23, 573, 22.3999996, 44, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3171, 5, '2016-08-10 21:12:44', 23, 559, 22.3999996, 44, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3173, 5, '2016-08-10 21:12:59', 23, 535, 22.3999996, 44, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3175, 5, '2016-08-10 21:13:14', 23, 593, 22.3999996, 44, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3181, 1, '2016-08-10 21:13:49', 0, 541, 22.1000004, 45.2000008, 9345);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3183, 5, '2016-08-10 21:13:57', 23, 586, 22.3999996, 44, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3185, 5, '2016-08-10 21:14:18', 23, 559, 22.3999996, 44, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3187, 5, '2016-08-10 21:14:32', 23, 548, 22.3999996, 44, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3189, 5, '2016-08-10 21:14:46', 23, 553, 22.3999996, 44, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3191, 5, '2016-08-10 21:15:01', 23, 551, 22.3999996, 43.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3193, 5, '2016-08-10 21:15:22', 23, 568, 22.3999996, 44, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3195, 5, '2016-08-10 21:15:36', 23, 548, 22.3999996, 44, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3236, 5, '2016-08-10 21:20:24', 23, 579, 22.3999996, 43.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3237, 5, '2016-08-10 21:20:33', 23, 562, 22.3999996, 43.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3238, 5, '2016-08-10 21:20:38', 23, 568, 22.3999996, 43.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3239, 5, '2016-08-10 21:20:46', 23, 564, 22.3999996, 43.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3240, 5, '2016-08-10 21:20:53', 23, 591, 22.3999996, 43.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3241, 5, '2016-08-10 21:21:00', 23, 559, 22.3999996, 43.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3242, 5, '2016-08-10 21:21:07', 23, 537, 22.3999996, 43.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3243, 5, '2016-08-10 21:21:14', 23, 551, 22.3999996, 43.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3244, 5, '2016-08-10 21:21:22', 23, 591, 22.3999996, 43.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3245, 5, '2016-08-10 21:21:28', 23, 532, 22.3999996, 43.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3246, 5, '2016-08-10 21:21:36', 23, 566, 22.3999996, 43.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3247, 5, '2016-08-10 21:21:44', 23, 541, 22.3999996, 43.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3248, 5, '2016-08-10 21:21:50', 23, 557, 22.3999996, 43.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3249, 5, '2016-08-10 21:21:58', 23, 532, 22.3999996, 43.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3250, 5, '2016-08-10 21:22:04', 23, 577, 22.3999996, 43.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3251, 3, '2016-08-10 21:22:04', 1, 573, 22.2000008, 45, 4704);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3252, 5, '2016-08-10 21:22:12', 23, 510, 22.3999996, 43.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3253, 5, '2016-08-10 21:22:19', 23, 588, 22.3999996, 43.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3254, 5, '2016-08-10 21:22:26', 23, 546, 22.3999996, 43.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3255, 5, '2016-08-10 21:22:34', 23, 544, 22.3999996, 43.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3256, 5, '2016-08-10 21:22:40', 23, 557, 22.3999996, 43.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3257, 5, '2016-08-10 21:22:48', 23, 557, 22.3999996, 43.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3258, 5, '2016-08-10 21:22:54', 23, 548, 22.3999996, 43.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3259, 5, '2016-08-10 21:23:02', 23, 593, 22.3999996, 43.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3260, 5, '2016-08-10 21:23:09', 23, 539, 22.3999996, 43.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3261, 5, '2016-08-10 21:23:16', 23, 562, 22.3999996, 43.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3262, 5, '2016-08-10 21:23:24', 23, 568, 22.3999996, 43.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3263, 5, '2016-08-10 21:23:26', 23, 521, 22.3999996, 43.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3264, 2, '2016-08-10 21:23:29', 0, 506, 23.2000008, 42.5, 4608);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3266, 5, '2016-08-10 21:23:45', 23, 575, 22.3999996, 43.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3268, 5, '2016-08-10 21:24:00', 23, 577, 22.3999996, 43.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3270, 5, '2016-08-10 21:24:14', 23, 532, 22.3999996, 43.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3272, 5, '2016-08-10 21:24:28', 23, 539, 22.3999996, 43.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3274, 5, '2016-08-10 21:24:42', 23, 551, 22.3999996, 43.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3276, 5, '2016-08-10 21:24:57', 23, 570, 22.3999996, 43.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3278, 5, '2016-08-10 21:25:12', 23, 610, 22.3999996, 43.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3280, 5, '2016-08-10 21:25:33', 23, 551, 22.3999996, 43.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3282, 5, '2016-08-10 21:25:47', 23, 603, 22.3999996, 43.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3284, 5, '2016-08-10 21:25:59', 23, 541, 22.3999996, 43.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3286, 5, '2016-08-10 21:26:15', 23, 573, 22.3999996, 43.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3288, 5, '2016-08-10 21:26:30', 23, 541, 22.3999996, 43.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3290, 5, '2016-08-10 21:26:45', 23, 514, 22.3999996, 43.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3292, 5, '2016-08-10 21:26:59', 23, 508, 22.3999996, 43.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3294, 5, '2016-08-10 21:27:14', 23, 541, 22.3999996, 43.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3296, 5, '2016-08-10 21:27:31', 23, 559, 22.3999996, 43.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3326, 5, '2016-08-10 21:31:03', 23, 546, 22.3999996, 43.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3328, 5, '2016-08-10 21:31:17', 23, 519, 22.3999996, 43.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3330, 5, '2016-08-10 21:31:40', 23, 575, 22.3999996, 43.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3332, 5, '2016-08-10 21:31:53', 23, 548, 22.3999996, 43.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3334, 5, '2016-08-10 21:32:08', 23, 557, 22.3999996, 43.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3336, 5, '2016-08-10 21:32:24', 23, 546, 22.3999996, 43.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3338, 5, '2016-08-10 21:32:38', 23, 564, 22.3999996, 43.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3340, 0, '2016-08-10 21:32:45', 0, 553, 21.7999992, 47, 2066);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3342, 5, '2016-08-10 21:32:58', 23, 559, 22.3999996, 43.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3344, 5, '2016-08-10 21:33:14', 23, 584, 22.3999996, 43.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3346, 5, '2016-08-10 21:33:28', 23, 566, 22.3999996, 43.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3348, 5, '2016-08-10 21:33:41', 23, 582, 22.3999996, 43.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3350, 5, '2016-08-10 21:33:55', 23, 579, 22.3999996, 43.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3352, 5, '2016-08-10 21:34:09', 23, 562, 22.3999996, 43.7999992, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3354, 5, '2016-08-10 21:34:25', 23, 546, 22.3999996, 43.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3356, 5, '2016-08-10 21:34:41', 23, 541, 22.3999996, 43.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3358, 5, '2016-08-10 21:34:52', 23, 566, 22.3999996, 43.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3360, 5, '2016-08-10 21:35:07', 23, 555, 22.3999996, 43.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3362, 5, '2016-08-10 21:35:21', 23, 586, 22.3999996, 43.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3364, 5, '2016-08-10 21:35:43', 23, 546, 22.3999996, 43.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3366, 5, '2016-08-10 21:35:57', 23, 557, 22.3999996, 43.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3368, 5, '2016-08-10 21:36:13', 23, 535, 22.3999996, 43.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3386, 5, '2016-08-10 21:38:14', 23, 575, 22.3999996, 43.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3388, 5, '2016-08-10 21:38:29', 23, 557, 22.3999996, 43.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3390, 5, '2016-08-10 21:38:37', 23, 575, 22.3999996, 43.7999992, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3392, 2, '2016-08-10 21:38:42', 0, 541, 23.2000008, 42.5999985, 14388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3394, 5, '2016-08-10 21:38:57', 23, 551, 22.3999996, 43.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3396, 5, '2016-08-10 21:39:11', 23, 539, 22.3999996, 43.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3398, 5, '2016-08-10 21:39:26', 23, 577, 22.3999996, 43.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3400, 5, '2016-08-10 21:39:48', 23, 519, 22.3999996, 43.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3402, 5, '2016-08-10 21:40:02', 23, 559, 22.3999996, 43.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3404, 5, '2016-08-10 21:40:16', 23, 566, 22.3999996, 43.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3406, 5, '2016-08-10 21:40:32', 23, 564, 22.3999996, 43.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3408, 5, '2016-08-10 21:40:44', 23, 559, 22.3999996, 43.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3410, 5, '2016-08-10 21:40:59', 23, 555, 22.3999996, 43.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3412, 5, '2016-08-10 21:41:13', 23, 588, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3424, 5, '2016-08-10 21:42:47', 23, 553, 22.3999996, 43.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3426, 5, '2016-08-10 21:43:02', 23, 557, 22.3999996, 43.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3428, 5, '2016-08-10 21:43:16', 23, 568, 22.3999996, 43.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3430, 5, '2016-08-10 21:43:31', 23, 577, 22.3999996, 43.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3432, 5, '2016-08-10 21:43:46', 23, 535, 22.3999996, 43.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3434, 5, '2016-08-10 21:43:58', 23, 555, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3436, 1, '2016-08-10 21:44:07', 0, 586, 22, 45.2000008, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3438, 5, '2016-08-10 21:44:19', 23, 570, 22.3999996, 43.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3440, 5, '2016-08-10 21:44:37', 23, 579, 22.3999996, 43.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3442, 5, '2016-08-10 21:44:49', 23, 573, 22.3999996, 43.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3444, 5, '2016-08-10 21:45:10', 23, 537, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3446, 5, '2016-08-10 21:45:25', 23, 555, 22.3999996, 43.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3448, 5, '2016-08-10 21:45:40', 23, 612, 22.3999996, 43.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3450, 5, '2016-08-10 21:46:01', 23, 535, 22.3999996, 43.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3452, 5, '2016-08-10 21:46:15', 23, 553, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3454, 5, '2016-08-10 21:46:32', 23, 544, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3456, 5, '2016-08-10 21:46:45', 23, 557, 22.3999996, 43.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3458, 5, '2016-08-10 21:46:58', 23, 557, 22.3999996, 43.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3460, 5, '2016-08-10 21:47:12', 23, 521, 22.3999996, 43.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3462, 5, '2016-08-10 21:47:28', 23, 557, 22.3999996, 43.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3464, 5, '2016-08-10 21:47:44', 23, 586, 22.3999996, 43.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3466, 5, '2016-08-10 21:47:50', 23, 544, 22.3999996, 43.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3468, 5, '2016-08-10 21:48:03', 23, 564, 22.3999996, 43.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3470, 5, '2016-08-10 21:48:18', 23, 564, 22.3999996, 43.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3472, 5, '2016-08-10 21:48:32', 23, 546, 22.3999996, 43.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3474, 5, '2016-08-10 21:48:46', 23, 551, 22.3999996, 43.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3476, 5, '2016-08-10 21:49:00', 23, 562, 22.5, 43.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3498, 5, '2016-08-10 21:51:39', 23, 525, 22.5, 43.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3538, 5, '2016-08-10 21:56:20', 23, 537, 22.5, 43.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3568, 5, '2016-08-10 21:59:47', 23, 564, 22.5, 43.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3570, 5, '2016-08-10 22:00:09', 23, 530, 22.5, 43.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3572, 5, '2016-08-10 22:00:24', 8, 539, 22.5, 43.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3574, 5, '2016-08-10 22:00:38', 1, 582, 22.5, 43.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3576, 5, '2016-08-10 22:00:51', 1, 559, 22.5, 43.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3578, 5, '2016-08-10 22:01:06', 1, 551, 22.5, 43.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3580, 5, '2016-08-10 22:01:20', 0, 588, 22.5, 43.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3582, 5, '2016-08-10 22:01:35', 0, 610, 22.5, 43.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3584, 5, '2016-08-10 22:01:49', 0, 555, 22.5, 43.5999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3586, 5, '2016-08-10 22:02:01', 1, 566, 22.5, 43.5999985, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3588, 5, '2016-08-10 22:02:25', 1, 600, 22.5, 43.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3590, 5, '2016-08-10 22:02:39', 0, 562, 22.5, 43.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3592, 5, '2016-08-10 22:03:00', 1, 551, 22.5, 43.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3594, 5, '2016-08-10 22:03:07', 0, 584, 22.5, 43.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3265, 5, '2016-08-10 21:23:38', 23, 539, 22.3999996, 43.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3267, 5, '2016-08-10 21:23:52', 23, 573, 22.3999996, 43.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3269, 5, '2016-08-10 21:24:04', 23, 516, 22.3999996, 43.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3271, 5, '2016-08-10 21:24:21', 23, 559, 22.3999996, 43.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3273, 5, '2016-08-10 21:24:36', 23, 546, 22.3999996, 43.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3275, 5, '2016-08-10 21:24:51', 23, 612, 22.3999996, 43.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3277, 5, '2016-08-10 21:25:04', 23, 564, 22.3999996, 43.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3279, 5, '2016-08-10 21:25:25', 23, 577, 22.3999996, 43.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3281, 5, '2016-08-10 21:25:40', 23, 548, 22.3999996, 43.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3283, 5, '2016-08-10 21:25:54', 23, 544, 22.3999996, 43.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3285, 5, '2016-08-10 21:26:09', 23, 548, 22.3999996, 43.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3287, 5, '2016-08-10 21:26:24', 23, 586, 22.3999996, 43.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3317, 5, '2016-08-10 21:29:59', 23, 573, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3319, 5, '2016-08-10 21:30:13', 23, 544, 22.3999996, 43.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3321, 5, '2016-08-10 21:30:28', 23, 566, 22.3999996, 43.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3323, 5, '2016-08-10 21:30:41', 23, 570, 22.3999996, 43.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3325, 5, '2016-08-10 21:30:56', 23, 557, 22.3999996, 43.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3327, 5, '2016-08-10 21:31:11', 23, 544, 22.3999996, 43.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3329, 5, '2016-08-10 21:31:25', 23, 535, 22.3999996, 43.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3331, 5, '2016-08-10 21:31:47', 23, 532, 22.3999996, 43.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3333, 5, '2016-08-10 21:32:01', 23, 544, 22.3999996, 43.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3335, 5, '2016-08-10 21:32:16', 23, 537, 22.3999996, 43.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3337, 5, '2016-08-10 21:32:29', 23, 575, 22.3999996, 43.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3339, 5, '2016-08-10 21:32:39', 23, 535, 22.3999996, 43.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3341, 5, '2016-08-10 21:32:52', 23, 564, 22.3999996, 43.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3343, 5, '2016-08-10 21:33:05', 23, 570, 22.3999996, 43.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3345, 5, '2016-08-10 21:33:19', 23, 546, 22.3999996, 43.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3347, 5, '2016-08-10 21:33:30', 23, 557, 22.3999996, 43.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3349, 5, '2016-08-10 21:33:49', 23, 612, 22.3999996, 43.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3351, 5, '2016-08-10 21:34:03', 23, 537, 22.3999996, 43.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3353, 5, '2016-08-10 21:34:11', 23, 541, 22.3999996, 43.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3355, 5, '2016-08-10 21:34:31', 23, 541, 22.3999996, 43.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3357, 5, '2016-08-10 21:34:47', 23, 555, 22.3999996, 43.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3359, 5, '2016-08-10 21:35:00', 23, 564, 22.3999996, 43.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3361, 5, '2016-08-10 21:35:15', 23, 559, 22.3999996, 43.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3363, 5, '2016-08-10 21:35:29', 23, 568, 22.3999996, 43.7999992, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3365, 5, '2016-08-10 21:35:52', 23, 564, 22.3999996, 43.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3367, 5, '2016-08-10 21:36:05', 23, 582, 22.3999996, 43.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3369, 5, '2016-08-10 21:36:19', 23, 573, 22.3999996, 43.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3397, 5, '2016-08-10 21:39:19', 23, 568, 22.3999996, 43.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3399, 5, '2016-08-10 21:39:33', 23, 593, 22.3999996, 43.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3401, 5, '2016-08-10 21:39:55', 23, 535, 22.3999996, 43.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3403, 5, '2016-08-10 21:40:09', 23, 593, 22.3999996, 43.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3405, 5, '2016-08-10 21:40:23', 23, 557, 22.3999996, 43.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3407, 5, '2016-08-10 21:40:38', 23, 553, 22.3999996, 43.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3409, 5, '2016-08-10 21:40:52', 23, 582, 22.3999996, 43.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3411, 5, '2016-08-10 21:41:07', 23, 557, 22.3999996, 43.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3413, 5, '2016-08-10 21:41:20', 23, 559, 22.3999996, 43.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3415, 5, '2016-08-10 21:41:35', 23, 577, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3417, 5, '2016-08-10 21:41:56', 23, 539, 22.3999996, 43.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3419, 5, '2016-08-10 21:42:12', 23, 516, 22.3999996, 43.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3421, 5, '2016-08-10 21:42:26', 23, 570, 22.3999996, 43.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3423, 5, '2016-08-10 21:42:40', 23, 564, 22.3999996, 43.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3425, 5, '2016-08-10 21:42:54', 23, 537, 22.3999996, 43.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3457, 5, '2016-08-10 21:46:52', 23, 577, 22.3999996, 43.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3459, 5, '2016-08-10 21:47:06', 23, 570, 22.3999996, 43.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3461, 5, '2016-08-10 21:47:21', 23, 559, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3463, 5, '2016-08-10 21:47:34', 23, 575, 22.3999996, 43.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3465, 5, '2016-08-10 21:47:48', 23, 519, 22.3999996, 43.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3467, 0, '2016-08-10 21:47:54', 0, 565, 21.8999996, 47.0999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3469, 5, '2016-08-10 21:48:10', 23, 553, 22.3999996, 43.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3471, 5, '2016-08-10 21:48:24', 23, 546, 22.3999996, 43.7000008, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3473, 5, '2016-08-10 21:48:39', 23, 514, 22.3999996, 43.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3475, 5, '2016-08-10 21:48:55', 23, 577, 22.3999996, 43.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3477, 5, '2016-08-10 21:49:08', 23, 516, 22.3999996, 43.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3479, 5, '2016-08-10 21:49:22', 23, 564, 22.3999996, 43.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3481, 5, '2016-08-10 21:49:36', 23, 548, 22.3999996, 43.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3483, 5, '2016-08-10 21:49:51', 23, 575, 22.3999996, 43.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3499, 5, '2016-08-10 21:51:47', 23, 539, 22.5, 43.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3511, 5, '2016-08-10 21:53:01', 23, 532, 22.5, 43.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3555, 5, '2016-08-10 21:58:20', 23, 570, 22.5, 43.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3557, 5, '2016-08-10 21:58:35', 23, 566, 22.5, 43.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3559, 5, '2016-08-10 21:58:50', 23, 539, 22.5, 43.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3561, 5, '2016-08-10 21:59:04', 23, 539, 22.5, 43.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3563, 5, '2016-08-10 21:59:17', 23, 580, 22.5, 43.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3579, 5, '2016-08-10 22:01:14', 2, 553, 22.5, 43.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3581, 5, '2016-08-10 22:01:27', 0, 548, 22.5, 43.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3583, 5, '2016-08-10 22:01:41', 0, 544, 22.5, 43.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3585, 5, '2016-08-10 22:01:56', 1, 537, 22.5, 43.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3587, 5, '2016-08-10 22:02:18', 1, 530, 22.5, 43.5999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3289, 5, '2016-08-10 21:26:38', 23, 562, 22.3999996, 43.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3291, 5, '2016-08-10 21:26:51', 23, 544, 22.3999996, 43.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3293, 5, '2016-08-10 21:27:06', 23, 562, 22.3999996, 43.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3295, 5, '2016-08-10 21:27:28', 23, 548, 22.3999996, 43.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3297, 5, '2016-08-10 21:27:42', 23, 541, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3299, 5, '2016-08-10 21:27:57', 23, 562, 22.3999996, 43.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3301, 5, '2016-08-10 21:28:12', 23, 546, 22.3999996, 43.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3303, 5, '2016-08-10 21:28:26', 23, 573, 22.3999996, 43.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3305, 5, '2016-08-10 21:28:39', 23, 559, 22.3999996, 43.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3307, 5, '2016-08-10 21:28:54', 23, 568, 22.3999996, 43.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3309, 1, '2016-08-10 21:29:02', 0, 532, 22.1000004, 45.0999985, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3311, 5, '2016-08-10 21:29:17', 23, 577, 22.3999996, 43.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3313, 5, '2016-08-10 21:29:31', 23, 510, 22.3999996, 43.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3315, 5, '2016-08-10 21:29:44', 23, 557, 22.3999996, 43.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3371, 5, '2016-08-10 21:36:33', 23, 539, 22.3999996, 43.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3373, 5, '2016-08-10 21:36:48', 23, 562, 22.3999996, 43.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3375, 5, '2016-08-10 21:37:03', 23, 553, 22.3999996, 43.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3377, 5, '2016-08-10 21:37:15', 23, 553, 22.3999996, 43.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3379, 5, '2016-08-10 21:37:25', 23, 532, 22.3999996, 43.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3381, 5, '2016-08-10 21:37:39', 23, 525, 22.3999996, 43.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3383, 5, '2016-08-10 21:37:46', 23, 568, 22.3999996, 43.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3385, 5, '2016-08-10 21:38:07', 23, 555, 22.3999996, 43.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3387, 5, '2016-08-10 21:38:21', 23, 591, 22.3999996, 43.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3389, 5, '2016-08-10 21:38:36', 23, 573, 22.3999996, 43.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3391, 2, '2016-08-10 21:38:39', 0, 541, 23.2000008, 42.5999985, 14388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3393, 5, '2016-08-10 21:38:50', 23, 546, 22.3999996, 43.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3395, 5, '2016-08-10 21:39:05', 23, 551, 22.3999996, 43.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3427, 5, '2016-08-10 21:43:08', 23, 596, 22.3999996, 43.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3429, 5, '2016-08-10 21:43:22', 23, 548, 22.3999996, 43.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3431, 5, '2016-08-10 21:43:32', 23, 557, 22.3999996, 43.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3433, 5, '2016-08-10 21:43:52', 23, 593, 22.3999996, 43.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3435, 5, '2016-08-10 21:44:05', 23, 593, 22.3999996, 43.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3437, 5, '2016-08-10 21:44:14', 23, 566, 22.3999996, 43.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3439, 5, '2016-08-10 21:44:32', 23, 600, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3441, 5, '2016-08-10 21:44:45', 23, 570, 22.3999996, 43.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3443, 5, '2016-08-10 21:44:56', 23, 532, 22.3999996, 43.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3445, 5, '2016-08-10 21:45:18', 23, 548, 22.3999996, 43.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3447, 5, '2016-08-10 21:45:33', 23, 559, 22.3999996, 43.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3449, 5, '2016-08-10 21:45:54', 23, 528, 22.3999996, 43.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3451, 5, '2016-08-10 21:46:09', 23, 577, 22.3999996, 43.7999992, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3453, 5, '2016-08-10 21:46:22', 23, 584, 22.3999996, 43.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3455, 5, '2016-08-10 21:46:37', 23, 546, 22.3999996, 43.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3485, 5, '2016-08-10 21:50:05', 23, 568, 22.3999996, 43.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3487, 5, '2016-08-10 21:50:20', 23, 562, 22.3999996, 43.7000008, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3489, 5, '2016-08-10 21:50:34', 23, 593, 22.3999996, 43.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3491, 5, '2016-08-10 21:50:48', 23, 568, 22.3999996, 43.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3493, 5, '2016-08-10 21:51:02', 23, 575, 22.5, 43.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3495, 5, '2016-08-10 21:51:17', 23, 575, 22.3999996, 43.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3497, 5, '2016-08-10 21:51:31', 23, 535, 22.5, 43.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3501, 5, '2016-08-10 21:52:09', 23, 559, 22.5, 43.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3503, 5, '2016-08-10 21:52:23', 23, 586, 22.5, 43.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3505, 3, '2016-08-10 21:52:27', 1, 588, 21.8999996, 46.2999992, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3507, 5, '2016-08-10 21:52:35', 23, 575, 22.3999996, 43.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3509, 5, '2016-08-10 21:52:50', 23, 566, 22.5, 43.7000008, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3513, 5, '2016-08-10 21:53:18', 23, 495, 22.3999996, 43.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3515, 5, '2016-08-10 21:53:33', 23, 562, 22.5, 43.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3517, 5, '2016-08-10 21:53:48', 23, 573, 22.5, 43.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3519, 5, '2016-08-10 21:54:02', 23, 510, 22.5, 43.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3521, 5, '2016-08-10 21:54:16', 23, 555, 22.5, 43.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3523, 5, '2016-08-10 21:54:25', 22, 523, 22.5, 43.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3525, 5, '2016-08-10 21:54:45', 23, 570, 22.5, 43.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3527, 5, '2016-08-10 21:55:01', 23, 573, 22.5, 43.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3529, 5, '2016-08-10 21:55:14', 23, 521, 22.3999996, 43.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3531, 5, '2016-08-10 21:55:28', 23, 539, 22.5, 43.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3533, 5, '2016-08-10 21:55:43', 23, 541, 22.5, 43.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3535, 5, '2016-08-10 21:55:55', 23, 575, 22.5, 43.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3537, 5, '2016-08-10 21:56:12', 23, 559, 22.5, 43.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3539, 5, '2016-08-10 21:56:26', 23, 603, 22.5, 43.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3541, 5, '2016-08-10 21:56:41', 23, 600, 22.5, 43.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3543, 5, '2016-08-10 21:56:55', 23, 539, 22.5, 43.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3545, 5, '2016-08-10 21:57:11', 23, 575, 22.5, 43.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3547, 5, '2016-08-10 21:57:23', 23, 568, 22.5, 43.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3549, 5, '2016-08-10 21:57:37', 23, 504, 22.5, 43.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3551, 5, '2016-08-10 21:57:51', 23, 570, 22.5, 43.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3553, 5, '2016-08-10 21:58:07', 23, 539, 22.5, 43.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3565, 5, '2016-08-10 21:59:27', 23, 557, 22.5, 43.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3567, 5, '2016-08-10 21:59:39', 23, 582, 22.5, 43.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3569, 5, '2016-08-10 21:59:55', 23, 562, 22.5, 43.5999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3571, 5, '2016-08-10 22:00:15', 23, 512, 22.5, 43.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3573, 5, '2016-08-10 22:00:29', 5, 557, 22.5, 43.5999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3575, 5, '2016-08-10 22:00:45', 1, 570, 22.5, 43.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3577, 5, '2016-08-10 22:00:59', 1, 528, 22.5, 43.5999985, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3589, 5, '2016-08-10 22:02:33', 0, 559, 22.5, 43.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3591, 5, '2016-08-10 22:02:46', 1, 532, 22.5, 43.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3593, 0, '2016-08-10 22:03:04', 0, 515, 21.8999996, 47, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3595, 5, '2016-08-10 22:03:15', 0, 541, 22.5, 43.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3597, 5, '2016-08-10 22:03:29', 0, 588, 22.5, 43.5999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3599, 5, '2016-08-10 22:03:44', 0, 573, 22.5, 43.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3601, 5, '2016-08-10 22:03:59', 0, 548, 22.5, 43.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3603, 5, '2016-08-10 22:04:13', 0, 548, 22.5, 43.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3605, 5, '2016-08-10 22:04:28', 0, 530, 22.5, 43.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3607, 5, '2016-08-10 22:04:41', 0, 551, 22.5, 43.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3609, 5, '2016-08-10 22:04:55', 0, 532, 22.5, 43.5999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3611, 5, '2016-08-10 22:05:09', 0, 562, 22.5, 43.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3298, 5, '2016-08-10 21:27:49', 23, 566, 22.3999996, 43.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3300, 5, '2016-08-10 21:28:04', 23, 570, 22.3999996, 43.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3302, 5, '2016-08-10 21:28:18', 23, 548, 22.3999996, 43.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3304, 5, '2016-08-10 21:28:33', 23, 559, 22.3999996, 43.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3306, 5, '2016-08-10 21:28:43', 23, 537, 22.3999996, 43.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3308, 5, '2016-08-10 21:28:55', 23, 555, 22.3999996, 43.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3310, 5, '2016-08-10 21:29:08', 23, 586, 22.3999996, 43.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3312, 5, '2016-08-10 21:29:23', 23, 584, 22.3999996, 43.7999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3314, 5, '2016-08-10 21:29:38', 23, 566, 22.3999996, 43.7999992, 30983);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3316, 5, '2016-08-10 21:29:54', 23, 541, 22.3999996, 43.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3318, 5, '2016-08-10 21:30:06', 23, 544, 22.3999996, 43.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3320, 5, '2016-08-10 21:30:20', 23, 541, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3322, 5, '2016-08-10 21:30:35', 23, 568, 22.3999996, 43.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3324, 5, '2016-08-10 21:30:49', 23, 546, 22.3999996, 43.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3370, 5, '2016-08-10 21:36:27', 23, 510, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3372, 5, '2016-08-10 21:36:42', 23, 539, 22.3999996, 43.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3374, 5, '2016-08-10 21:36:55', 23, 573, 22.3999996, 43.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3376, 5, '2016-08-10 21:37:09', 23, 539, 22.3999996, 43.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3378, 3, '2016-08-10 21:37:18', 1, 574, 21.8999996, 46.0999985, 4246);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3380, 5, '2016-08-10 21:37:31', 23, 577, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3382, 5, '2016-08-10 21:37:40', 23, 544, 22.3999996, 43.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3384, 5, '2016-08-10 21:38:00', 23, 568, 22.3999996, 43.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3414, 5, '2016-08-10 21:41:28', 23, 551, 22.3999996, 43.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3416, 5, '2016-08-10 21:41:49', 23, 551, 22.3999996, 43.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3418, 5, '2016-08-10 21:42:04', 23, 577, 22.3999996, 43.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3420, 5, '2016-08-10 21:42:19', 23, 584, 22.3999996, 43.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3422, 5, '2016-08-10 21:42:33', 23, 577, 22.3999996, 43.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3478, 5, '2016-08-10 21:49:15', 23, 562, 22.3999996, 43.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3480, 5, '2016-08-10 21:49:33', 23, 551, 22.3999996, 43.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3482, 5, '2016-08-10 21:49:44', 23, 582, 22.3999996, 43.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3484, 5, '2016-08-10 21:49:58', 23, 588, 22.5, 43.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3486, 5, '2016-08-10 21:50:12', 23, 566, 22.5, 43.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3488, 5, '2016-08-10 21:50:27', 23, 514, 22.3999996, 43.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3490, 5, '2016-08-10 21:50:41', 23, 566, 22.3999996, 43.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3492, 5, '2016-08-10 21:50:56', 23, 532, 22.3999996, 43.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3494, 5, '2016-08-10 21:51:13', 23, 546, 22.3999996, 43.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3496, 5, '2016-08-10 21:51:24', 23, 555, 22.5, 43.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3500, 5, '2016-08-10 21:52:00', 23, 555, 22.5, 43.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3502, 5, '2016-08-10 21:52:14', 23, 566, 22.3999996, 43.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3504, 5, '2016-08-10 21:52:26', 23, 579, 22.5, 43.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3506, 3, '2016-08-10 21:52:28', 1, 588, 21.8999996, 46.2999992, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3508, 5, '2016-08-10 21:52:43', 23, 519, 22.3999996, 43.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3510, 5, '2016-08-10 21:52:58', 23, 553, 22.5, 43.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3512, 5, '2016-08-10 21:53:12', 23, 575, 22.5, 43.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3514, 5, '2016-08-10 21:53:26', 23, 557, 22.5, 43.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3516, 5, '2016-08-10 21:53:41', 23, 559, 22.5, 43.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3518, 2, '2016-08-10 21:53:49', 0, 526, 23.2000008, 42.5999985, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3520, 5, '2016-08-10 21:54:12', 23, 546, 22.5, 43.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3522, 5, '2016-08-10 21:54:23', 23, 579, 22.5, 43.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3524, 5, '2016-08-10 21:54:39', 23, 537, 22.5, 43.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3526, 5, '2016-08-10 21:54:52', 23, 557, 22.3999996, 43.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3528, 5, '2016-08-10 21:55:07', 23, 575, 22.5, 43.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3530, 5, '2016-08-10 21:55:22', 23, 535, 22.5, 43.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3532, 5, '2016-08-10 21:55:36', 23, 555, 22.5, 43.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3534, 5, '2016-08-10 21:55:49', 23, 555, 22.5, 43.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3536, 5, '2016-08-10 21:56:04', 23, 523, 22.5, 43.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3540, 5, '2016-08-10 21:56:33', 23, 548, 22.5, 43.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3542, 5, '2016-08-10 21:56:48', 23, 548, 22.5, 43.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3544, 5, '2016-08-10 21:57:01', 23, 555, 22.5, 43.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3546, 5, '2016-08-10 21:57:16', 23, 555, 22.5, 43.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3548, 5, '2016-08-10 21:57:31', 23, 577, 22.5, 43.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3550, 5, '2016-08-10 21:57:45', 23, 584, 22.5, 43.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3552, 5, '2016-08-10 21:58:01', 23, 546, 22.5, 43.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3554, 5, '2016-08-10 21:58:13', 23, 544, 22.5, 43.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3556, 5, '2016-08-10 21:58:28', 23, 566, 22.5, 43.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3558, 5, '2016-08-10 21:58:43', 23, 562, 22.5, 43.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3560, 5, '2016-08-10 21:58:57', 23, 535, 22.5, 43.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3562, 5, '2016-08-10 21:59:11', 23, 564, 22.5, 43.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3564, 1, '2016-08-10 21:59:18', 0, 532, 22, 45.2000008, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3566, 5, '2016-08-10 21:59:32', 23, 551, 22.5, 43.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3596, 5, '2016-08-10 22:03:22', 0, 559, 22.5, 43.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3598, 5, '2016-08-10 22:03:34', 0, 591, 22.5, 43.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3600, 5, '2016-08-10 22:03:50', 0, 555, 22.5, 43.5999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3602, 5, '2016-08-10 22:04:06', 0, 569, 22.5, 43.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3604, 5, '2016-08-10 22:04:19', 0, 582, 22.5, 43.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3606, 5, '2016-08-10 22:04:35', 0, 535, 22.5, 43.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3608, 5, '2016-08-10 22:04:49', 0, 535, 22.5, 43.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3610, 5, '2016-08-10 22:04:58', 0, 564, 22.5, 43.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3612, 5, '2016-08-10 22:05:17', 1, 521, 22.5, 43.5999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3613, 5, '2016-08-10 22:05:25', 0, 532, 22.5, 43.5999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3614, 5, '2016-08-10 22:05:31', 0, 568, 22.5, 43.5999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3615, 5, '2016-08-10 22:05:39', 0, 539, 22.5, 43.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3616, 5, '2016-08-10 22:05:46', 0, 530, 22.5, 43.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3617, 5, '2016-08-10 22:05:53', 0, 512, 22.5, 43.5999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3618, 5, '2016-08-10 22:06:15', 0, 575, 22.5, 43.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3619, 5, '2016-08-10 22:06:21', 0, 569, 22.5, 43.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3620, 5, '2016-08-10 22:06:28', 0, 568, 22.5, 43.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3621, 5, '2016-08-10 22:06:36', 0, 591, 22.5, 43.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3622, 5, '2016-08-10 22:06:43', 0, 576, 22.5, 43.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3623, 5, '2016-08-10 22:06:51', 0, 530, 22.5, 43.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3624, 5, '2016-08-10 22:06:58', 1, 568, 22.5, 43.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3625, 5, '2016-08-10 22:07:04', 1, 569, 22.5, 43.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3626, 5, '2016-08-10 22:07:12', 0, 577, 22.5, 43.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3627, 5, '2016-08-10 22:07:19', 0, 566, 22.5, 43.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3628, 5, '2016-08-10 22:07:27', 0, 562, 22.5, 43.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3629, 5, '2016-08-10 22:07:34', 0, 537, 22.5, 43.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3630, 5, '2016-08-10 22:07:36', 0, 535, 22.5, 43.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3631, 3, '2016-08-10 22:07:38', 1, 603, 21.8999996, 46.2999992, 5384);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3632, 3, '2016-08-10 22:07:41', 1, 603, 21.8999996, 46.2999992, 5384);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3633, 5, '2016-08-10 22:07:48', 0, 560, 22.5, 43.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3634, 5, '2016-08-10 22:07:55', 0, 562, 22.5, 43.5999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3635, 5, '2016-08-10 22:08:03', 0, 551, 22.5, 43.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3636, 5, '2016-08-10 22:08:10', 0, 557, 22.5, 43.5999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3637, 5, '2016-08-10 22:08:10', 0, 559, 22.5, 43.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3638, 5, '2016-08-10 22:08:24', 0, 555, 22.5, 43.5999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3639, 5, '2016-08-10 22:08:31', 0, 551, 22.5, 43.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3640, 5, '2016-08-10 22:08:39', 0, 573, 22.5, 43.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3641, 5, '2016-08-10 22:08:45', 0, 569, 22.5, 43.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3643, 5, '2016-08-10 22:08:59', 0, 528, 22.5, 43.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3645, 5, '2016-08-10 22:09:07', 0, 568, 22.5, 43.5999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3647, 5, '2016-08-10 22:09:22', 0, 578, 22.5, 43.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3649, 5, '2016-08-10 22:09:36', 0, 566, 22.5, 43.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3651, 5, '2016-08-10 22:09:57', 0, 566, 22.5, 43.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3653, 5, '2016-08-10 22:10:12', 1, 532, 22.5, 43.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3655, 5, '2016-08-10 22:10:27', 0, 573, 22.5, 43.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3657, 5, '2016-08-10 22:10:41', 0, 564, 22.5, 43.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3659, 5, '2016-08-10 22:10:54', 0, 553, 22.5, 43.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3671, 5, '2016-08-10 22:12:20', 0, 528, 22.5, 43.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3673, 5, '2016-08-10 22:12:42', 0, 555, 22.5, 43.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3675, 5, '2016-08-10 22:12:56', 0, 576, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3677, 5, '2016-08-10 22:13:12', 0, 555, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3679, 5, '2016-08-10 22:13:25', 0, 523, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3681, 5, '2016-08-10 22:13:36', 0, 573, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3683, 5, '2016-08-10 22:13:55', 0, 557, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3685, 5, '2016-08-10 22:14:02', 0, 557, 22.5, 43.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3697, 5, '2016-08-10 22:15:28', 0, 582, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3699, 5, '2016-08-10 22:15:42', 0, 521, 22.5, 43.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3701, 5, '2016-08-10 22:15:57', 0, 575, 22.5, 43.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3703, 5, '2016-08-10 22:16:10', 0, 553, 22.5, 43.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3705, 5, '2016-08-10 22:16:25', 0, 566, 22.5, 43.5, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3707, 5, '2016-08-10 22:16:40', 1, 594, 22.5, 43.5, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3721, 0, '2016-08-10 22:18:13', 0, 565, 22, 46.7999992, 4246);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3723, 5, '2016-08-10 22:18:27', 0, 541, 22.5, 43.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3725, 5, '2016-08-10 22:18:42', 0, 573, 22.5, 43.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3727, 5, '2016-08-10 22:18:57', 0, 592, 22.5, 43.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3729, 5, '2016-08-10 22:19:10', 0, 535, 22.5, 43.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3731, 5, '2016-08-10 22:19:24', 0, 512, 22.5, 43.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3733, 5, '2016-08-10 22:19:40', 0, 537, 22.5, 43.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3735, 5, '2016-08-10 22:19:54', 0, 557, 22.5, 43.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3737, 5, '2016-08-10 22:20:03', 0, 532, 22.5, 43.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3755, 5, '2016-08-10 22:22:17', 0, 535, 22.5, 43.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3757, 5, '2016-08-10 22:22:38', 0, 555, 22.5, 43.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3759, 5, '2016-08-10 22:22:47', 0, 564, 22.5, 43.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3761, 5, '2016-08-10 22:23:00', 0, 576, 22.5, 43.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3789, 5, '2016-08-10 22:26:22', 1, 544, 22.5, 43.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3791, 5, '2016-08-10 22:26:43', 0, 557, 22.5, 43.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3793, 5, '2016-08-10 22:26:57', 0, 578, 22.5, 43.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3849, 5, '2016-08-10 22:33:53', 0, 557, 22.5, 43.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3851, 5, '2016-08-10 22:34:08', 1, 553, 22.5, 43.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3853, 5, '2016-08-10 22:34:25', 0, 537, 22.5, 43.5, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3855, 5, '2016-08-10 22:34:44', 0, 539, 22.5, 43.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3857, 5, '2016-08-10 22:34:59', 0, 571, 22.5, 43.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3859, 5, '2016-08-10 22:35:13', 0, 564, 22.5, 43.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3861, 5, '2016-08-10 22:35:28', 0, 532, 22.5, 43.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3863, 5, '2016-08-10 22:35:41', 0, 555, 22.5, 43.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3865, 5, '2016-08-10 22:35:56', 1, 553, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3867, 5, '2016-08-10 22:36:10', 0, 562, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3869, 5, '2016-08-10 22:36:25', 0, 537, 22.5, 43.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3931, 5, '2016-08-10 22:43:50', 1, 519, 22.5, 43.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3937, 5, '2016-08-10 22:44:32', 0, 548, 22.5, 43.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3939, 5, '2016-08-10 22:44:49', 0, 517, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3941, 5, '2016-08-10 22:45:02', 0, 515, 22.5, 43.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3943, 5, '2016-08-10 22:45:16', 0, 542, 22.5, 43.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3975, 5, '2016-08-10 22:48:58', 0, 598, 22.5, 43.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3977, 5, '2016-08-10 22:49:13', 0, 544, 22.5, 43.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3979, 5, '2016-08-10 22:49:28', 0, 537, 22.5, 43.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3981, 5, '2016-08-10 22:49:43', 0, 548, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3983, 5, '2016-08-10 22:49:56', 0, 571, 22.5, 43.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3985, 5, '2016-08-10 22:50:10', 0, 500, 22.5, 43.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3987, 5, '2016-08-10 22:50:18', 1, 615, 22.5, 43.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3989, 5, '2016-08-10 22:50:41', 0, 576, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3991, 5, '2016-08-10 22:50:54', 0, 539, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3993, 5, '2016-08-10 22:51:08', 0, 548, 22.5, 43.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3995, 5, '2016-08-10 22:51:22', 0, 526, 22.5, 43.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3997, 5, '2016-08-10 22:51:36', 0, 564, 22.5, 43.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3999, 5, '2016-08-10 22:51:51', 0, 582, 22.5, 43.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4001, 5, '2016-08-10 22:52:06', 0, 511, 22.5, 43.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4003, 5, '2016-08-10 22:52:21', 0, 546, 22.5, 43.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4005, 5, '2016-08-10 22:52:34', 0, 531, 22.5, 43.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4007, 5, '2016-08-10 22:52:49', 0, 522, 22.5, 43.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4009, 5, '2016-08-10 22:53:03', 0, 560, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4011, 3, '2016-08-10 22:53:10', 1, 572, 21.8999996, 46.2000008, 2454);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4013, 5, '2016-08-10 22:53:18', 0, 551, 22.5, 43.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4015, 5, '2016-08-10 22:53:32', 1, 533, 22.5, 43.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4017, 5, '2016-08-10 22:53:43', 0, 555, 22.5, 43.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4019, 5, '2016-08-10 22:54:00', 0, 535, 22.5, 43.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4021, 5, '2016-08-10 22:54:14', 0, 566, 22.5, 43.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3642, 5, '2016-08-10 22:08:53', 0, 544, 22.5, 43.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3644, 2, '2016-08-10 22:09:00', 0, 489, 23.2999992, 42.5999985, 9875);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3646, 5, '2016-08-10 22:09:14', 0, 560, 22.5, 43.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3648, 5, '2016-08-10 22:09:29', 0, 573, 22.5, 43.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3650, 5, '2016-08-10 22:09:50', 0, 528, 22.5, 43.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3652, 5, '2016-08-10 22:10:05', 1, 559, 22.5, 43.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3654, 5, '2016-08-10 22:10:18', 0, 593, 22.5, 43.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3656, 5, '2016-08-10 22:10:33', 0, 530, 22.5, 43.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3658, 5, '2016-08-10 22:10:48', 0, 539, 22.5, 43.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3660, 5, '2016-08-10 22:11:02', 0, 557, 22.5, 43.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3662, 5, '2016-08-10 22:11:17', 0, 530, 22.5, 43.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3672, 5, '2016-08-10 22:12:35', 0, 510, 22.5, 43.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3676, 5, '2016-08-10 22:13:04', 0, 553, 22.5, 43.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3678, 5, '2016-08-10 22:13:18', 0, 546, 22.5, 43.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3680, 5, '2016-08-10 22:13:32', 0, 580, 22.5, 43.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3682, 5, '2016-08-10 22:13:47', 0, 544, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3684, 5, '2016-08-10 22:14:02', 0, 557, 22.5, 43.5, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3688, 1, '2016-08-10 22:14:28', 0, 500, 22, 45.2999992, 10313);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3690, 5, '2016-08-10 22:14:38', 0, 528, 22.5, 43.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3720, 5, '2016-08-10 22:18:11', 0, 546, 22.5, 43.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3722, 5, '2016-08-10 22:18:20', 0, 535, 22.5, 43.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3724, 5, '2016-08-10 22:18:34', 0, 555, 22.5, 43.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3726, 5, '2016-08-10 22:18:49', 0, 557, 22.5, 43.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3728, 5, '2016-08-10 22:19:04', 0, 553, 22.5, 43.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3730, 5, '2016-08-10 22:19:18', 0, 560, 22.5, 43.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3732, 5, '2016-08-10 22:19:33', 0, 532, 22.5, 43.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3748, 5, '2016-08-10 22:21:26', 1, 535, 22.5, 43.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3750, 5, '2016-08-10 22:21:42', 0, 555, 22.5, 43.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3764, 5, '2016-08-10 22:23:22', 0, 566, 22.5, 43.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3766, 5, '2016-08-10 22:23:36', 0, 514, 22.5, 43.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3768, 5, '2016-08-10 22:23:50', 0, 553, 22.5, 43.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3770, 5, '2016-08-10 22:24:04', 0, 551, 22.5, 43.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3780, 5, '2016-08-10 22:25:16', 0, 537, 22.5, 43.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3782, 5, '2016-08-10 22:25:30', 0, 521, 22.5, 43.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3784, 5, '2016-08-10 22:25:46', 0, 519, 22.5, 43.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3786, 5, '2016-08-10 22:25:59', 0, 525, 22.5, 43.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3788, 5, '2016-08-10 22:26:14', 1, 531, 22.5, 43.5, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3790, 5, '2016-08-10 22:26:35', 0, 580, 22.5, 43.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3792, 5, '2016-08-10 22:26:50', 0, 515, 22.5, 43.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3794, 5, '2016-08-10 22:27:05', 0, 557, 22.5, 43.5, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3814, 5, '2016-08-10 22:29:36', 0, 544, 22.5, 43.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3816, 1, '2016-08-10 22:29:43', 0, 550, 22, 45.2000008, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3818, 5, '2016-08-10 22:29:57', 0, 560, 22.5, 43.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3820, 5, '2016-08-10 22:30:11', 0, 546, 22.5, 43.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3822, 5, '2016-08-10 22:30:25', 0, 504, 22.5, 43.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3824, 5, '2016-08-10 22:30:47', 0, 555, 22.5, 43.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3826, 5, '2016-08-10 22:31:02', 1, 492, 22.5, 43.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3828, 5, '2016-08-10 22:31:15', 0, 526, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3830, 5, '2016-08-10 22:31:30', 0, 539, 22.5, 43.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3832, 5, '2016-08-10 22:31:51', 0, 573, 22.5, 43.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3834, 5, '2016-08-10 22:32:05', 0, 535, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3836, 5, '2016-08-10 22:32:20', 0, 521, 22.5, 43.5, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3838, 5, '2016-08-10 22:32:42', 0, 564, 22.5, 43.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3840, 5, '2016-08-10 22:32:56', 0, 576, 22.5, 43.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3866, 5, '2016-08-10 22:36:03', 0, 566, 22.5, 43.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3868, 5, '2016-08-10 22:36:17', 0, 519, 22.5, 43.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3870, 5, '2016-08-10 22:36:32', 0, 557, 22.5, 43.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3872, 5, '2016-08-10 22:36:53', 0, 566, 22.5, 43.5, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3874, 5, '2016-08-10 22:37:07', 0, 553, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3876, 5, '2016-08-10 22:37:22', 0, 544, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3878, 5, '2016-08-10 22:37:37', 0, 546, 22.5, 43.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3880, 5, '2016-08-10 22:37:51', 0, 562, 22.5, 43.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3882, 5, '2016-08-10 22:37:58', 0, 546, 22.5, 43.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3884, 5, '2016-08-10 22:38:13', 0, 546, 22.5, 43.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3886, 5, '2016-08-10 22:38:28', 0, 562, 22.5, 43.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3888, 5, '2016-08-10 22:38:39', 0, 548, 22.5, 43.4000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3890, 5, '2016-08-10 22:38:56', 1, 555, 22.5, 43.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3892, 5, '2016-08-10 22:39:10', 0, 542, 22.5, 43.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3898, 5, '2016-08-10 22:39:46', 0, 562, 22.5, 43.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3900, 5, '2016-08-10 22:40:00', 0, 562, 22.5, 43.4000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3902, 5, '2016-08-10 22:40:17', 0, 562, 22.5, 43.4000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3914, 5, '2016-08-10 22:41:40', 0, 557, 22.5, 43.4000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3916, 5, '2016-08-10 22:41:54', 0, 531, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3918, 5, '2016-08-10 22:42:09', 0, 548, 22.5, 43.4000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3920, 5, '2016-08-10 22:42:24', 0, 513, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3922, 5, '2016-08-10 22:42:38', 0, 560, 22.5, 43.4000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3924, 5, '2016-08-10 22:43:00', 0, 522, 22.5, 43.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3926, 5, '2016-08-10 22:43:14', 0, 541, 22.5, 43.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3928, 5, '2016-08-10 22:43:29', 0, 513, 22.5, 43.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3932, 5, '2016-08-10 22:43:57', 1, 578, 22.5, 43.4000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3934, 5, '2016-08-10 22:44:11', 0, 566, 22.5, 43.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3936, 5, '2016-08-10 22:44:26', 0, 592, 22.5, 43.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3938, 5, '2016-08-10 22:44:41', 0, 524, 22.5, 43.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3940, 1, '2016-08-10 22:44:55', 0, 547, 22, 45.2000008, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3942, 5, '2016-08-10 22:45:08', 0, 564, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3946, 5, '2016-08-10 22:45:37', 1, 542, 22.5, 43.4000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3948, 5, '2016-08-10 22:45:54', 0, 539, 22.5, 43.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3950, 5, '2016-08-10 22:46:07', 0, 569, 22.5, 43.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3952, 5, '2016-08-10 22:46:20', 0, 528, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3954, 5, '2016-08-10 22:46:37', 0, 569, 22.5, 43.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3956, 5, '2016-08-10 22:46:49', 0, 557, 22.5, 43.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3958, 5, '2016-08-10 22:47:05', 0, 509, 22.5, 43.4000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3960, 5, '2016-08-10 22:47:18', 0, 573, 22.5, 43.4000015, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3962, 5, '2016-08-10 22:47:32', 0, 498, 22.5, 43.4000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3964, 5, '2016-08-10 22:47:47', 0, 557, 22.5, 43.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3966, 5, '2016-08-10 22:48:02', 0, 515, 22.5, 43.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3968, 5, '2016-08-10 22:48:16', 0, 528, 22.5, 43.4000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3970, 5, '2016-08-10 22:48:30', 0, 569, 22.5, 43.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3972, 0, '2016-08-10 22:48:38', 0, 554, 22, 46.5999985, 4370);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4002, 5, '2016-08-10 22:52:12', 0, 533, 22.5, 43.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4004, 5, '2016-08-10 22:52:27', 0, 533, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4006, 5, '2016-08-10 22:52:41', 0, 539, 22.5, 43.2999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4008, 5, '2016-08-10 22:52:57', 0, 548, 22.5, 43.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4010, 5, '2016-08-10 22:53:09', 0, 553, 22.5, 43.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4012, 3, '2016-08-10 22:53:11', 1, 572, 21.8999996, 46.2000008, 2454);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4014, 5, '2016-08-10 22:53:24', 1, 560, 22.5, 43.2999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3661, 5, '2016-08-10 22:11:09', 0, 514, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3663, 5, '2016-08-10 22:11:23', 0, 537, 22.5, 43.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3665, 5, '2016-08-10 22:11:39', 0, 564, 22.5, 43.5999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3667, 5, '2016-08-10 22:11:52', 1, 539, 22.5, 43.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3669, 5, '2016-08-10 22:12:06', 0, 516, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3687, 5, '2016-08-10 22:14:27', 0, 562, 22.5, 43.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3689, 1, '2016-08-10 22:14:30', 0, 500, 22, 45.2999992, 10313);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3691, 5, '2016-08-10 22:14:44', 0, 539, 22.5, 43.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3693, 5, '2016-08-10 22:14:58', 1, 584, 22.5, 43.5, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3695, 5, '2016-08-10 22:15:13', 0, 530, 22.5, 43.5, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3709, 5, '2016-08-10 22:16:54', 0, 530, 22.5, 43.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3711, 5, '2016-08-10 22:17:08', 0, 580, 22.5, 43.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3713, 5, '2016-08-10 22:17:23', 0, 551, 22.5, 43.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3715, 5, '2016-08-10 22:17:38', 0, 553, 22.5, 43.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3717, 5, '2016-08-10 22:17:52', 0, 551, 22.5, 43.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3719, 5, '2016-08-10 22:18:06', 0, 555, 22.5, 43.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3739, 5, '2016-08-10 22:20:23', 0, 546, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3741, 5, '2016-08-10 22:20:36', 0, 541, 22.5, 43.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3743, 5, '2016-08-10 22:20:51', 0, 571, 22.5, 43.5, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3745, 5, '2016-08-10 22:21:06', 0, 519, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3747, 5, '2016-08-10 22:21:20', 0, 569, 22.5, 43.5, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3749, 5, '2016-08-10 22:21:34', 1, 566, 22.5, 43.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3751, 5, '2016-08-10 22:21:48', 0, 560, 22.5, 43.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3753, 5, '2016-08-10 22:22:03', 0, 580, 22.5, 43.5, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3763, 5, '2016-08-10 22:23:14', 0, 592, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3765, 5, '2016-08-10 22:23:29', 0, 548, 22.5, 43.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3767, 5, '2016-08-10 22:23:38', 0, 557, 22.5, 43.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3769, 5, '2016-08-10 22:24:00', 0, 514, 22.5, 43.5, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3771, 5, '2016-08-10 22:24:10', 0, 544, 22.5, 43.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3773, 5, '2016-08-10 22:24:20', 0, 500, 22.5, 43.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3775, 5, '2016-08-10 22:24:41', 1, 548, 22.5, 43.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3777, 5, '2016-08-10 22:24:55', 0, 531, 22.5, 43.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3779, 5, '2016-08-10 22:25:12', 0, 530, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3781, 5, '2016-08-10 22:25:24', 0, 555, 22.5, 43.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3783, 5, '2016-08-10 22:25:38', 0, 537, 22.5, 43.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3785, 5, '2016-08-10 22:25:53', 0, 548, 22.5, 43.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3787, 5, '2016-08-10 22:26:07', 0, 580, 22.5, 43.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3795, 5, '2016-08-10 22:27:12', 0, 569, 22.5, 43.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3797, 5, '2016-08-10 22:27:25', 0, 524, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3799, 5, '2016-08-10 22:27:48', 0, 555, 22.5, 43.5, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3801, 5, '2016-08-10 22:28:01', 0, 566, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3803, 5, '2016-08-10 22:28:15', 0, 596, 22.5, 43.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3805, 5, '2016-08-10 22:28:30', 0, 537, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3807, 5, '2016-08-10 22:28:45', 0, 514, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3809, 5, '2016-08-10 22:29:00', 0, 560, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3811, 5, '2016-08-10 22:29:13', 0, 537, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3813, 5, '2016-08-10 22:29:27', 1, 601, 22.5, 43.5, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3815, 5, '2016-08-10 22:29:38', 0, 528, 22.5, 43.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3817, 5, '2016-08-10 22:29:49', 0, 562, 22.5, 43.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3819, 5, '2016-08-10 22:30:03', 0, 612, 22.5, 43.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3821, 5, '2016-08-10 22:30:19', 0, 539, 22.5, 43.5, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3823, 5, '2016-08-10 22:30:39', 0, 539, 22.5, 43.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3825, 5, '2016-08-10 22:30:54', 0, 557, 22.5, 43.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3827, 5, '2016-08-10 22:31:09', 1, 533, 22.5, 43.5, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3829, 5, '2016-08-10 22:31:23', 0, 535, 22.5, 43.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3831, 5, '2016-08-10 22:31:38', 0, 571, 22.5, 43.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3833, 5, '2016-08-10 22:31:59', 0, 539, 22.5, 43.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3835, 5, '2016-08-10 22:32:10', 0, 555, 22.5, 43.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3837, 5, '2016-08-10 22:32:27', 0, 578, 22.5, 43.5, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3839, 5, '2016-08-10 22:32:49', 0, 528, 22.5, 43.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3841, 5, '2016-08-10 22:33:03', 0, 551, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3843, 5, '2016-08-10 22:33:18', 0, 564, 22.5, 43.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3845, 0, '2016-08-10 22:33:26', 0, 533, 22, 46.7000008, 4448);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3847, 5, '2016-08-10 22:33:39', 0, 555, 22.5, 43.5, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3871, 5, '2016-08-10 22:36:46', 0, 560, 22.5, 43.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3873, 5, '2016-08-10 22:37:01', 0, 580, 22.5, 43.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3875, 5, '2016-08-10 22:37:15', 0, 553, 22.5, 43.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3877, 5, '2016-08-10 22:37:29', 0, 513, 22.5, 43.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3879, 5, '2016-08-10 22:37:43', 0, 523, 22.5, 43.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3881, 5, '2016-08-10 22:37:58', 0, 531, 22.5, 43.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3883, 3, '2016-08-10 22:38:05', 1, 603, 21.8999996, 46.2000008, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3885, 5, '2016-08-10 22:38:19', 0, 541, 22.5, 43.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3887, 5, '2016-08-10 22:38:34', 0, 546, 22.5, 43.4000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3889, 5, '2016-08-10 22:38:41', 0, 557, 22.5, 43.4000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3891, 5, '2016-08-10 22:39:03', 1, 592, 22.5, 43.4000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3893, 5, '2016-08-10 22:39:18', 0, 515, 22.5, 43.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3895, 2, '2016-08-10 22:39:25', 1, 507, 23.3999996, 42.4000015, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3897, 5, '2016-08-10 22:39:38', 0, 542, 22.5, 43.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3899, 5, '2016-08-10 22:39:53', 0, 580, 22.5, 43.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3901, 5, '2016-08-10 22:40:07', 0, 560, 22.5, 43.4000015, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3903, 5, '2016-08-10 22:40:22', 0, 564, 22.5, 43.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3905, 5, '2016-08-10 22:40:36', 0, 544, 22.5, 43.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3907, 5, '2016-08-10 22:40:51', 0, 551, 22.5, 43.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3909, 5, '2016-08-10 22:41:05', 0, 576, 22.5, 43.4000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3911, 5, '2016-08-10 22:41:15', 0, 539, 22.5, 43.4000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3913, 5, '2016-08-10 22:41:33', 0, 580, 22.5, 43.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3915, 5, '2016-08-10 22:41:47', 0, 544, 22.5, 43.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3917, 5, '2016-08-10 22:42:02', 0, 569, 22.5, 43.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3919, 5, '2016-08-10 22:42:17', 0, 569, 22.5, 43.4000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3921, 5, '2016-08-10 22:42:30', 0, 531, 22.5, 43.4000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3923, 5, '2016-08-10 22:42:53', 0, 531, 22.5, 43.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3925, 5, '2016-08-10 22:43:06', 0, 535, 22.5, 43.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3927, 5, '2016-08-10 22:43:21', 0, 533, 22.5, 43.4000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3929, 5, '2016-08-10 22:43:36', 0, 522, 22.5, 43.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3933, 5, '2016-08-10 22:44:05', 0, 578, 22.5, 43.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3935, 5, '2016-08-10 22:44:18', 0, 571, 22.5, 43.4000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3945, 5, '2016-08-10 22:45:32', 1, 569, 22.5, 43.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3947, 5, '2016-08-10 22:45:45', 0, 573, 22.5, 43.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3949, 5, '2016-08-10 22:45:58', 0, 553, 22.5, 43.4000015, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3951, 5, '2016-08-10 22:46:13', 0, 539, 22.5, 43.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3953, 5, '2016-08-10 22:46:29', 0, 515, 22.5, 43.4000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3955, 5, '2016-08-10 22:46:43', 0, 531, 22.5, 43.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3957, 5, '2016-08-10 22:46:56', 0, 582, 22.5, 43.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3959, 5, '2016-08-10 22:47:05', 0, 562, 22.5, 43.4000015, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3961, 5, '2016-08-10 22:47:25', 0, 555, 22.5, 43.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3963, 5, '2016-08-10 22:47:40', 0, 541, 22.5, 43.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3965, 5, '2016-08-10 22:47:56', 0, 537, 22.5, 43.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3664, 5, '2016-08-10 22:11:30', 0, 575, 22.5, 43.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3666, 5, '2016-08-10 22:11:44', 0, 532, 22.5, 43.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3668, 5, '2016-08-10 22:12:00', 1, 514, 22.5, 43.5, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3670, 5, '2016-08-10 22:12:14', 0, 569, 22.5, 43.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3674, 5, '2016-08-10 22:12:50', 0, 530, 22.5, 43.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3686, 5, '2016-08-10 22:14:22', 0, 569, 22.5, 43.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3692, 5, '2016-08-10 22:14:52', 1, 544, 22.5, 43.5, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3694, 5, '2016-08-10 22:15:06', 0, 544, 22.5, 43.5, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3696, 5, '2016-08-10 22:15:21', 0, 582, 22.5, 43.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3698, 5, '2016-08-10 22:15:34', 0, 525, 22.5, 43.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3700, 5, '2016-08-10 22:15:49', 0, 551, 22.5, 43.5, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3702, 5, '2016-08-10 22:16:04', 0, 519, 22.5, 43.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3704, 5, '2016-08-10 22:16:18', 0, 555, 22.5, 43.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3706, 5, '2016-08-10 22:16:33', 0, 562, 22.5, 43.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3708, 5, '2016-08-10 22:16:46', 1, 512, 22.5, 43.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3710, 5, '2016-08-10 22:17:01', 0, 539, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3712, 5, '2016-08-10 22:17:16', 0, 578, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3714, 5, '2016-08-10 22:17:30', 0, 548, 22.5, 43.5, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3716, 5, '2016-08-10 22:17:45', 0, 573, 22.5, 43.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3718, 5, '2016-08-10 22:17:58', 0, 578, 22.5, 43.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3734, 5, '2016-08-10 22:19:47', 1, 525, 22.5, 43.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3736, 5, '2016-08-10 22:20:00', 0, 532, 22.5, 43.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3738, 5, '2016-08-10 22:20:15', 0, 585, 22.5, 43.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3740, 5, '2016-08-10 22:20:29', 0, 555, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3742, 5, '2016-08-10 22:20:44', 0, 551, 22.5, 43.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3744, 5, '2016-08-10 22:20:58', 0, 571, 22.5, 43.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3746, 5, '2016-08-10 22:21:12', 0, 560, 22.5, 43.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3752, 5, '2016-08-10 22:21:56', 0, 560, 22.5, 43.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3754, 5, '2016-08-10 22:22:09', 0, 553, 22.5, 43.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3756, 5, '2016-08-10 22:22:31', 0, 594, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3758, 5, '2016-08-10 22:22:46', 0, 551, 22.5, 43.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3760, 3, '2016-08-10 22:22:54', 1, 624, 21.8999996, 46.2999992, 4872);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3762, 5, '2016-08-10 22:23:06', 0, 541, 22.5, 43.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3772, 2, '2016-08-10 22:24:12', 1, 515, 23.2999992, 42.5, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3774, 5, '2016-08-10 22:24:34', 0, 546, 22.5, 43.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3776, 5, '2016-08-10 22:24:48', 0, 571, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3778, 5, '2016-08-10 22:25:02', 0, 539, 22.5, 43.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3796, 5, '2016-08-10 22:27:18', 0, 541, 22.5, 43.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3798, 5, '2016-08-10 22:27:40', 0, 509, 22.5, 43.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3800, 5, '2016-08-10 22:27:55', 0, 517, 22.5, 43.5, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3802, 5, '2016-08-10 22:28:09', 0, 569, 22.5, 43.5, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3804, 5, '2016-08-10 22:28:24', 0, 569, 22.5, 43.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3806, 5, '2016-08-10 22:28:30', 0, 504, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3808, 5, '2016-08-10 22:28:51', 0, 544, 22.5, 43.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3810, 5, '2016-08-10 22:29:03', 0, 562, 22.5, 43.5, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3812, 5, '2016-08-10 22:29:22', 1, 548, 22.5, 43.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3842, 5, '2016-08-10 22:33:11', 0, 553, 22.5, 43.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3844, 5, '2016-08-10 22:33:22', 0, 513, 22.5, 43.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3846, 5, '2016-08-10 22:33:32', 0, 542, 22.5, 43.5, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3848, 5, '2016-08-10 22:33:40', 0, 569, 22.5, 43.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3850, 5, '2016-08-10 22:34:01', 0, 548, 22.5, 43.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3852, 5, '2016-08-10 22:34:15', 1, 530, 22.5, 43.5, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3854, 5, '2016-08-10 22:34:29', 0, 530, 22.5, 43.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3856, 5, '2016-08-10 22:34:51', 0, 582, 22.5, 43.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3858, 5, '2016-08-10 22:35:05', 0, 528, 22.5, 43.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3860, 5, '2016-08-10 22:35:20', 0, 528, 22.5, 43.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3862, 5, '2016-08-10 22:35:35', 0, 546, 22.5, 43.5, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3864, 5, '2016-08-10 22:35:51', 1, 528, 22.5, 43.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3894, 5, '2016-08-10 22:39:22', 0, 569, 22.5, 43.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3896, 5, '2016-08-10 22:39:31', 0, 569, 22.5, 43.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3904, 5, '2016-08-10 22:40:29', 0, 573, 22.5, 43.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3906, 5, '2016-08-10 22:40:43', 1, 553, 22.5, 43.4000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3908, 5, '2016-08-10 22:40:58', 0, 551, 22.5, 43.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3910, 5, '2016-08-10 22:41:12', 0, 548, 22.5, 43.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3912, 5, '2016-08-10 22:41:27', 0, 562, 22.5, 43.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3930, 5, '2016-08-10 22:43:42', 0, 576, 22.5, 43.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3944, 5, '2016-08-10 22:45:22', 0, 548, 22.5, 43.4000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3974, 5, '2016-08-10 22:48:50', 0, 542, 22.5, 43.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3976, 5, '2016-08-10 22:49:06', 0, 557, 22.5, 43.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3978, 5, '2016-08-10 22:49:20', 0, 528, 22.5, 43.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3980, 5, '2016-08-10 22:49:34', 0, 542, 22.5, 43.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3982, 5, '2016-08-10 22:49:48', 0, 573, 22.5, 43.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3984, 5, '2016-08-10 22:50:03', 0, 562, 22.5, 43.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3986, 5, '2016-08-10 22:50:18', 1, 555, 22.5, 43.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3988, 5, '2016-08-10 22:50:31', 0, 539, 22.5, 43.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3990, 5, '2016-08-10 22:50:46', 0, 537, 22.5, 43.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3992, 5, '2016-08-10 22:51:01', 0, 513, 22.5, 43.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3994, 5, '2016-08-10 22:51:16', 0, 553, 22.5, 43.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3996, 5, '2016-08-10 22:51:30', 0, 571, 22.5, 43.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3998, 5, '2016-08-10 22:51:44', 0, 594, 22.5, 43.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4000, 5, '2016-08-10 22:51:58', 0, 578, 22.5, 43.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4016, 5, '2016-08-10 22:53:39', 0, 507, 22.5, 43.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4018, 5, '2016-08-10 22:53:54', 0, 560, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4020, 5, '2016-08-10 22:54:08', 0, 557, 22.5, 43.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3967, 5, '2016-08-10 22:48:08', 0, 542, 22.5, 43.4000015, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3969, 5, '2016-08-10 22:48:22', 0, 589, 22.5, 43.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3971, 5, '2016-08-10 22:48:33', 1, 562, 22.5, 43.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (3973, 5, '2016-08-10 22:48:44', 1, 562, 22.5, 43.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4022, 5, '2016-08-10 22:54:22', 0, 524, 22.5, 43.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4023, 5, '2016-08-10 22:54:29', 0, 542, 22.5, 43.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4024, 5, '2016-08-10 22:54:32', 0, 524, 22.5, 43.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4025, 2, '2016-08-10 22:54:36', 1, 524, 23.2999992, 42.2999992, 4114);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4026, 5, '2016-08-10 22:54:43', 0, 533, 22.5, 43.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4027, 5, '2016-08-10 22:54:50', 0, 553, 22.5, 43.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4028, 5, '2016-08-10 22:54:58', 0, 560, 22.5, 43.2999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4029, 5, '2016-08-10 22:55:05', 1, 571, 22.5, 43.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4030, 5, '2016-08-10 22:55:11', 1, 601, 22.5, 43.2999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4031, 5, '2016-08-10 22:55:19', 0, 569, 22.5, 43.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4032, 5, '2016-08-10 22:55:26', 0, 533, 22.5, 43.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4033, 5, '2016-08-10 22:55:33', 0, 522, 22.5, 43.2999992, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4034, 5, '2016-08-10 22:55:41', 0, 544, 22.5, 43.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4035, 5, '2016-08-10 22:55:47', 0, 578, 22.5, 43.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4036, 5, '2016-08-10 22:55:56', 0, 580, 22.5, 43.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4037, 5, '2016-08-10 22:56:02', 0, 537, 22.5, 43.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4038, 5, '2016-08-10 22:56:07', 0, 511, 22.5, 43.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4039, 5, '2016-08-10 22:56:17', 0, 542, 22.5, 43.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4040, 5, '2016-08-10 22:56:24', 0, 562, 22.5, 43.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4041, 5, '2016-08-10 22:56:31', 0, 555, 22.5, 43.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4042, 5, '2016-08-10 22:56:38', 0, 557, 22.5, 43.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4043, 5, '2016-08-10 22:56:45', 0, 573, 22.5, 43.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4044, 5, '2016-08-10 22:56:52', 0, 539, 22.5, 43.2999992, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4045, 5, '2016-08-10 22:57:08', 0, 553, 22.5, 43.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4046, 5, '2016-08-10 22:57:14', 0, 528, 22.5, 43.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4047, 5, '2016-08-10 22:57:22', 0, 544, 22.5, 43.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4048, 5, '2016-08-10 22:57:29', 0, 522, 22.5, 43.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4049, 5, '2016-08-10 22:57:35', 0, 537, 22.5, 43.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4050, 5, '2016-08-10 22:57:44', 0, 564, 22.5, 43.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4051, 5, '2016-08-10 22:57:50', 0, 524, 22.5, 43.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4052, 5, '2016-08-10 22:57:58', 0, 589, 22.5, 43.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4053, 5, '2016-08-10 22:58:05', 0, 551, 22.5, 43.2999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4054, 5, '2016-08-10 22:58:11', 0, 557, 22.5, 43.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4055, 5, '2016-08-10 22:58:19', 1, 566, 22.5, 43.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4056, 5, '2016-08-10 22:58:26', 0, 560, 22.5, 43.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4057, 5, '2016-08-10 22:58:33', 0, 566, 22.5, 43.2999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4058, 5, '2016-08-10 22:58:41', 0, 535, 22.5, 43.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4059, 5, '2016-08-10 22:58:47', 0, 542, 22.5, 43.2999992, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4060, 5, '2016-08-10 22:58:56', 0, 533, 22.5, 43.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4061, 5, '2016-08-10 22:58:59', 0, 551, 22.5, 43.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4062, 5, '2016-08-10 22:59:09', 0, 542, 22.5, 43.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4063, 5, '2016-08-10 22:59:16', 0, 571, 22.5, 43.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4064, 5, '2016-08-10 22:59:23', 0, 548, 22.5, 43.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4065, 5, '2016-08-10 22:59:32', 0, 546, 22.5, 43.2999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4066, 5, '2016-08-10 22:59:38', 0, 553, 22.5, 43.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4067, 5, '2016-08-10 22:59:45', 0, 555, 22.5, 43.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4068, 5, '2016-08-10 22:59:51', 0, 548, 22.5, 43.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4069, 5, '2016-08-10 23:00:00', 1, 562, 22.5, 43.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4070, 1, '2016-08-10 23:00:01', 0, 529, 22, 45.2000008, 4608);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4071, 5, '2016-08-10 23:00:06', 1, 553, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4072, 5, '2016-08-10 23:00:13', 0, 562, 22.5, 43.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4073, 5, '2016-08-10 23:00:23', 0, 502, 22.5, 43.2999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4074, 5, '2016-08-10 23:00:27', 0, 571, 22.5, 43.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4075, 5, '2016-08-10 23:00:35', 0, 502, 22.5, 43.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4076, 5, '2016-08-10 23:00:43', 0, 551, 22.5, 43.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4077, 5, '2016-08-10 23:00:49', 0, 564, 22.5, 43.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4078, 5, '2016-08-10 23:00:57', 0, 500, 22.5, 43.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4079, 5, '2016-08-10 23:01:11', 0, 522, 22.5, 43.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4080, 5, '2016-08-10 23:01:18', 0, 537, 22.5, 43.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4081, 5, '2016-08-10 23:01:25', 0, 580, 22.5, 43.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4082, 5, '2016-08-10 23:01:33', 0, 539, 22.5, 43.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4083, 5, '2016-08-10 23:01:39', 0, 524, 22.5, 43.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4084, 5, '2016-08-10 23:01:47', 0, 548, 22.5, 43.2999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4085, 5, '2016-08-10 23:01:55', 0, 515, 22.5, 43.2999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4086, 5, '2016-08-10 23:02:01', 0, 522, 22.5, 43.2999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4087, 5, '2016-08-10 23:02:09', 0, 562, 22.5, 43.2999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4088, 5, '2016-08-10 23:02:16', 0, 564, 22.5, 43.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4089, 5, '2016-08-10 23:02:23', 0, 528, 22.5, 43.2999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4090, 5, '2016-08-10 23:02:31', 0, 537, 22.5, 43.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4091, 5, '2016-08-10 23:02:37', 0, 531, 22.5, 43.2999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4092, 5, '2016-08-10 23:02:45', 0, 546, 22.5, 43.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4093, 5, '2016-08-10 23:02:52', 0, 555, 22.5, 43.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4094, 5, '2016-08-10 23:03:00', 0, 509, 22.5, 43.2999992, 32885);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4095, 5, '2016-08-10 23:03:06', 1, 555, 22.5, 43.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4096, 5, '2016-08-10 23:03:14', 0, 564, 22.5, 43.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4097, 5, '2016-08-10 23:03:20', 0, 569, 22.5, 43.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4098, 5, '2016-08-10 23:03:27', 0, 564, 22.5, 43.2999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4099, 5, '2016-08-10 23:03:35', 0, 542, 22.5, 43.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4100, 5, '2016-08-10 23:03:42', 0, 587, 22.5, 43.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4101, 5, '2016-08-10 23:03:43', 0, 519, 22.5, 43.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4102, 0, '2016-08-10 23:03:44', 0, 551, 22, 46.5, 5248);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4103, 0, '2016-08-10 23:03:44', 0, 551, 22, 46.5, 5248);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4104, 5, '2016-08-10 23:03:57', 0, 560, 22.5, 43.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4105, 5, '2016-08-10 23:04:03', 0, 515, 22.5, 43.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4106, 5, '2016-08-10 23:04:11', 0, 560, 22.5, 43.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4107, 5, '2016-08-10 23:04:18', 0, 551, 22.5, 43.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4108, 5, '2016-08-10 23:04:24', 0, 596, 22.5, 43.2999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4109, 5, '2016-08-10 23:04:32', 0, 573, 22.5, 43.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4110, 5, '2016-08-10 23:04:39', 0, 560, 22.5, 43.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4111, 5, '2016-08-10 23:04:47', 1, 522, 22.5, 43.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4112, 5, '2016-08-10 23:04:53', 1, 582, 22.5, 43.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4113, 5, '2016-08-10 23:05:01', 0, 553, 22.5, 43.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4114, 5, '2016-08-10 23:05:07', 0, 537, 22.5, 43.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4115, 5, '2016-08-10 23:05:15', 0, 513, 22.5, 43.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4116, 5, '2016-08-10 23:05:23', 0, 546, 22.5, 43.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4117, 5, '2016-08-10 23:05:30', 0, 524, 22.5, 43.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4118, 5, '2016-08-10 23:05:36', 0, 578, 22.5, 43.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4119, 5, '2016-08-10 23:05:44', 0, 531, 22.5, 43.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4120, 5, '2016-08-10 23:05:51', 0, 562, 22.5, 43.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4121, 5, '2016-08-10 23:05:59', 0, 578, 22.5, 43.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4122, 5, '2016-08-10 23:06:05', 0, 535, 22.5, 43.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4123, 5, '2016-08-10 23:06:13', 0, 555, 22.5, 43.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4124, 5, '2016-08-10 23:06:20', 0, 502, 22.5, 43.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4125, 5, '2016-08-10 23:06:27', 0, 569, 22.5, 43.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4127, 5, '2016-08-10 23:06:41', 0, 522, 22.5, 43.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4141, 3, '2016-08-10 23:08:23', 1, 566, 21.8999996, 46.0999985, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4143, 5, '2016-08-10 23:08:36', 0, 524, 22.5, 43.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4145, 5, '2016-08-10 23:08:50', 0, 533, 22.5, 43.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4147, 5, '2016-08-10 23:09:04', 0, 533, 22.5, 43.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4149, 5, '2016-08-10 23:09:20', 0, 509, 22.5, 43.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4151, 5, '2016-08-10 23:09:34', 1, 569, 22.5, 43.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4153, 5, '2016-08-10 23:09:43', 0, 544, 22.5, 43.2000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4155, 5, '2016-08-10 23:09:55', 0, 513, 22.5, 43.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4157, 5, '2016-08-10 23:10:10', 0, 522, 22.5, 43.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4159, 5, '2016-08-10 23:10:24', 0, 546, 22.5, 43.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4161, 5, '2016-08-10 23:10:38', 0, 548, 22.5, 43.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4163, 5, '2016-08-10 23:10:52', 0, 548, 22.5, 43.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4165, 5, '2016-08-10 23:11:08', 0, 566, 22.5, 43.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4195, 5, '2016-08-10 23:14:50', 0, 542, 22.5, 43.2000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4205, 5, '2016-08-10 23:15:48', 0, 502, 22.5, 43.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4207, 5, '2016-08-10 23:16:02', 0, 576, 22.5, 43.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4209, 5, '2016-08-10 23:16:16', 0, 531, 22.5, 43.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4211, 5, '2016-08-10 23:16:30', 0, 531, 22.5, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4213, 5, '2016-08-10 23:16:44', 0, 537, 22.5, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4215, 5, '2016-08-10 23:16:59', 0, 564, 22.5, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4217, 5, '2016-08-10 23:17:14', 0, 533, 22.5, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4219, 5, '2016-08-10 23:17:28', 1, 546, 22.5, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4221, 5, '2016-08-10 23:17:42', 0, 551, 22.5, 43.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4223, 5, '2016-08-10 23:17:57', 0, 580, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4225, 5, '2016-08-10 23:18:11', 0, 560, 22.5, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4227, 5, '2016-08-10 23:18:25', 0, 533, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4229, 5, '2016-08-10 23:18:40', 0, 553, 22.5, 43.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4231, 5, '2016-08-10 23:18:54', 0, 573, 22.5, 43.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4247, 5, '2016-08-10 23:20:49', 0, 533, 22.5, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4249, 5, '2016-08-10 23:21:03', 0, 531, 22.5, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4251, 5, '2016-08-10 23:21:17', 0, 511, 22.5, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4253, 5, '2016-08-10 23:21:39', 0, 539, 22.5, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4255, 5, '2016-08-10 23:21:54', 0, 535, 22.5, 43.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4257, 5, '2016-08-10 23:22:07', 0, 548, 22.5, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4263, 5, '2016-08-10 23:22:51', 0, 535, 22.5, 43.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4265, 5, '2016-08-10 23:23:05', 0, 553, 22.5, 43.0999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4267, 5, '2016-08-10 23:23:19', 0, 598, 22.5, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4269, 5, '2016-08-10 23:23:31', 0, 515, 22.5, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4271, 5, '2016-08-10 23:23:42', 0, 539, 22.5, 43.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4273, 5, '2016-08-10 23:23:55', 1, 515, 22.5, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4275, 5, '2016-08-10 23:24:09', 0, 551, 22.5, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4277, 5, '2016-08-10 23:24:25', 0, 564, 22.5, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4305, 5, '2016-08-10 23:27:54', 0, 544, 22.5, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4307, 5, '2016-08-10 23:28:07', 0, 566, 22.5, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4309, 5, '2016-08-10 23:28:21', 0, 553, 22.5, 43.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4311, 5, '2016-08-10 23:28:35', 0, 562, 22.5, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4313, 5, '2016-08-10 23:28:50', 1, 533, 22.5, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4315, 5, '2016-08-10 23:29:05', 0, 507, 22.5, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4317, 5, '2016-08-10 23:29:19', 0, 515, 22.5, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4319, 5, '2016-08-10 23:29:30', 0, 496, 22.5, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4321, 5, '2016-08-10 23:29:55', 0, 562, 22.5, 43.0999985, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4323, 5, '2016-08-10 23:30:08', 0, 562, 22.5, 43.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4325, 5, '2016-08-10 23:30:23', 0, 539, 22.5, 43.0999985, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4327, 5, '2016-08-10 23:30:38', 0, 537, 22.5, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4329, 5, '2016-08-10 23:30:48', 0, 498, 22.5, 43.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4331, 5, '2016-08-10 23:30:59', 0, 551, 22.5, 43.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4361, 5, '2016-08-10 23:34:22', 0, 562, 22.5, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4363, 5, '2016-08-10 23:34:34', 0, 522, 22.5, 43.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4365, 5, '2016-08-10 23:34:50', 0, 546, 22.5, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4367, 5, '2016-08-10 23:35:03', 0, 560, 22.5, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4369, 5, '2016-08-10 23:35:18', 0, 519, 22.5, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4371, 5, '2016-08-10 23:35:33', 0, 542, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4373, 5, '2016-08-10 23:35:47', 0, 539, 22.5, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4375, 5, '2016-08-10 23:36:01', 0, 537, 22.5, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4377, 5, '2016-08-10 23:36:16', 0, 528, 22.5, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4379, 5, '2016-08-10 23:36:31', 0, 515, 22.5, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4381, 5, '2016-08-10 23:36:44', 1, 515, 22.5, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4383, 5, '2016-08-10 23:36:58', 0, 555, 22.5, 43.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4385, 5, '2016-08-10 23:37:12', 0, 535, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4387, 5, '2016-08-10 23:37:30', 0, 580, 22.5, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4389, 5, '2016-08-10 23:37:42', 0, 548, 22.5, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4391, 5, '2016-08-10 23:37:57', 0, 528, 22.5, 43.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4393, 5, '2016-08-10 23:38:12', 0, 553, 22.5, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4395, 5, '2016-08-10 23:38:24', 1, 533, 22.5, 43.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4407, 5, '2016-08-10 23:39:39', 0, 594, 22.5, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4449, 5, '2016-08-10 23:44:41', 0, 537, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4126, 5, '2016-08-10 23:06:34', 0, 537, 22.5, 43.2999992, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4128, 5, '2016-08-10 23:06:49', 0, 555, 22.5, 43.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4158, 5, '2016-08-10 23:10:17', 0, 553, 22.5, 43.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4160, 5, '2016-08-10 23:10:31', 0, 528, 22.5, 43.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4162, 5, '2016-08-10 23:10:46', 0, 587, 22.5, 43.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4164, 5, '2016-08-10 23:11:00', 0, 539, 22.5, 43.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4166, 5, '2016-08-10 23:11:14', 0, 531, 22.5, 43.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4168, 5, '2016-08-10 23:11:28', 0, 515, 22.5, 43.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4170, 5, '2016-08-10 23:11:43', 0, 566, 22.5, 43.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4172, 5, '2016-08-10 23:11:57', 0, 566, 22.5, 43.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4174, 5, '2016-08-10 23:12:12', 0, 582, 22.5, 43.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4176, 5, '2016-08-10 23:12:27', 0, 557, 22.5, 43.2000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4178, 5, '2016-08-10 23:12:40', 1, 517, 22.5, 43.2000008, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4208, 5, '2016-08-10 23:16:09', 0, 573, 22.5, 43.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4210, 5, '2016-08-10 23:16:24', 0, 553, 22.5, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4240, 5, '2016-08-10 23:19:58', 0, 576, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4242, 5, '2016-08-10 23:20:13', 0, 580, 22.5, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4244, 5, '2016-08-10 23:20:28', 0, 546, 22.5, 43.0999985, 29584);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4246, 5, '2016-08-10 23:20:41', 0, 589, 22.5, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4248, 5, '2016-08-10 23:20:56', 0, 585, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4250, 5, '2016-08-10 23:21:11', 0, 539, 22.5, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4260, 5, '2016-08-10 23:22:30', 0, 566, 22.5, 43.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4262, 5, '2016-08-10 23:22:43', 0, 553, 22.5, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4264, 5, '2016-08-10 23:22:58', 0, 553, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4266, 5, '2016-08-10 23:23:08', 0, 596, 22.5, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4268, 5, '2016-08-10 23:23:27', 0, 517, 22.5, 43.0999985, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4270, 3, '2016-08-10 23:23:35', 1, 605, 21.8999996, 46.0999985, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4272, 5, '2016-08-10 23:23:48', 0, 492, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4274, 5, '2016-08-10 23:24:03', 1, 553, 22.5, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4276, 5, '2016-08-10 23:24:17', 0, 515, 22.5, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4278, 5, '2016-08-10 23:24:31', 0, 564, 22.5, 43.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4280, 5, '2016-08-10 23:24:46', 0, 546, 22.5, 43.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4282, 5, '2016-08-10 23:24:53', 0, 539, 22.5, 43.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4284, 5, '2016-08-10 23:25:08', 0, 546, 22.5, 43.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4286, 5, '2016-08-10 23:25:22', 0, 542, 22.5, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4308, 5, '2016-08-10 23:28:14', 0, 542, 22.5, 43.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4338, 5, '2016-08-10 23:31:50', 1, 589, 22.5, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4340, 5, '2016-08-10 23:32:05', 0, 551, 22.5, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4342, 5, '2016-08-10 23:32:19', 0, 537, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4344, 5, '2016-08-10 23:32:33', 0, 533, 22.5, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4346, 5, '2016-08-10 23:32:47', 0, 522, 22.5, 43.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4348, 5, '2016-08-10 23:33:01', 0, 509, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4350, 5, '2016-08-10 23:33:16', 0, 548, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4352, 5, '2016-08-10 23:33:32', 0, 533, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4354, 5, '2016-08-10 23:33:45', 0, 551, 22.5, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4356, 5, '2016-08-10 23:33:59', 0, 511, 22.5, 43.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4358, 0, '2016-08-10 23:34:06', 0, 551, 22, 46.2999992, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4360, 5, '2016-08-10 23:34:13', 0, 578, 22.5, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4362, 5, '2016-08-10 23:34:29', 0, 551, 22.5, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4364, 5, '2016-08-10 23:34:42', 0, 553, 22.5, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4366, 5, '2016-08-10 23:34:56', 0, 555, 22.5, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4368, 5, '2016-08-10 23:35:10', 0, 571, 22.5, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4370, 5, '2016-08-10 23:35:25', 0, 564, 22.5, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4372, 5, '2016-08-10 23:35:37', 0, 539, 22.5, 43.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4374, 5, '2016-08-10 23:35:54', 0, 539, 22.5, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4376, 5, '2016-08-10 23:36:09', 0, 555, 22.5, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4378, 5, '2016-08-10 23:36:22', 0, 507, 22.5, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4380, 5, '2016-08-10 23:36:36', 1, 555, 22.5, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4382, 5, '2016-08-10 23:36:52', 0, 539, 22.5, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4384, 5, '2016-08-10 23:37:05', 0, 573, 22.5, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4386, 5, '2016-08-10 23:37:20', 0, 560, 22.5, 43.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4388, 5, '2016-08-10 23:37:35', 0, 548, 22.5, 43.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4390, 5, '2016-08-10 23:37:48', 0, 535, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4408, 5, '2016-08-10 23:39:50', 0, 537, 22.5, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4448, 5, '2016-08-10 23:44:37', 0, 519, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4450, 5, '2016-08-10 23:44:52', 0, 542, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4452, 5, '2016-08-10 23:45:06', 0, 592, 22.5, 43, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4454, 5, '2016-08-10 23:45:21', 0, 585, 22.5, 43, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4456, 5, '2016-08-10 23:45:36', 0, 566, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4458, 5, '2016-08-10 23:45:57', 0, 511, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4460, 1, '2016-08-10 23:45:58', 0, 599, 21.8999996, 45.2000008, 9769);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4462, 5, '2016-08-10 23:46:12', 0, 539, 22.5, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4464, 5, '2016-08-10 23:46:25', 1, 524, 22.5, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4466, 5, '2016-08-10 23:46:40', 0, 562, 22.5, 43, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4468, 5, '2016-08-10 23:46:55', 0, 571, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4470, 5, '2016-08-10 23:47:09', 0, 504, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4129, 5, '2016-08-10 23:06:55', 0, 546, 22.5, 43.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4131, 5, '2016-08-10 23:07:17', 0, 601, 22.5, 43.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4133, 5, '2016-08-10 23:07:32', 0, 513, 22.5, 43.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4135, 5, '2016-08-10 23:07:47', 0, 562, 22.5, 43.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4137, 5, '2016-08-10 23:08:01', 1, 578, 22.5, 43.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4139, 5, '2016-08-10 23:08:14', 0, 562, 22.5, 43.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4167, 5, '2016-08-10 23:11:24', 0, 524, 22.5, 43.2000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4169, 5, '2016-08-10 23:11:36', 0, 551, 22.5, 43.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4171, 5, '2016-08-10 23:11:51', 0, 562, 22.5, 43.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4173, 5, '2016-08-10 23:12:04', 0, 569, 22.5, 43.2000008, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4175, 5, '2016-08-10 23:12:18', 0, 553, 22.5, 43.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4177, 5, '2016-08-10 23:12:34', 0, 539, 22.5, 43.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4179, 5, '2016-08-10 23:12:48', 1, 555, 22.5, 43.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4181, 5, '2016-08-10 23:13:02', 0, 517, 22.5, 43.2000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4183, 5, '2016-08-10 23:13:16', 0, 548, 22.5, 43.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4185, 5, '2016-08-10 23:13:38', 0, 553, 22.5, 43.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4187, 5, '2016-08-10 23:13:46', 0, 551, 22.5, 43.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4189, 5, '2016-08-10 23:14:06', 0, 507, 22.5, 43.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4191, 5, '2016-08-10 23:14:21', 1, 573, 22.5, 43.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4193, 5, '2016-08-10 23:14:36', 0, 566, 22.5, 43.2000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4197, 5, '2016-08-10 23:15:04', 0, 551, 22.5, 43.2000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4199, 1, '2016-08-10 23:15:12', 0, 566, 21.8999996, 45.2000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4201, 5, '2016-08-10 23:15:26', 0, 560, 22.5, 43.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4203, 5, '2016-08-10 23:15:36', 0, 592, 22.5, 43.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4233, 0, '2016-08-10 23:19:02', 0, 542, 22, 46.2999992, 4224);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4235, 5, '2016-08-10 23:19:16', 1, 519, 22.5, 43.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4237, 5, '2016-08-10 23:19:37', 0, 539, 22.5, 43.0999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4239, 5, '2016-08-10 23:19:52', 0, 542, 22.5, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4241, 5, '2016-08-10 23:20:06', 0, 578, 22.5, 43.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4243, 5, '2016-08-10 23:20:20', 0, 539, 22.5, 43.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4245, 5, '2016-08-10 23:20:35', 0, 582, 22.5, 43.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4259, 5, '2016-08-10 23:22:22', 1, 535, 22.5, 43.0999985, 31029);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4261, 5, '2016-08-10 23:22:38', 0, 542, 22.5, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4279, 5, '2016-08-10 23:24:39', 0, 557, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4281, 5, '2016-08-10 23:24:53', 0, 509, 22.5, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4283, 2, '2016-08-10 23:25:00', 1, 504, 23.2000008, 42.4000015, 9281);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4285, 5, '2016-08-10 23:25:15', 0, 490, 22.5, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4287, 5, '2016-08-10 23:25:29', 0, 603, 22.5, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4289, 5, '2016-08-10 23:25:51', 0, 553, 22.5, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4291, 5, '2016-08-10 23:26:07', 0, 500, 22.5, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4293, 5, '2016-08-10 23:26:19', 0, 531, 22.5, 43.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4295, 5, '2016-08-10 23:26:33', 0, 542, 22.5, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4297, 5, '2016-08-10 23:26:48', 0, 522, 22.5, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4299, 5, '2016-08-10 23:27:03', 1, 546, 22.5, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4301, 5, '2016-08-10 23:27:17', 0, 524, 22.5, 43.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4303, 5, '2016-08-10 23:27:31', 0, 496, 22.5, 43.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4333, 5, '2016-08-10 23:31:14', 0, 515, 22.5, 43.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4335, 5, '2016-08-10 23:31:28', 0, 546, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4337, 5, '2016-08-10 23:31:43', 0, 551, 22.5, 43.0999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4339, 5, '2016-08-10 23:31:56', 1, 537, 22.5, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4341, 5, '2016-08-10 23:32:08', 0, 524, 22.5, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4343, 5, '2016-08-10 23:32:25', 0, 537, 22.5, 43.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4345, 5, '2016-08-10 23:32:41', 0, 544, 22.5, 43.0999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4347, 5, '2016-08-10 23:32:54', 0, 535, 22.5, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4349, 5, '2016-08-10 23:33:09', 0, 487, 22.5, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4351, 5, '2016-08-10 23:33:22', 0, 524, 22.5, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4353, 5, '2016-08-10 23:33:37', 1, 546, 22.5, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4355, 5, '2016-08-10 23:33:49', 0, 576, 22.5, 43.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4357, 5, '2016-08-10 23:34:06', 0, 531, 22.5, 43.0999985, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4359, 0, '2016-08-10 23:34:06', 0, 551, 22, 46.2999992, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4397, 5, '2016-08-10 23:38:38', 0, 515, 22.5, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4399, 3, '2016-08-10 23:38:47', 1, 566, 21.8999996, 46.0999985, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4401, 5, '2016-08-10 23:39:00', 0, 539, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4403, 5, '2016-08-10 23:39:15', 0, 542, 22.5, 43.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4405, 5, '2016-08-10 23:39:29', 0, 557, 22.5, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4409, 5, '2016-08-10 23:39:58', 0, 504, 22.5, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4411, 2, '2016-08-10 23:40:05', 1, 512, 23.1000004, 42.4000015, 2422);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4413, 5, '2016-08-10 23:40:20', 0, 578, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4415, 5, '2016-08-10 23:40:34', 0, 560, 22.5, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4417, 5, '2016-08-10 23:40:48', 0, 539, 22.5, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4419, 5, '2016-08-10 23:41:02', 0, 571, 22.5, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4421, 5, '2016-08-10 23:41:17', 0, 544, 22.5, 43.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4423, 5, '2016-08-10 23:41:33', 1, 502, 22.5, 43.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4425, 5, '2016-08-10 23:41:47', 0, 517, 22.5, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4427, 5, '2016-08-10 23:42:08', 0, 517, 22.5, 43.0999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4429, 5, '2016-08-10 23:42:22', 0, 528, 22.5, 43.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4431, 5, '2016-08-10 23:42:36', 0, 539, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4433, 5, '2016-08-10 23:42:50', 0, 522, 22.5, 43.0999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4435, 5, '2016-08-10 23:43:04', 0, 535, 22.5, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4437, 5, '2016-08-10 23:43:21', 1, 524, 22.5, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4439, 5, '2016-08-10 23:43:34', 0, 562, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4441, 5, '2016-08-10 23:43:48', 0, 539, 22.5, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4443, 5, '2016-08-10 23:44:03', 0, 560, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4445, 5, '2016-08-10 23:44:16', 0, 566, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4447, 5, '2016-08-10 23:44:32', 0, 544, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4451, 5, '2016-08-10 23:45:00', 0, 535, 22.5, 43, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4453, 5, '2016-08-10 23:45:13', 0, 578, 22.5, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4455, 5, '2016-08-10 23:45:28', 0, 592, 22.5, 43, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4457, 5, '2016-08-10 23:45:43', 0, 548, 22.5, 43, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4459, 1, '2016-08-10 23:45:58', 0, 599, 21.8999996, 45.2000008, 9769);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4461, 5, '2016-08-10 23:46:04', 0, 555, 22.5, 43, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4463, 5, '2016-08-10 23:46:19', 1, 513, 22.5, 43, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4465, 5, '2016-08-10 23:46:33', 0, 544, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4467, 5, '2016-08-10 23:46:47', 0, 542, 22.5, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4469, 5, '2016-08-10 23:47:01', 0, 573, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4471, 5, '2016-08-10 23:47:15', 0, 548, 22.5, 43, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4130, 5, '2016-08-10 23:07:03', 0, 537, 22.5, 43.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4132, 5, '2016-08-10 23:07:25', 0, 511, 22.5, 43.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4134, 5, '2016-08-10 23:07:38', 0, 517, 22.5, 43.2999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4136, 5, '2016-08-10 23:07:53', 1, 580, 22.5, 43.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4138, 5, '2016-08-10 23:08:08', 0, 542, 22.5, 43.2999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4140, 5, '2016-08-10 23:08:20', 0, 546, 22.5, 43.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4142, 5, '2016-08-10 23:08:27', 0, 571, 22.5, 43.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4144, 5, '2016-08-10 23:08:43', 0, 576, 22.5, 43.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4146, 5, '2016-08-10 23:08:58', 0, 533, 22.5, 43.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4148, 5, '2016-08-10 23:09:10', 0, 524, 22.5, 43.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4150, 5, '2016-08-10 23:09:26', 0, 571, 22.5, 43.2000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4152, 5, '2016-08-10 23:09:41', 1, 544, 22.5, 43.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4154, 2, '2016-08-10 23:09:49', 1, 476, 23.2000008, 42.2999992, 4498);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4156, 5, '2016-08-10 23:10:03', 0, 526, 22.5, 43.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4180, 5, '2016-08-10 23:12:54', 0, 517, 22.5, 43.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4182, 5, '2016-08-10 23:13:11', 0, 535, 22.5, 43.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4184, 5, '2016-08-10 23:13:30', 0, 517, 22.5, 43.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4186, 5, '2016-08-10 23:13:45', 0, 517, 22.5, 43.2000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4188, 5, '2016-08-10 23:14:00', 0, 498, 22.5, 43.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4190, 5, '2016-08-10 23:14:07', 0, 576, 22.5, 43.2000008, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4192, 5, '2016-08-10 23:14:28', 1, 548, 22.5, 43.2000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4194, 5, '2016-08-10 23:14:42', 0, 573, 22.5, 43.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4196, 5, '2016-08-10 23:14:57', 0, 551, 22.5, 43.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4198, 5, '2016-08-10 23:15:10', 0, 569, 22.5, 43.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4200, 5, '2016-08-10 23:15:18', 0, 566, 22.5, 43.2000008, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4202, 5, '2016-08-10 23:15:33', 0, 533, 22.5, 43.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4204, 1, '2016-08-10 23:15:40', 0, 566, 21.8999996, 45.2000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4206, 5, '2016-08-10 23:15:54', 0, 546, 22.5, 43.2000008, 32775);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4212, 5, '2016-08-10 23:16:38', 0, 533, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4214, 5, '2016-08-10 23:16:52', 0, 542, 22.5, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4216, 5, '2016-08-10 23:17:06', 0, 605, 22.5, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4218, 5, '2016-08-10 23:17:20', 0, 504, 22.5, 43.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4220, 5, '2016-08-10 23:17:29', 1, 537, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4222, 5, '2016-08-10 23:17:50', 0, 553, 22.5, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4224, 5, '2016-08-10 23:18:04', 0, 589, 22.5, 43.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4226, 5, '2016-08-10 23:18:18', 0, 546, 22.5, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4228, 5, '2016-08-10 23:18:32', 0, 551, 22.5, 43.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4230, 5, '2016-08-10 23:18:47', 0, 546, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4232, 5, '2016-08-10 23:18:54', 0, 560, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4234, 5, '2016-08-10 23:19:08', 1, 524, 22.5, 43.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4236, 5, '2016-08-10 23:19:20', 0, 539, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4238, 5, '2016-08-10 23:19:44', 0, 500, 22.5, 43.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4252, 5, '2016-08-10 23:21:27', 0, 542, 22.5, 43.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4254, 5, '2016-08-10 23:21:46', 0, 513, 22.5, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4256, 5, '2016-08-10 23:22:00', 0, 519, 22.5, 43.0999985, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4258, 5, '2016-08-10 23:22:15', 1, 560, 22.5, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4288, 5, '2016-08-10 23:25:43', 0, 557, 22.5, 43.0999985, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4290, 5, '2016-08-10 23:25:57', 0, 539, 22.5, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4292, 5, '2016-08-10 23:26:12', 0, 546, 22.5, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4294, 5, '2016-08-10 23:26:27', 0, 557, 22.5, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4296, 5, '2016-08-10 23:26:41', 0, 546, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4298, 5, '2016-08-10 23:26:55', 0, 519, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4300, 5, '2016-08-10 23:27:09', 1, 509, 22.5, 43.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4302, 5, '2016-08-10 23:27:23', 0, 522, 22.5, 43.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4304, 5, '2016-08-10 23:27:46', 0, 551, 22.5, 43.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4306, 5, '2016-08-10 23:27:59', 0, 553, 22.5, 43.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4310, 5, '2016-08-10 23:28:29', 0, 544, 22.5, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4312, 5, '2016-08-10 23:28:43', 0, 582, 22.5, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4314, 5, '2016-08-10 23:28:57', 0, 533, 22.5, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4316, 5, '2016-08-10 23:29:11', 0, 551, 22.5, 43.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4318, 5, '2016-08-10 23:29:27', 0, 517, 22.5, 43.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4320, 5, '2016-08-10 23:29:47', 0, 571, 22.5, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4322, 5, '2016-08-10 23:30:01', 0, 524, 22.5, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4324, 5, '2016-08-10 23:30:17', 0, 578, 22.5, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4326, 5, '2016-08-10 23:30:31', 0, 539, 22.5, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4328, 5, '2016-08-10 23:30:45', 0, 585, 22.5, 43.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4330, 1, '2016-08-10 23:30:53', 0, 583, 21.8999996, 45.2999992, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4332, 5, '2016-08-10 23:31:07', 0, 582, 22.5, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4334, 5, '2016-08-10 23:31:22', 0, 542, 22.5, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4336, 5, '2016-08-10 23:31:35', 0, 533, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4392, 5, '2016-08-10 23:38:02', 0, 524, 22.5, 43.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4394, 5, '2016-08-10 23:38:17', 0, 539, 22.5, 43.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4396, 5, '2016-08-10 23:38:32', 1, 522, 22.5, 43.0999985, 32913);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4398, 5, '2016-08-10 23:38:43', 0, 551, 22.5, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4400, 5, '2016-08-10 23:38:54', 0, 564, 22.5, 43.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4402, 5, '2016-08-10 23:39:09', 0, 564, 22.5, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4404, 5, '2016-08-10 23:39:22', 0, 557, 22.5, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4406, 5, '2016-08-10 23:39:36', 0, 539, 22.5, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4410, 5, '2016-08-10 23:40:04', 0, 509, 22.5, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4412, 5, '2016-08-10 23:40:12', 0, 539, 22.5, 43.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4414, 5, '2016-08-10 23:40:26', 0, 548, 22.5, 43.0999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4416, 5, '2016-08-10 23:40:42', 0, 578, 22.5, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4418, 5, '2016-08-10 23:40:56', 0, 537, 22.5, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4420, 5, '2016-08-10 23:41:07', 0, 546, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4422, 5, '2016-08-10 23:41:24', 1, 557, 22.5, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4424, 5, '2016-08-10 23:41:38', 0, 481, 22.5, 43.0999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4426, 5, '2016-08-10 23:42:00', 0, 560, 22.5, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4428, 5, '2016-08-10 23:42:14', 0, 539, 22.5, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4430, 5, '2016-08-10 23:42:29', 0, 566, 22.5, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4432, 5, '2016-08-10 23:42:44', 0, 566, 22.5, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4434, 5, '2016-08-10 23:42:58', 0, 539, 22.5, 43.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4436, 5, '2016-08-10 23:43:12', 1, 533, 22.5, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4438, 5, '2016-08-10 23:43:26', 0, 560, 22.5, 43.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4440, 5, '2016-08-10 23:43:41', 0, 544, 22.5, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4442, 5, '2016-08-10 23:43:51', 0, 569, 22.5, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4444, 5, '2016-08-10 23:44:10', 0, 515, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4446, 5, '2016-08-10 23:44:24', 0, 564, 22.5, 43, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4472, 5, '2016-08-10 23:47:24', 0, 555, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4473, 5, '2016-08-10 23:47:32', 0, 513, 22.5, 43, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4474, 5, '2016-08-10 23:47:37', 0, 557, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4475, 5, '2016-08-10 23:47:45', 0, 539, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4476, 5, '2016-08-10 23:47:51', 0, 542, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4477, 5, '2016-08-10 23:47:59', 1, 487, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4478, 5, '2016-08-10 23:48:06', 1, 569, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4479, 5, '2016-08-10 23:48:13', 0, 557, 22.5, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4480, 5, '2016-08-10 23:48:21', 0, 548, 22.5, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4481, 5, '2016-08-10 23:48:27', 0, 498, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4482, 5, '2016-08-10 23:48:37', 0, 553, 22.5, 43, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4484, 5, '2016-08-10 23:48:50', 0, 562, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4486, 5, '2016-08-10 23:49:04', 0, 569, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4488, 5, '2016-08-10 23:49:16', 0, 560, 22.5, 43, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4490, 5, '2016-08-10 23:49:26', 0, 551, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4492, 5, '2016-08-10 23:49:39', 0, 542, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4494, 5, '2016-08-10 23:49:49', 0, 531, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4496, 5, '2016-08-10 23:50:08', 0, 564, 22.5, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4498, 5, '2016-08-10 23:50:30', 0, 569, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4500, 5, '2016-08-10 23:50:45', 0, 526, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4502, 5, '2016-08-10 23:50:59', 0, 548, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4504, 5, '2016-08-10 23:51:13', 1, 517, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4506, 5, '2016-08-10 23:51:28', 0, 515, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4508, 5, '2016-08-10 23:51:41', 0, 515, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4510, 5, '2016-08-10 23:51:57', 0, 582, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4512, 5, '2016-08-10 23:52:17', 0, 551, 22.5, 43, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4514, 5, '2016-08-10 23:52:32', 0, 539, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4516, 5, '2016-08-10 23:52:47', 1, 580, 22.5, 43, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4518, 5, '2016-08-10 23:53:01', 0, 553, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4520, 5, '2016-08-10 23:53:15', 0, 537, 22.5, 43, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4522, 5, '2016-08-10 23:53:29', 0, 566, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4524, 5, '2016-08-10 23:53:43', 0, 535, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4526, 5, '2016-08-10 23:53:52', 0, 553, 22.5, 43, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4528, 5, '2016-08-10 23:54:05', 0, 535, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4530, 5, '2016-08-10 23:54:21', 0, 542, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4532, 5, '2016-08-10 23:54:35', 0, 566, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4538, 5, '2016-08-10 23:55:15', 0, 551, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4540, 5, '2016-08-10 23:55:26', 0, 533, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4542, 5, '2016-08-10 23:55:39', 0, 513, 22.5, 43, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4544, 5, '2016-08-10 23:55:53', 1, 537, 22.5, 43, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4546, 5, '2016-08-10 23:56:07', 0, 557, 22.5, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4548, 5, '2016-08-10 23:56:24', 0, 519, 22.5, 43, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4550, 5, '2016-08-10 23:56:37', 0, 551, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4552, 5, '2016-08-10 23:56:51', 0, 544, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4554, 5, '2016-08-10 23:57:04', 0, 566, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4556, 5, '2016-08-10 23:57:20', 0, 553, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4558, 5, '2016-08-10 23:57:34', 0, 569, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4560, 5, '2016-08-10 23:57:48', 0, 553, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4562, 5, '2016-08-10 23:58:03', 0, 535, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4564, 5, '2016-08-10 23:58:25', 0, 524, 22.5, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4566, 5, '2016-08-10 23:58:39', 0, 546, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4568, 5, '2016-08-10 23:58:53', 0, 519, 22.5, 43, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4570, 5, '2016-08-10 23:59:07', 0, 511, 22.5, 43, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4572, 5, '2016-08-10 23:59:23', 0, 528, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4574, 5, '2016-08-10 23:59:36', 0, 526, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4576, 5, '2016-08-10 23:59:50', 0, 551, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4578, 5, '2016-08-11 00:00:00', 0, 537, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4580, 5, '2016-08-11 00:00:18', 0, 551, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4582, 5, '2016-08-11 00:00:33', 0, 535, 22.5, 43, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4584, 5, '2016-08-11 00:00:48', 1, 542, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4586, 5, '2016-08-11 00:01:02', 0, 535, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4588, 1, '2016-08-11 00:01:10', 0, 592, 21.8999996, 45.2000008, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4590, 5, '2016-08-11 00:01:24', 0, 560, 22.5, 43, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4592, 5, '2016-08-11 00:01:40', 0, 560, 22.5, 43, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4594, 5, '2016-08-11 00:01:52', 0, 573, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4596, 5, '2016-08-11 00:02:13', 0, 555, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4598, 5, '2016-08-11 00:02:28', 1, 569, 22.5, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4600, 5, '2016-08-11 00:02:42', 0, 531, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4602, 5, '2016-08-11 00:02:56', 0, 542, 22.5, 43, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4608, 5, '2016-08-11 00:03:40', 0, 528, 22.5, 43, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4610, 5, '2016-08-11 00:03:54', 0, 542, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4612, 5, '2016-08-11 00:04:08', 0, 544, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4614, 5, '2016-08-11 00:04:22', 0, 566, 22.5, 43, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4616, 0, '2016-08-11 00:04:31', 0, 560, 22, 46.0999985, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4618, 5, '2016-08-11 00:04:45', 0, 564, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4640, 5, '2016-08-11 00:07:30', 0, 542, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4656, 5, '2016-08-11 00:09:19', 0, 548, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4658, 5, '2016-08-11 00:09:32', 0, 535, 22.5, 43, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4662, 5, '2016-08-11 00:10:00', 0, 519, 22.5, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4664, 5, '2016-08-11 00:10:10', 1, 548, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4666, 2, '2016-08-11 00:10:27', 1, 494, 22.8999996, 42.5, 13616);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4668, 5, '2016-08-11 00:10:36', 0, 560, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4670, 5, '2016-08-11 00:10:51', 0, 551, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4672, 5, '2016-08-11 00:11:08', 0, 553, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4674, 5, '2016-08-11 00:11:22', 0, 542, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4676, 5, '2016-08-11 00:11:34', 0, 507, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4678, 5, '2016-08-11 00:11:48', 0, 548, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4680, 5, '2016-08-11 00:12:03', 1, 585, 22.5, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4682, 5, '2016-08-11 00:12:17', 0, 548, 22.5, 43, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4684, 5, '2016-08-11 00:12:32', 0, 548, 22.5, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4686, 5, '2016-08-11 00:12:45', 0, 548, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4688, 5, '2016-08-11 00:12:59', 0, 531, 22.5, 43, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4696, 5, '2016-08-11 00:13:56', 0, 562, 22.5, 43, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4698, 5, '2016-08-11 00:14:12', 0, 569, 22.5, 43, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4704, 5, '2016-08-11 00:15:02', 0, 560, 22.5, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4706, 5, '2016-08-11 00:15:16', 0, 566, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4708, 5, '2016-08-11 00:15:31', 0, 537, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4710, 5, '2016-08-11 00:15:45', 0, 560, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4712, 5, '2016-08-11 00:15:59', 0, 569, 22.5, 43, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4726, 5, '2016-08-11 00:17:41', 0, 582, 22.5, 43, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4728, 5, '2016-08-11 00:17:55', 0, 531, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4730, 5, '2016-08-11 00:18:09', 0, 553, 22.5, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4732, 5, '2016-08-11 00:18:23', 0, 564, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4734, 5, '2016-08-11 00:18:37', 0, 537, 22.5, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4736, 5, '2016-08-11 00:18:52', 0, 544, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4738, 5, '2016-08-11 00:19:06', 0, 533, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4756, 5, '2016-08-11 00:21:23', 0, 555, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4758, 5, '2016-08-11 00:21:38', 1, 553, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4760, 5, '2016-08-11 00:21:51', 0, 531, 22.5, 43, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4762, 5, '2016-08-11 00:22:06', 0, 555, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4764, 5, '2016-08-11 00:22:21', 0, 551, 22.5, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4766, 5, '2016-08-11 00:22:48', 0, 580, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4768, 5, '2016-08-11 00:23:03', 0, 576, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4770, 5, '2016-08-11 00:23:18', 0, 576, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4772, 5, '2016-08-11 00:23:32', 0, 562, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4774, 5, '2016-08-11 00:23:47', 0, 551, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4776, 5, '2016-08-11 00:23:58', 0, 542, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4483, 5, '2016-08-10 23:48:43', 0, 535, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4485, 5, '2016-08-10 23:48:59', 0, 517, 22.5, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4487, 5, '2016-08-10 23:49:11', 0, 562, 22.5, 43, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4489, 0, '2016-08-10 23:49:18', 0, 565, 22, 46.2000008, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4491, 5, '2016-08-10 23:49:33', 0, 564, 22.5, 43, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4493, 5, '2016-08-10 23:49:48', 0, 566, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4495, 5, '2016-08-10 23:50:08', 0, 562, 22.5, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4497, 5, '2016-08-10 23:50:23', 0, 535, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4499, 5, '2016-08-10 23:50:37', 0, 542, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4501, 5, '2016-08-10 23:50:52', 0, 544, 22.5, 43, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4503, 5, '2016-08-10 23:51:06', 1, 546, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4505, 5, '2016-08-10 23:51:21', 0, 548, 22.5, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4507, 5, '2016-08-10 23:51:35', 0, 524, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4509, 5, '2016-08-10 23:51:49', 0, 515, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4511, 5, '2016-08-10 23:52:10', 0, 557, 22.5, 43, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4513, 5, '2016-08-10 23:52:25', 0, 548, 22.5, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4515, 5, '2016-08-10 23:52:39', 0, 546, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4517, 5, '2016-08-10 23:52:53', 1, 551, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4519, 5, '2016-08-10 23:53:07', 0, 498, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4521, 5, '2016-08-10 23:53:22', 0, 555, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4523, 5, '2016-08-10 23:53:37', 0, 594, 22.5, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4525, 5, '2016-08-10 23:53:46', 0, 531, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4527, 3, '2016-08-10 23:53:53', 1, 585, 21.8999996, 46, 1632);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4529, 5, '2016-08-10 23:54:13', 0, 585, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4531, 5, '2016-08-10 23:54:27', 0, 608, 22.5, 43, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4533, 5, '2016-08-10 23:54:41', 0, 564, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4535, 5, '2016-08-10 23:54:56', 0, 548, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4537, 5, '2016-08-10 23:55:11', 0, 528, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4539, 2, '2016-08-10 23:55:18', 1, 505, 23, 42.5, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4541, 5, '2016-08-10 23:55:31', 0, 542, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4543, 5, '2016-08-10 23:55:46', 0, 553, 22.5, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4545, 5, '2016-08-10 23:56:01', 1, 560, 22.5, 43, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4547, 5, '2016-08-10 23:56:15', 0, 564, 22.5, 43, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4549, 5, '2016-08-10 23:56:28', 0, 528, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4551, 5, '2016-08-10 23:56:43', 0, 560, 22.5, 43, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4553, 5, '2016-08-10 23:56:58', 0, 546, 22.5, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4555, 5, '2016-08-10 23:57:11', 0, 522, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4557, 5, '2016-08-10 23:57:27', 0, 502, 22.5, 43, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4559, 5, '2016-08-10 23:57:41', 1, 560, 22.5, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4561, 5, '2016-08-10 23:57:55', 0, 517, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4563, 5, '2016-08-10 23:58:17', 0, 537, 22.5, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4565, 5, '2016-08-10 23:58:31', 0, 533, 22.5, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4567, 5, '2016-08-10 23:58:45', 0, 562, 22.5, 43, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4569, 5, '2016-08-10 23:59:00', 0, 557, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4571, 5, '2016-08-10 23:59:09', 0, 531, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4573, 5, '2016-08-10 23:59:29', 0, 560, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4575, 5, '2016-08-10 23:59:43', 0, 531, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4577, 5, '2016-08-10 23:59:57', 0, 569, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4579, 5, '2016-08-11 00:00:11', 0, 582, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4581, 5, '2016-08-11 00:00:26', 0, 542, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4583, 5, '2016-08-11 00:00:41', 1, 517, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4585, 5, '2016-08-11 00:00:55', 0, 569, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4587, 5, '2016-08-11 00:01:07', 0, 566, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4589, 5, '2016-08-11 00:01:17', 0, 539, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4591, 5, '2016-08-11 00:01:30', 0, 513, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4593, 5, '2016-08-11 00:01:44', 0, 524, 22.5, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4595, 5, '2016-08-11 00:02:06', 0, 513, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4597, 5, '2016-08-11 00:02:20', 0, 569, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4599, 5, '2016-08-11 00:02:36', 1, 511, 22.5, 43, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4601, 5, '2016-08-11 00:02:49', 0, 573, 22.5, 43, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4603, 5, '2016-08-11 00:03:04', 0, 533, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4605, 5, '2016-08-11 00:03:19', 0, 542, 22.5, 43, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4607, 5, '2016-08-11 00:03:32', 0, 560, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4609, 5, '2016-08-11 00:03:46', 0, 526, 22.5, 43, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4611, 5, '2016-08-11 00:03:55', 0, 553, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4613, 5, '2016-08-11 00:04:16', 0, 551, 22.5, 43, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4615, 5, '2016-08-11 00:04:26', 0, 528, 22.5, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4617, 5, '2016-08-11 00:04:37', 0, 531, 22.5, 43, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4619, 5, '2016-08-11 00:04:52', 0, 522, 22.5, 43, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4621, 5, '2016-08-11 00:05:07', 0, 546, 22.5, 43, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4623, 5, '2016-08-11 00:05:28', 0, 571, 22.5, 43, 32835);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4625, 5, '2016-08-11 00:05:42', 0, 513, 22.5, 43, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4627, 5, '2016-08-11 00:05:57', 0, 548, 22.5, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4629, 5, '2016-08-11 00:06:10', 0, 548, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4631, 5, '2016-08-11 00:06:25', 0, 515, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4633, 5, '2016-08-11 00:06:40', 0, 531, 22.5, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4635, 5, '2016-08-11 00:06:54', 0, 535, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4637, 5, '2016-08-11 00:07:08', 0, 564, 22.5, 43, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4639, 5, '2016-08-11 00:07:22', 1, 522, 22.5, 43, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4641, 5, '2016-08-11 00:07:37', 0, 592, 22.5, 43, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4643, 5, '2016-08-11 00:07:52', 0, 564, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4645, 5, '2016-08-11 00:08:06', 0, 562, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4647, 5, '2016-08-11 00:08:20', 0, 569, 22.5, 43, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4649, 5, '2016-08-11 00:08:34', 0, 483, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4651, 5, '2016-08-11 00:08:48', 0, 573, 22.5, 43, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4653, 5, '2016-08-11 00:09:03', 0, 526, 22.5, 43, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4655, 5, '2016-08-11 00:09:10', 0, 578, 22.5, 43, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4657, 5, '2016-08-11 00:09:24', 0, 500, 22.5, 43, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4659, 5, '2016-08-11 00:09:40', 0, 533, 22.5, 43, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4661, 5, '2016-08-11 00:09:54', 0, 522, 22.5, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4663, 5, '2016-08-11 00:10:08', 0, 535, 22.5, 43, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4665, 5, '2016-08-11 00:10:27', 1, 557, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4667, 2, '2016-08-11 00:10:30', 1, 494, 22.8999996, 42.5, 13616);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4669, 5, '2016-08-11 00:10:44', 0, 539, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4671, 5, '2016-08-11 00:10:57', 0, 564, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4673, 5, '2016-08-11 00:11:12', 0, 537, 22.5, 43, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4675, 5, '2016-08-11 00:11:26', 0, 562, 22.5, 43, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4677, 5, '2016-08-11 00:11:42', 0, 531, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4679, 5, '2016-08-11 00:11:53', 0, 524, 22.5, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4681, 5, '2016-08-11 00:12:09', 1, 571, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4683, 5, '2016-08-11 00:12:24', 0, 564, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4685, 5, '2016-08-11 00:12:39', 0, 566, 22.5, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4687, 5, '2016-08-11 00:12:53', 0, 526, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4689, 5, '2016-08-11 00:13:07', 0, 555, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4691, 5, '2016-08-11 00:13:22', 0, 585, 22.5, 43, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4693, 5, '2016-08-11 00:13:35', 0, 522, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4695, 5, '2016-08-11 00:13:50', 0, 553, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4534, 5, '2016-08-10 23:54:49', 0, 537, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4536, 5, '2016-08-10 23:55:03', 0, 571, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4604, 5, '2016-08-11 00:03:11', 0, 573, 22.5, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4606, 5, '2016-08-11 00:03:28', 0, 553, 22.5, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4620, 5, '2016-08-11 00:04:58', 0, 522, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4622, 5, '2016-08-11 00:05:13', 0, 539, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4624, 5, '2016-08-11 00:05:34', 1, 533, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4626, 5, '2016-08-11 00:05:49', 0, 522, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4628, 5, '2016-08-11 00:06:04', 0, 562, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4630, 5, '2016-08-11 00:06:18', 0, 531, 22.5, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4632, 5, '2016-08-11 00:06:32', 0, 557, 22.5, 43, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4634, 5, '2016-08-11 00:06:46', 0, 548, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4636, 5, '2016-08-11 00:07:01', 0, 522, 22.5, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4638, 5, '2016-08-11 00:07:16', 1, 539, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4642, 5, '2016-08-11 00:07:44', 0, 564, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4644, 5, '2016-08-11 00:07:58', 0, 519, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4646, 5, '2016-08-11 00:08:09', 0, 548, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4648, 5, '2016-08-11 00:08:27', 0, 522, 22.5, 43, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4650, 5, '2016-08-11 00:08:42', 0, 533, 22.5, 43, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4652, 5, '2016-08-11 00:08:56', 0, 551, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4654, 3, '2016-08-11 00:09:04', 1, 585, 21.8999996, 45.9000015, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4660, 5, '2016-08-11 00:09:46', 0, 533, 22.5, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4690, 5, '2016-08-11 00:13:14', 0, 585, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4692, 5, '2016-08-11 00:13:30', 0, 546, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4694, 5, '2016-08-11 00:13:43', 0, 553, 22.5, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4700, 5, '2016-08-11 00:14:34', 0, 553, 22.5, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4702, 5, '2016-08-11 00:14:47', 0, 526, 22.5, 43, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4714, 5, '2016-08-11 00:16:14', 0, 564, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4716, 1, '2016-08-11 00:16:22', 0, 580, 21.7999992, 45.2999992, 4704);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4718, 5, '2016-08-11 00:16:43', 0, 571, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4720, 5, '2016-08-11 00:16:57', 1, 535, 22.5, 43, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4722, 5, '2016-08-11 00:17:10', 0, 539, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4724, 5, '2016-08-11 00:17:25', 0, 580, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4740, 5, '2016-08-11 00:19:21', 1, 551, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4742, 5, '2016-08-11 00:19:35', 0, 551, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4744, 0, '2016-08-11 00:19:43', 0, 556, 22, 46.0999985, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4746, 5, '2016-08-11 00:19:57', 1, 539, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4748, 5, '2016-08-11 00:20:11', 0, 553, 22.5, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4750, 5, '2016-08-11 00:20:19', 0, 560, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4752, 5, '2016-08-11 00:20:47', 0, 555, 22.5, 43, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4754, 5, '2016-08-11 00:20:58', 0, 537, 22.5, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4784, 5, '2016-08-11 00:24:59', 0, 573, 22.5, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4786, 5, '2016-08-11 00:25:13', 0, 553, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4788, 5, '2016-08-11 00:25:27', 0, 537, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4790, 5, '2016-08-11 00:25:37', 0, 546, 22.5, 43, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4792, 5, '2016-08-11 00:25:49', 0, 582, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4794, 5, '2016-08-11 00:26:02', 0, 533, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4796, 5, '2016-08-11 00:26:11', 0, 553, 22.5, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4798, 5, '2016-08-11 00:26:25', 0, 539, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4800, 5, '2016-08-11 00:26:38', 0, 546, 22.5, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4802, 5, '2016-08-11 00:26:53', 0, 576, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4804, 5, '2016-08-11 00:27:08', 0, 546, 22.5, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4806, 5, '2016-08-11 00:27:22', 0, 576, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4808, 5, '2016-08-11 00:27:37', 0, 542, 22.5, 43, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4810, 5, '2016-08-11 00:27:50', 0, 522, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4812, 5, '2016-08-11 00:28:04', 0, 515, 22.5, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4814, 5, '2016-08-11 00:28:19', 0, 569, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4816, 5, '2016-08-11 00:28:34', 0, 509, 22.5, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4818, 5, '2016-08-11 00:28:49', 0, 557, 22.5, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4820, 5, '2016-08-11 00:29:05', 1, 522, 22.5, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4822, 5, '2016-08-11 00:29:16', 0, 562, 22.5, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4824, 5, '2016-08-11 00:29:31', 1, 537, 22.5, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4826, 5, '2016-08-11 00:29:46', 0, 553, 22.5, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4828, 5, '2016-08-11 00:30:00', 0, 562, 22.5, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4830, 5, '2016-08-11 00:30:14', 0, 524, 22.5, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4832, 5, '2016-08-11 00:30:28', 0, 562, 22.5, 42.9000015, 31057);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4834, 5, '2016-08-11 00:30:43', 0, 557, 22.5, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4836, 5, '2016-08-11 00:30:57', 0, 560, 22.5, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4838, 5, '2016-08-11 00:31:12', 0, 546, 22.5, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4868, 5, '2016-08-11 00:34:41', 0, 537, 22.5, 42.9000015, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4870, 5, '2016-08-11 00:34:48', 0, 582, 22.5, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4872, 0, '2016-08-11 00:34:54', 0, 565, 22, 46, 2344);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4874, 5, '2016-08-11 00:35:09', 0, 578, 22.5, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4876, 5, '2016-08-11 00:35:23', 0, 571, 22.5, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4878, 5, '2016-08-11 00:35:38', 0, 517, 22.5, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4880, 5, '2016-08-11 00:35:52', 0, 557, 22.5, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4882, 5, '2016-08-11 00:36:06', 1, 569, 22.5, 42.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4910, 5, '2016-08-11 00:39:25', 0, 537, 22.6000004, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4912, 5, '2016-08-11 00:39:35', 0, 578, 22.5, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4914, 5, '2016-08-11 00:39:48', 0, 544, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4916, 5, '2016-08-11 00:40:03', 0, 515, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4918, 5, '2016-08-11 00:40:18', 0, 557, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4920, 5, '2016-08-11 00:40:31', 0, 555, 22.6000004, 42.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4922, 5, '2016-08-11 00:40:40', 0, 553, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4924, 5, '2016-08-11 00:41:07', 1, 544, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4926, 2, '2016-08-11 00:41:16', 1, 500, 22.7000008, 42.7000008, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4928, 5, '2016-08-11 00:41:30', 0, 569, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4932, 5, '2016-08-11 00:41:58', 0, 533, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4934, 5, '2016-08-11 00:42:12', 0, 537, 22.6000004, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4936, 5, '2016-08-11 00:42:27', 0, 531, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4938, 5, '2016-08-11 00:42:42', 0, 546, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4940, 5, '2016-08-11 00:43:03', 0, 544, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4942, 5, '2016-08-11 00:43:17', 0, 551, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4946, 5, '2016-08-11 00:43:45', 0, 548, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4948, 5, '2016-08-11 00:44:01', 0, 539, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4950, 5, '2016-08-11 00:44:12', 1, 494, 22.6000004, 42.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4952, 5, '2016-08-11 00:44:30', 0, 576, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4954, 5, '2016-08-11 00:44:44', 0, 519, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4956, 5, '2016-08-11 00:44:58', 0, 515, 22.5, 42.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4958, 5, '2016-08-11 00:45:12', 0, 566, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4960, 5, '2016-08-11 00:45:26', 0, 526, 22.6000004, 42.9000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4962, 5, '2016-08-11 00:45:41', 0, 526, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4964, 5, '2016-08-11 00:45:56', 1, 498, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4966, 5, '2016-08-11 00:46:09', 0, 539, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4968, 5, '2016-08-11 00:46:23', 0, 564, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4697, 5, '2016-08-11 00:14:05', 0, 553, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4699, 5, '2016-08-11 00:14:19', 0, 528, 22.5, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4701, 5, '2016-08-11 00:14:41', 0, 528, 22.5, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4703, 5, '2016-08-11 00:14:55', 0, 546, 22.5, 43, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4705, 5, '2016-08-11 00:15:10', 1, 533, 22.5, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4707, 5, '2016-08-11 00:15:23', 0, 551, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4709, 5, '2016-08-11 00:15:37', 0, 566, 22.5, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4711, 5, '2016-08-11 00:15:53', 0, 513, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4713, 5, '2016-08-11 00:16:07', 0, 544, 22.5, 43, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4727, 5, '2016-08-11 00:17:47', 0, 526, 22.5, 43, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4729, 5, '2016-08-11 00:18:01', 0, 569, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4731, 5, '2016-08-11 00:18:16', 0, 522, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4733, 5, '2016-08-11 00:18:31', 0, 560, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4735, 5, '2016-08-11 00:18:45', 0, 576, 22.5, 43, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4737, 5, '2016-08-11 00:19:00', 0, 557, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4755, 5, '2016-08-11 00:21:09', 0, 526, 22.5, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4757, 5, '2016-08-11 00:21:30', 0, 548, 22.5, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4759, 5, '2016-08-11 00:21:45', 1, 548, 22.5, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4761, 5, '2016-08-11 00:21:59', 0, 544, 22.5, 43, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4763, 5, '2016-08-11 00:22:13', 0, 544, 22.5, 43, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4765, 5, '2016-08-11 00:22:41', 0, 533, 22.5, 43, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4767, 5, '2016-08-11 00:22:56', 0, 560, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4769, 5, '2016-08-11 00:23:11', 0, 560, 22.5, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4771, 5, '2016-08-11 00:23:25', 0, 578, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4799, 5, '2016-08-11 00:26:32', 1, 560, 22.5, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4801, 5, '2016-08-11 00:26:47', 0, 537, 22.5, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4803, 5, '2016-08-11 00:27:00', 0, 564, 22.5, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4805, 5, '2016-08-11 00:27:14', 0, 533, 22.5, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4807, 5, '2016-08-11 00:27:29', 0, 573, 22.5, 43, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4837, 5, '2016-08-11 00:31:04', 0, 562, 22.5, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4839, 5, '2016-08-11 00:31:18', 1, 522, 22.5, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4841, 5, '2016-08-11 00:31:29', 0, 597, 22.5, 42.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4843, 5, '2016-08-11 00:31:40', 0, 537, 22.5, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4845, 5, '2016-08-11 00:31:54', 0, 557, 22.5, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4847, 5, '2016-08-11 00:32:10', 0, 573, 22.5, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4849, 5, '2016-08-11 00:32:24', 0, 546, 22.5, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4851, 5, '2016-08-11 00:32:38', 0, 571, 22.5, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4853, 5, '2016-08-11 00:32:52', 0, 537, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4855, 5, '2016-08-11 00:33:06', 0, 594, 22.5, 42.9000015, 29552);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4857, 5, '2016-08-11 00:33:21', 0, 531, 22.5, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4859, 5, '2016-08-11 00:33:36', 0, 517, 22.5, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4861, 5, '2016-08-11 00:33:50', 1, 601, 22.5, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4863, 5, '2016-08-11 00:33:59', 0, 537, 22.5, 42.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4873, 5, '2016-08-11 00:35:02', 0, 531, 22.5, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4875, 5, '2016-08-11 00:35:12', 0, 551, 22.5, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4877, 5, '2016-08-11 00:35:30', 0, 528, 22.5, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4879, 5, '2016-08-11 00:35:44', 0, 564, 22.5, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4881, 5, '2016-08-11 00:35:59', 0, 560, 22.5, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4883, 5, '2016-08-11 00:36:14', 1, 553, 22.5, 42.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4885, 5, '2016-08-11 00:36:28', 0, 528, 22.5, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4887, 5, '2016-08-11 00:36:41', 0, 544, 22.5, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4889, 5, '2016-08-11 00:36:56', 0, 515, 22.5, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4891, 5, '2016-08-11 00:37:11', 0, 535, 22.5, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4893, 5, '2016-08-11 00:37:25', 0, 569, 22.5, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4895, 5, '2016-08-11 00:37:40', 0, 500, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4897, 5, '2016-08-11 00:37:54', 0, 517, 22.6000004, 42.9000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4899, 5, '2016-08-11 00:38:08', 0, 539, 22.5, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4921, 5, '2016-08-11 00:40:39', 0, 539, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4923, 5, '2016-08-11 00:41:01', 0, 555, 22.6000004, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4925, 5, '2016-08-11 00:41:13', 0, 551, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4927, 5, '2016-08-11 00:41:22', 0, 533, 22.6000004, 42.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4929, 5, '2016-08-11 00:41:37', 0, 537, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4933, 5, '2016-08-11 00:42:07', 0, 494, 22.6000004, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4935, 5, '2016-08-11 00:42:19', 0, 582, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4937, 5, '2016-08-11 00:42:35', 0, 551, 22.6000004, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4939, 5, '2016-08-11 00:42:48', 0, 562, 22.6000004, 42.9000015, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4941, 5, '2016-08-11 00:43:10', 0, 507, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4945, 5, '2016-08-11 00:43:39', 0, 573, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4947, 5, '2016-08-11 00:43:53', 0, 587, 22.6000004, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4949, 5, '2016-08-11 00:44:01', 1, 548, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4951, 5, '2016-08-11 00:44:21', 0, 542, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4953, 5, '2016-08-11 00:44:35', 0, 573, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4955, 5, '2016-08-11 00:44:51', 0, 528, 22.6000004, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4957, 5, '2016-08-11 00:45:06', 0, 519, 22.5, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4959, 5, '2016-08-11 00:45:20', 0, 578, 22.6000004, 42.9000015, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4961, 5, '2016-08-11 00:45:33', 0, 513, 22.5, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4963, 5, '2016-08-11 00:45:47', 0, 542, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4965, 5, '2016-08-11 00:46:03', 0, 571, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4967, 5, '2016-08-11 00:46:17', 0, 522, 22.6000004, 42.9000015, 30979);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4715, 5, '2016-08-11 00:16:18', 0, 551, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4717, 5, '2016-08-11 00:16:35', 0, 542, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4719, 5, '2016-08-11 00:16:49', 1, 576, 22.5, 43, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4721, 5, '2016-08-11 00:17:05', 0, 546, 22.5, 43, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4723, 5, '2016-08-11 00:17:18', 0, 566, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4725, 5, '2016-08-11 00:17:33', 0, 587, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4739, 5, '2016-08-11 00:19:13', 0, 564, 22.5, 43, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4741, 5, '2016-08-11 00:19:28', 0, 528, 22.5, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4743, 5, '2016-08-11 00:19:37', 0, 537, 22.5, 43, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4745, 5, '2016-08-11 00:19:49', 0, 513, 22.5, 43, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4747, 5, '2016-08-11 00:20:03', 1, 539, 22.5, 43, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4749, 5, '2016-08-11 00:20:18', 0, 502, 22.5, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4751, 5, '2016-08-11 00:20:39', 0, 580, 22.5, 43, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4753, 5, '2016-08-11 00:20:54', 0, 519, 22.5, 43, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4773, 5, '2016-08-11 00:23:39', 0, 535, 22.5, 43, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4775, 5, '2016-08-11 00:23:54', 0, 544, 22.5, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4777, 5, '2016-08-11 00:24:08', 1, 524, 22.5, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4779, 3, '2016-08-11 00:24:16', 1, 602, 21.8999996, 45.9000015, 4480);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4781, 5, '2016-08-11 00:24:29', 0, 533, 22.5, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4783, 5, '2016-08-11 00:24:50', 1, 546, 22.5, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4785, 5, '2016-08-11 00:25:05', 0, 571, 22.5, 43, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4787, 5, '2016-08-11 00:25:19', 0, 535, 22.5, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4789, 5, '2016-08-11 00:25:35', 0, 548, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4791, 2, '2016-08-11 00:25:42', 1, 526, 22.7999992, 42.7000008, 4754);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4793, 5, '2016-08-11 00:25:56', 0, 542, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4795, 2, '2016-08-11 00:26:03', 1, 526, 22.7999992, 42.7000008, 4754);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4797, 5, '2016-08-11 00:26:11', 0, 566, 22.5, 43, 30979);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4809, 5, '2016-08-11 00:27:44', 0, 557, 22.5, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4811, 5, '2016-08-11 00:27:58', 0, 507, 22.5, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4813, 5, '2016-08-11 00:28:13', 0, 548, 22.5, 43, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4815, 5, '2016-08-11 00:28:27', 0, 548, 22.5, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4817, 5, '2016-08-11 00:28:41', 0, 535, 22.5, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4819, 5, '2016-08-11 00:28:55', 0, 509, 22.5, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4821, 5, '2016-08-11 00:29:09', 0, 548, 22.5, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4823, 5, '2016-08-11 00:29:24', 0, 524, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4825, 5, '2016-08-11 00:29:39', 1, 542, 22.5, 43, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4827, 5, '2016-08-11 00:29:52', 0, 533, 22.5, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4829, 5, '2016-08-11 00:30:02', 0, 562, 22.5, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4831, 5, '2016-08-11 00:30:21', 0, 502, 22.5, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4833, 5, '2016-08-11 00:30:29', 0, 535, 22.5, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4835, 5, '2016-08-11 00:30:50', 0, 531, 22.5, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4865, 5, '2016-08-11 00:34:18', 0, 548, 22.5, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4867, 5, '2016-08-11 00:34:32', 1, 546, 22.5, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4869, 5, '2016-08-11 00:34:48', 0, 531, 22.5, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4871, 0, '2016-08-11 00:34:48', 0, 565, 22, 46, 2344);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4901, 5, '2016-08-11 00:38:22', 0, 522, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4903, 5, '2016-08-11 00:38:38', 1, 513, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4905, 5, '2016-08-11 00:38:52', 0, 542, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4907, 5, '2016-08-11 00:39:06', 0, 553, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4930, 5, '2016-08-11 00:41:44', 0, 557, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4944, 5, '2016-08-11 00:43:31', 1, 524, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4778, 5, '2016-08-11 00:24:14', 0, 533, 22.5, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4780, 5, '2016-08-11 00:24:23', 0, 546, 22.5, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4782, 5, '2016-08-11 00:24:45', 0, 551, 22.5, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4840, 5, '2016-08-11 00:31:26', 1, 524, 22.5, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4842, 1, '2016-08-11 00:31:34', 0, 526, 21.7999992, 45.2999992, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4844, 5, '2016-08-11 00:31:48', 0, 528, 22.5, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4846, 5, '2016-08-11 00:32:02', 0, 539, 22.5, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4848, 5, '2016-08-11 00:32:16', 0, 531, 22.5, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4850, 5, '2016-08-11 00:32:30', 0, 537, 22.5, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4852, 5, '2016-08-11 00:32:46', 0, 507, 22.5, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4854, 5, '2016-08-11 00:32:59', 0, 548, 22.5, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4856, 5, '2016-08-11 00:33:14', 0, 578, 22.5, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4858, 5, '2016-08-11 00:33:28', 0, 542, 22.5, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4860, 5, '2016-08-11 00:33:42', 0, 542, 22.5, 42.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4862, 5, '2016-08-11 00:33:56', 0, 524, 22.5, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4864, 5, '2016-08-11 00:34:11', 0, 515, 22.5, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4866, 5, '2016-08-11 00:34:26', 1, 513, 22.5, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4884, 5, '2016-08-11 00:36:20', 0, 555, 22.6000004, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4886, 5, '2016-08-11 00:36:35', 0, 566, 22.5, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4888, 5, '2016-08-11 00:36:49', 0, 531, 22.5, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4890, 5, '2016-08-11 00:37:04', 0, 544, 22.5, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4892, 5, '2016-08-11 00:37:18', 0, 537, 22.5, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4894, 5, '2016-08-11 00:37:32', 0, 548, 22.5, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4896, 5, '2016-08-11 00:37:47', 0, 557, 22.5, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4898, 5, '2016-08-11 00:38:01', 0, 511, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4900, 5, '2016-08-11 00:38:16', 0, 555, 22.5, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4902, 5, '2016-08-11 00:38:32', 0, 511, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4904, 5, '2016-08-11 00:38:44', 0, 524, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4906, 5, '2016-08-11 00:38:58', 0, 548, 22.5, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4908, 5, '2016-08-11 00:39:06', 1, 548, 22.6000004, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4909, 5, '2016-08-11 00:39:19', 1, 515, 22.6000004, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4911, 3, '2016-08-11 00:39:28', 1, 580, 21.8999996, 45.9000015, 4886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4913, 5, '2016-08-11 00:39:42', 0, 511, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4915, 5, '2016-08-11 00:39:55', 0, 560, 22.6000004, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4917, 5, '2016-08-11 00:40:10', 0, 551, 22.6000004, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4919, 5, '2016-08-11 00:40:24', 0, 535, 22.6000004, 42.9000015, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4931, 5, '2016-08-11 00:41:51', 0, 566, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4943, 5, '2016-08-11 00:43:24', 0, 569, 22.6000004, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4969, 5, '2016-08-11 00:46:32', 0, 560, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4970, 5, '2016-08-11 00:46:38', 0, 576, 22.6000004, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4971, 5, '2016-08-11 00:46:40', 0, 539, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4972, 1, '2016-08-11 00:46:45', 0, 551, 21.7999992, 45.2999992, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4973, 5, '2016-08-11 00:46:53', 0, 548, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4974, 5, '2016-08-11 00:47:07', 0, 536, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4975, 5, '2016-08-11 00:47:14', 0, 504, 22.6000004, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4976, 5, '2016-08-11 00:47:21', 0, 576, 22.6000004, 42.9000015, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4977, 5, '2016-08-11 00:47:28', 0, 526, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4978, 5, '2016-08-11 00:47:36', 0, 548, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4979, 5, '2016-08-11 00:47:43', 0, 537, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4980, 5, '2016-08-11 00:47:51', 0, 566, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4981, 5, '2016-08-11 00:47:57', 0, 537, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4982, 5, '2016-08-11 00:48:05', 0, 551, 22.6000004, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4983, 5, '2016-08-11 00:48:10', 0, 582, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4984, 5, '2016-08-11 00:48:19', 1, 542, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4985, 5, '2016-08-11 00:48:27', 1, 531, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4986, 5, '2016-08-11 00:48:33', 0, 494, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4987, 5, '2016-08-11 00:48:40', 0, 562, 22.6000004, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4988, 5, '2016-08-11 00:48:47', 0, 560, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4989, 5, '2016-08-11 00:48:55', 1, 517, 22.6000004, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4990, 5, '2016-08-11 00:49:01', 1, 513, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4991, 5, '2016-08-11 00:49:09', 0, 535, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4992, 5, '2016-08-11 00:49:16', 0, 536, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4993, 5, '2016-08-11 00:49:23', 0, 563, 22.6000004, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4994, 5, '2016-08-11 00:49:31', 0, 528, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4995, 5, '2016-08-11 00:49:37', 0, 546, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4996, 5, '2016-08-11 00:49:45', 0, 557, 22.6000004, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4997, 5, '2016-08-11 00:49:53', 0, 524, 22.6000004, 42.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4998, 5, '2016-08-11 00:49:59', 0, 519, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (4999, 5, '2016-08-11 00:49:59', 0, 566, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5000, 0, '2016-08-11 00:50:07', 0, 540, 22, 46, 4196);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5001, 5, '2016-08-11 00:50:13', 0, 539, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5002, 5, '2016-08-11 00:50:21', 0, 529, 22.6000004, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5003, 5, '2016-08-11 00:50:28', 0, 589, 22.6000004, 42.9000015, 31001);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5004, 5, '2016-08-11 00:50:35', 0, 544, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5005, 5, '2016-08-11 00:50:42', 1, 533, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5006, 5, '2016-08-11 00:50:49', 0, 551, 22.6000004, 42.9000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5007, 5, '2016-08-11 00:50:49', 0, 528, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5008, 5, '2016-08-11 00:51:04', 0, 564, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5009, 5, '2016-08-11 00:51:10', 0, 524, 22.6000004, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5010, 5, '2016-08-11 00:51:18', 0, 576, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5011, 5, '2016-08-11 00:51:26', 0, 539, 22.6000004, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5012, 5, '2016-08-11 00:51:34', 0, 507, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5013, 5, '2016-08-11 00:51:40', 0, 560, 22.6000004, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5014, 5, '2016-08-11 00:51:48', 0, 528, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5015, 5, '2016-08-11 00:51:54', 0, 490, 22.6000004, 42.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5016, 5, '2016-08-11 00:52:01', 0, 504, 22.6000004, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5017, 5, '2016-08-11 00:52:09', 0, 511, 22.6000004, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5018, 5, '2016-08-11 00:52:15', 0, 551, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5019, 5, '2016-08-11 00:52:24', 0, 522, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5020, 5, '2016-08-11 00:52:30', 0, 552, 22.6000004, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5021, 5, '2016-08-11 00:52:37', 0, 500, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5022, 5, '2016-08-11 00:52:45', 0, 533, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5023, 5, '2016-08-11 00:52:52', 0, 578, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5024, 5, '2016-08-11 00:52:58', 0, 557, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5025, 5, '2016-08-11 00:53:08', 1, 507, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5026, 5, '2016-08-11 00:53:13', 1, 556, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5027, 5, '2016-08-11 00:53:14', 0, 539, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5028, 5, '2016-08-11 00:53:27', 0, 576, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5029, 5, '2016-08-11 00:53:34', 0, 533, 22.6000004, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5030, 5, '2016-08-11 00:53:42', 1, 515, 22.6000004, 42.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5031, 5, '2016-08-11 00:53:49', 1, 535, 22.6000004, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5032, 5, '2016-08-11 00:53:56', 0, 553, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5033, 5, '2016-08-11 00:54:03', 0, 475, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5034, 5, '2016-08-11 00:54:04', 0, 524, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5035, 5, '2016-08-11 00:54:25', 0, 536, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5036, 5, '2016-08-11 00:54:32', 0, 562, 22.6000004, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5037, 5, '2016-08-11 00:54:37', 0, 536, 22.6000004, 42.9000015, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5038, 3, '2016-08-11 00:54:39', 1, 553, 21.8999996, 45.9000015, 4644);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5040, 5, '2016-08-11 00:54:54', 0, 519, 22.6000004, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5042, 5, '2016-08-11 00:55:15', 0, 524, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5044, 5, '2016-08-11 00:55:29', 1, 562, 22.6000004, 42.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5046, 5, '2016-08-11 00:55:46', 0, 545, 22.6000004, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5048, 5, '2016-08-11 00:55:59', 0, 533, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5050, 5, '2016-08-11 00:56:12', 0, 571, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5052, 5, '2016-08-11 00:56:23', 0, 562, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5054, 2, '2016-08-11 00:56:27', 1, 488, 22.6000004, 42.9000015, 13670);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5140, 5, '2016-08-11 01:06:59', 0, 554, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5142, 5, '2016-08-11 01:07:13', 0, 546, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5144, 5, '2016-08-11 01:07:27', 0, 578, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5146, 5, '2016-08-11 01:07:41', 0, 554, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5148, 5, '2016-08-11 01:07:56', 0, 536, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5178, 5, '2016-08-11 01:11:46', 0, 556, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5180, 5, '2016-08-11 01:12:01', 0, 524, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5182, 5, '2016-08-11 01:12:15', 0, 560, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5184, 5, '2016-08-11 01:12:29', 0, 524, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5186, 5, '2016-08-11 01:12:43', 0, 571, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5188, 5, '2016-08-11 01:12:58', 1, 535, 22.6000004, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5190, 5, '2016-08-11 01:13:13', 0, 599, 22.6000004, 42.9000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5192, 5, '2016-08-11 01:13:33', 0, 560, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5194, 5, '2016-08-11 01:13:48', 0, 524, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5202, 5, '2016-08-11 01:14:45', 1, 538, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5204, 5, '2016-08-11 01:15:00', 0, 582, 22.6000004, 42.9000015, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5206, 5, '2016-08-11 01:15:15', 0, 528, 22.6000004, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5208, 5, '2016-08-11 01:15:22', 1, 529, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5210, 5, '2016-08-11 01:15:50', 0, 535, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5212, 5, '2016-08-11 01:16:05', 0, 557, 22.6000004, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5214, 5, '2016-08-11 01:16:19', 0, 490, 22.6000004, 42.9000015, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5216, 5, '2016-08-11 01:16:33', 0, 536, 22.6000004, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5218, 5, '2016-08-11 01:16:48', 0, 580, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5220, 5, '2016-08-11 01:17:02', 0, 524, 22.6000004, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5222, 5, '2016-08-11 01:17:09', 1, 546, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5224, 5, '2016-08-11 01:17:24', 0, 553, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5226, 5, '2016-08-11 01:17:38', 0, 604, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5228, 5, '2016-08-11 01:17:53', 1, 563, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5230, 5, '2016-08-11 01:18:06', 0, 522, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5232, 5, '2016-08-11 01:18:21', 0, 524, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5234, 5, '2016-08-11 01:18:36', 0, 511, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5236, 5, '2016-08-11 01:18:50', 0, 526, 22.6000004, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5238, 5, '2016-08-11 01:19:05', 0, 507, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5240, 5, '2016-08-11 01:19:19', 0, 533, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5242, 5, '2016-08-11 01:19:32', 1, 522, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5244, 5, '2016-08-11 01:19:47', 0, 515, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5246, 5, '2016-08-11 01:20:09', 0, 507, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5262, 5, '2016-08-11 01:21:56', 0, 529, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5264, 5, '2016-08-11 01:22:10', 0, 547, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5266, 5, '2016-08-11 01:22:25', 0, 571, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5268, 5, '2016-08-11 01:22:42', 1, 520, 22.6000004, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5270, 5, '2016-08-11 01:22:54', 0, 524, 22.6000004, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5308, 5, '2016-08-11 01:27:27', 1, 538, 22.6000004, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5310, 2, '2016-08-11 01:27:40', 0, 482, 22.5, 43.2000008, 4676);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5312, 5, '2016-08-11 01:27:42', 0, 592, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5314, 5, '2016-08-11 01:27:56', 0, 531, 22.6000004, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5316, 5, '2016-08-11 01:28:09', 0, 558, 22.6000004, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5318, 5, '2016-08-11 01:28:24', 0, 560, 22.6000004, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5320, 5, '2016-08-11 01:28:38', 0, 552, 22.6000004, 42.7999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5322, 5, '2016-08-11 01:28:54', 0, 515, 22.6000004, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5324, 5, '2016-08-11 01:29:08', 0, 547, 22.6000004, 42.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5326, 5, '2016-08-11 01:29:16', 0, 526, 22.6000004, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5328, 5, '2016-08-11 01:29:36', 0, 531, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5330, 5, '2016-08-11 01:29:58', 1, 533, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5332, 5, '2016-08-11 01:30:12', 0, 520, 22.6000004, 42.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5334, 5, '2016-08-11 01:30:26', 0, 558, 22.6000004, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5336, 5, '2016-08-11 01:30:40', 0, 551, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5338, 5, '2016-08-11 01:30:56', 0, 536, 22.6000004, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5340, 5, '2016-08-11 01:31:10', 0, 502, 22.6000004, 42.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5342, 5, '2016-08-11 01:31:23', 0, 549, 22.6000004, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5344, 5, '2016-08-11 01:31:38', 1, 569, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5346, 5, '2016-08-11 01:31:59', 0, 500, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5348, 5, '2016-08-11 01:32:12', 1, 576, 22.6000004, 42.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5350, 5, '2016-08-11 01:32:29', 0, 552, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5352, 5, '2016-08-11 01:32:42', 0, 563, 22.6000004, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5354, 5, '2016-08-11 01:32:49', 0, 558, 22.6000004, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5356, 5, '2016-08-11 01:33:04', 0, 515, 22.6000004, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5358, 5, '2016-08-11 01:33:19', 0, 552, 22.6000004, 42.7999992, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5360, 5, '2016-08-11 01:33:31', 0, 574, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5390, 5, '2016-08-11 01:37:15', 0, 563, 22.6000004, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5392, 5, '2016-08-11 01:37:30', 0, 511, 22.6000004, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5394, 5, '2016-08-11 01:37:45', 0, 538, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5396, 5, '2016-08-11 01:37:59', 0, 567, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5398, 5, '2016-08-11 01:38:13', 0, 511, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5400, 5, '2016-08-11 01:38:27', 0, 540, 22.6000004, 42.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5402, 5, '2016-08-11 01:38:41', 0, 517, 22.6000004, 42.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5404, 5, '2016-08-11 01:38:56', 0, 531, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5406, 5, '2016-08-11 01:39:11', 0, 531, 22.6000004, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5408, 5, '2016-08-11 01:39:25', 0, 542, 22.6000004, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5410, 5, '2016-08-11 01:39:39', 0, 567, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5412, 5, '2016-08-11 01:40:01', 0, 565, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5414, 3, '2016-08-11 01:40:10', 1, 614, 21.7999992, 45.7999992, 8755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5416, 5, '2016-08-11 01:40:23', 0, 526, 22.6000004, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5420, 5, '2016-08-11 01:40:51', 0, 515, 22.6000004, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5422, 5, '2016-08-11 01:41:06', 0, 533, 22.6000004, 42.7999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5424, 5, '2016-08-11 01:41:22', 1, 549, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5426, 5, '2016-08-11 01:41:34', 0, 545, 22.6000004, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5428, 5, '2016-08-11 01:41:50', 0, 542, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5430, 5, '2016-08-11 01:42:03', 0, 556, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5432, 5, '2016-08-11 01:42:17', 0, 536, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5434, 2, '2016-08-11 01:42:26', 1, 486, 22.7000008, 43.2000008, 4480);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5436, 5, '2016-08-11 01:42:34', 0, 554, 22.6000004, 42.7999992, 31033);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5438, 5, '2016-08-11 01:42:53', 0, 569, 22.6000004, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5440, 5, '2016-08-11 01:43:08', 0, 558, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5442, 5, '2016-08-11 01:43:23', 0, 545, 22.6000004, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5444, 5, '2016-08-11 01:43:37', 0, 540, 22.6000004, 42.7999992, 31061);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5446, 5, '2016-08-11 01:43:50', 0, 552, 22.6000004, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5474, 5, '2016-08-11 01:47:18', 0, 556, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5039, 5, '2016-08-11 00:54:47', 0, 524, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5041, 5, '2016-08-11 00:55:01', 0, 513, 22.6000004, 42.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5043, 5, '2016-08-11 00:55:23', 0, 555, 22.6000004, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5045, 5, '2016-08-11 00:55:36', 0, 522, 22.6000004, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5047, 5, '2016-08-11 00:55:51', 0, 553, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5049, 5, '2016-08-11 00:56:06', 0, 578, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5051, 5, '2016-08-11 00:56:20', 0, 517, 22.6000004, 42.9000015, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5053, 2, '2016-08-11 00:56:24', 1, 488, 22.6000004, 42.9000015, 13670);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5055, 5, '2016-08-11 00:56:34', 0, 531, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5085, 5, '2016-08-11 01:00:31', 0, 555, 22.6000004, 42.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5087, 5, '2016-08-11 01:00:46', 0, 574, 22.6000004, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5089, 5, '2016-08-11 01:00:59', 0, 539, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5091, 5, '2016-08-11 01:01:22', 0, 546, 22.6000004, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5093, 5, '2016-08-11 01:01:39', 0, 552, 22.6000004, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5095, 5, '2016-08-11 01:01:50', 0, 520, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5097, 1, '2016-08-11 01:01:52', 0, 568, 21.7999992, 45.2999992, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5099, 5, '2016-08-11 01:02:04', 0, 542, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5101, 5, '2016-08-11 01:02:15', 0, 511, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5103, 5, '2016-08-11 01:02:33', 0, 539, 22.6000004, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5105, 5, '2016-08-11 01:02:48', 1, 502, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5107, 5, '2016-08-11 01:03:02', 0, 513, 22.6000004, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5109, 5, '2016-08-11 01:03:24', 0, 522, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5111, 5, '2016-08-11 01:03:39', 0, 513, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5129, 5, '2016-08-11 01:05:39', 0, 542, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5131, 5, '2016-08-11 01:05:54', 0, 500, 22.6000004, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5133, 5, '2016-08-11 01:06:11', 0, 542, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5135, 5, '2016-08-11 01:06:18', 0, 540, 22.6000004, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5137, 5, '2016-08-11 01:06:37', 0, 515, 22.6000004, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5139, 5, '2016-08-11 01:06:51', 0, 557, 22.6000004, 42.9000015, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5141, 5, '2016-08-11 01:07:06', 0, 544, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5143, 5, '2016-08-11 01:07:20', 0, 576, 22.6000004, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5145, 5, '2016-08-11 01:07:35', 1, 496, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5147, 5, '2016-08-11 01:07:49', 0, 545, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5149, 5, '2016-08-11 01:08:03', 0, 547, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5151, 5, '2016-08-11 01:08:17', 1, 558, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5161, 5, '2016-08-11 01:09:44', 0, 542, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5163, 3, '2016-08-11 01:09:52', 1, 593, 21.7999992, 45.7999992, 4704);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5175, 5, '2016-08-11 01:11:31', 0, 578, 22.6000004, 42.9000015, 31057);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5177, 2, '2016-08-11 01:11:40', 1, 495, 22.5, 43, 8513);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5179, 5, '2016-08-11 01:11:53', 0, 509, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5181, 5, '2016-08-11 01:12:07', 0, 553, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5183, 5, '2016-08-11 01:12:22', 1, 544, 22.6000004, 42.9000015, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5185, 5, '2016-08-11 01:12:37', 0, 529, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5187, 5, '2016-08-11 01:12:51', 0, 594, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5189, 5, '2016-08-11 01:13:06', 1, 540, 22.6000004, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5191, 5, '2016-08-11 01:13:19', 0, 569, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5193, 5, '2016-08-11 01:13:40', 0, 524, 22.6000004, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5195, 5, '2016-08-11 01:13:55', 0, 538, 22.6000004, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5197, 5, '2016-08-11 01:14:07', 0, 538, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5199, 5, '2016-08-11 01:14:24', 0, 500, 22.6000004, 42.9000015, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5201, 5, '2016-08-11 01:14:38', 0, 549, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5203, 5, '2016-08-11 01:14:53', 0, 574, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5205, 5, '2016-08-11 01:15:07', 0, 542, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5207, 5, '2016-08-11 01:15:21', 0, 571, 22.6000004, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5209, 5, '2016-08-11 01:15:43', 0, 573, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5211, 5, '2016-08-11 01:15:57', 0, 500, 22.6000004, 42.9000015, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5213, 5, '2016-08-11 01:16:12', 0, 542, 22.6000004, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5215, 5, '2016-08-11 01:16:27', 0, 536, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5217, 5, '2016-08-11 01:16:41', 0, 548, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5219, 5, '2016-08-11 01:16:55', 0, 500, 22.6000004, 42.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5221, 1, '2016-08-11 01:17:03', 0, 542, 21.7000008, 45.2999992, 1842);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5223, 5, '2016-08-11 01:17:17', 1, 546, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5225, 5, '2016-08-11 01:17:31', 0, 544, 22.6000004, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5227, 5, '2016-08-11 01:17:45', 0, 583, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5249, 0, '2016-08-11 01:20:23', 0, 504, 22, 45.9000015, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5251, 5, '2016-08-11 01:20:37', 0, 517, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5253, 5, '2016-08-11 01:20:52', 0, 554, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5255, 5, '2016-08-11 01:21:07', 0, 507, 22.6000004, 42.9000015, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5257, 5, '2016-08-11 01:21:20', 0, 538, 22.6000004, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5259, 5, '2016-08-11 01:21:35', 0, 533, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5261, 5, '2016-08-11 01:21:49', 0, 529, 22.6000004, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5263, 5, '2016-08-11 01:22:04', 1, 531, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5265, 5, '2016-08-11 01:22:18', 0, 578, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5267, 5, '2016-08-11 01:22:32', 0, 558, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5269, 5, '2016-08-11 01:22:46', 1, 524, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5271, 5, '2016-08-11 01:23:01', 0, 571, 22.6000004, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5273, 5, '2016-08-11 01:23:16', 0, 481, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5275, 5, '2016-08-11 01:23:30', 0, 599, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5305, 5, '2016-08-11 01:27:06', 0, 547, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5307, 5, '2016-08-11 01:27:20', 0, 565, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5309, 5, '2016-08-11 01:27:34', 1, 531, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5311, 2, '2016-08-11 01:27:40', 0, 482, 22.5, 43.2000008, 4676);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5313, 5, '2016-08-11 01:27:48', 0, 511, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5315, 5, '2016-08-11 01:28:03', 0, 613, 22.6000004, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5317, 5, '2016-08-11 01:28:17', 0, 533, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5319, 5, '2016-08-11 01:28:32', 0, 520, 22.6000004, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5321, 5, '2016-08-11 01:28:45', 0, 502, 22.6000004, 42.9000015, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5323, 5, '2016-08-11 01:29:00', 0, 571, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5325, 5, '2016-08-11 01:29:15', 1, 538, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5327, 5, '2016-08-11 01:29:29', 0, 520, 22.6000004, 42.9000015, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5329, 5, '2016-08-11 01:29:50', 0, 545, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5371, 5, '2016-08-11 01:35:01', 0, 540, 22.6000004, 42.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5373, 5, '2016-08-11 01:35:13', 0, 563, 22.6000004, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5375, 5, '2016-08-11 01:35:28', 0, 549, 22.6000004, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5377, 0, '2016-08-11 01:35:36', 0, 558, 22, 45.9000015, 4370);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5379, 5, '2016-08-11 01:35:57', 0, 529, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5381, 5, '2016-08-11 01:36:12', 0, 485, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5383, 5, '2016-08-11 01:36:25', 1, 565, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5385, 5, '2016-08-11 01:36:39', 0, 483, 22.6000004, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5387, 5, '2016-08-11 01:36:55', 0, 511, 22.6000004, 42.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5389, 5, '2016-08-11 01:37:09', 1, 531, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5391, 5, '2016-08-11 01:37:25', 0, 520, 22.6000004, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5393, 5, '2016-08-11 01:37:37', 0, 504, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5395, 5, '2016-08-11 01:37:52', 0, 517, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5469, 5, '2016-08-11 01:46:43', 1, 524, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5471, 5, '2016-08-11 01:46:58', 0, 538, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5473, 5, '2016-08-11 01:47:12', 0, 560, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5056, 5, '2016-08-11 00:56:41', 0, 582, 22.6000004, 42.9000015, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5058, 5, '2016-08-11 00:56:56', 0, 494, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5060, 5, '2016-08-11 00:57:14', 0, 551, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5062, 5, '2016-08-11 00:57:34', 0, 546, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5064, 5, '2016-08-11 00:57:46', 0, 519, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5066, 5, '2016-08-11 00:58:01', 1, 548, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5068, 5, '2016-08-11 00:58:14', 0, 517, 22.6000004, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5070, 5, '2016-08-11 00:58:29', 0, 544, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5072, 5, '2016-08-11 00:58:44', 0, 566, 22.6000004, 42.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5074, 5, '2016-08-11 00:58:58', 0, 551, 22.6000004, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5076, 5, '2016-08-11 00:59:20', 0, 502, 22.6000004, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5078, 5, '2016-08-11 00:59:41', 0, 556, 22.6000004, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5080, 5, '2016-08-11 00:59:55', 0, 548, 22.6000004, 42.9000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5082, 5, '2016-08-11 01:00:10', 0, 537, 22.6000004, 42.9000015, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5084, 5, '2016-08-11 01:00:26', 1, 533, 22.6000004, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5086, 5, '2016-08-11 01:00:38', 0, 548, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5088, 5, '2016-08-11 01:00:52', 0, 558, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5090, 5, '2016-08-11 01:01:08', 0, 538, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5092, 5, '2016-08-11 01:01:28', 0, 515, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5094, 5, '2016-08-11 01:01:45', 0, 556, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5096, 5, '2016-08-11 01:01:51', 0, 500, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5098, 1, '2016-08-11 01:01:58', 0, 568, 21.7999992, 45.2999992, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5100, 5, '2016-08-11 01:02:12', 0, 548, 22.6000004, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5102, 5, '2016-08-11 01:02:26', 0, 485, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5104, 5, '2016-08-11 01:02:40', 0, 535, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5106, 5, '2016-08-11 01:02:55', 0, 529, 22.6000004, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5108, 5, '2016-08-11 01:03:09', 0, 524, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5110, 5, '2016-08-11 01:03:31', 1, 536, 22.6000004, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5112, 5, '2016-08-11 01:03:45', 0, 522, 22.6000004, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5114, 5, '2016-08-11 01:04:00', 0, 537, 22.6000004, 42.9000015, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5116, 5, '2016-08-11 01:04:14', 0, 515, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5118, 5, '2016-08-11 01:04:28', 0, 519, 22.6000004, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5120, 5, '2016-08-11 01:04:42', 0, 513, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5122, 5, '2016-08-11 01:04:57', 0, 531, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5124, 5, '2016-08-11 01:05:09', 1, 529, 22.6000004, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5126, 5, '2016-08-11 01:05:18', 0, 536, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5128, 5, '2016-08-11 01:05:33', 0, 558, 22.6000004, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5130, 5, '2016-08-11 01:05:47', 0, 524, 22.6000004, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5132, 5, '2016-08-11 01:06:02', 0, 511, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5134, 5, '2016-08-11 01:06:15', 0, 552, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5136, 5, '2016-08-11 01:06:29', 0, 552, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5138, 5, '2016-08-11 01:06:45', 0, 563, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5150, 5, '2016-08-11 01:08:11', 1, 576, 22.6000004, 42.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5152, 5, '2016-08-11 01:08:26', 0, 496, 22.6000004, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5154, 5, '2016-08-11 01:08:39', 0, 553, 22.6000004, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5156, 5, '2016-08-11 01:08:53', 0, 531, 22.6000004, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5158, 5, '2016-08-11 01:09:08', 0, 537, 22.6000004, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5160, 5, '2016-08-11 01:09:37', 0, 526, 22.6000004, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5162, 5, '2016-08-11 01:09:46', 1, 536, 22.6000004, 42.9000015, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5164, 5, '2016-08-11 01:09:59', 1, 531, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5166, 5, '2016-08-11 01:10:20', 0, 537, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5168, 5, '2016-08-11 01:10:34', 0, 547, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5170, 5, '2016-08-11 01:10:49', 0, 551, 22.6000004, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5172, 5, '2016-08-11 01:11:03', 0, 566, 22.6000004, 42.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5174, 5, '2016-08-11 01:11:15', 0, 542, 22.6000004, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5176, 5, '2016-08-11 01:11:34', 0, 533, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5196, 5, '2016-08-11 01:14:03', 0, 537, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5198, 5, '2016-08-11 01:14:17', 0, 515, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5200, 5, '2016-08-11 01:14:31', 0, 553, 22.6000004, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5248, 5, '2016-08-11 01:20:20', 0, 531, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5250, 5, '2016-08-11 01:20:31', 0, 513, 22.6000004, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5252, 5, '2016-08-11 01:20:45', 0, 515, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5254, 5, '2016-08-11 01:20:59', 0, 558, 22.6000004, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5256, 5, '2016-08-11 01:21:14', 0, 580, 22.6000004, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5258, 5, '2016-08-11 01:21:30', 0, 578, 22.6000004, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5260, 5, '2016-08-11 01:21:43', 0, 554, 22.6000004, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5272, 5, '2016-08-11 01:23:08', 0, 549, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5274, 5, '2016-08-11 01:23:22', 0, 536, 22.6000004, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5276, 5, '2016-08-11 01:23:37', 0, 538, 22.6000004, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5278, 5, '2016-08-11 01:23:52', 0, 507, 22.6000004, 42.9000015, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5280, 5, '2016-08-11 01:24:06', 0, 538, 22.6000004, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5282, 5, '2016-08-11 01:24:26', 0, 542, 22.6000004, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5284, 5, '2016-08-11 01:24:42', 0, 552, 22.6000004, 42.9000015, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5286, 5, '2016-08-11 01:24:56', 0, 549, 22.6000004, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5288, 3, '2016-08-11 01:25:04', 1, 602, 21.7999992, 45.7999992, 5673);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5290, 5, '2016-08-11 01:25:18', 0, 531, 22.6000004, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5292, 5, '2016-08-11 01:25:32', 0, 558, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5294, 5, '2016-08-11 01:25:47', 0, 533, 22.6000004, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5296, 5, '2016-08-11 01:26:00', 0, 540, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5298, 5, '2016-08-11 01:26:15', 0, 504, 22.6000004, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5300, 5, '2016-08-11 01:26:30', 0, 567, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5302, 5, '2016-08-11 01:26:44', 0, 531, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5304, 5, '2016-08-11 01:26:59', 0, 552, 22.6000004, 42.9000015, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5306, 5, '2016-08-11 01:27:09', 0, 540, 22.6000004, 42.9000015, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5362, 5, '2016-08-11 01:33:56', 0, 545, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5364, 5, '2016-08-11 01:34:09', 0, 536, 22.6000004, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5366, 5, '2016-08-11 01:34:23', 0, 547, 22.6000004, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5368, 5, '2016-08-11 01:34:38', 0, 507, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5370, 5, '2016-08-11 01:34:53', 0, 547, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5372, 5, '2016-08-11 01:35:07', 0, 517, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5374, 5, '2016-08-11 01:35:21', 0, 536, 22.6000004, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5376, 5, '2016-08-11 01:35:31', 0, 507, 22.6000004, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5378, 5, '2016-08-11 01:35:42', 0, 502, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5380, 5, '2016-08-11 01:36:04', 0, 509, 22.6000004, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5382, 5, '2016-08-11 01:36:19', 0, 538, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5384, 5, '2016-08-11 01:36:33', 1, 545, 22.6000004, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5386, 5, '2016-08-11 01:36:47', 0, 552, 22.6000004, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5388, 5, '2016-08-11 01:37:01', 1, 533, 22.6000004, 42.7999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5418, 5, '2016-08-11 01:40:37', 0, 515, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5448, 5, '2016-08-11 01:44:05', 0, 538, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5450, 5, '2016-08-11 01:44:20', 1, 513, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5452, 5, '2016-08-11 01:44:35', 0, 504, 22.6000004, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5454, 5, '2016-08-11 01:44:49', 0, 509, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5456, 5, '2016-08-11 01:45:03', 0, 524, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5458, 5, '2016-08-11 01:45:17', 0, 552, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5460, 5, '2016-08-11 01:45:32', 0, 511, 22.6000004, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5462, 5, '2016-08-11 01:45:45', 0, 569, 22.6000004, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5057, 5, '2016-08-11 00:56:50', 0, 569, 22.6000004, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5059, 5, '2016-08-11 00:57:02', 0, 546, 22.6000004, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5061, 5, '2016-08-11 00:57:25', 0, 539, 22.6000004, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5063, 5, '2016-08-11 00:57:39', 0, 517, 22.6000004, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5065, 5, '2016-08-11 00:57:54', 0, 504, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5067, 5, '2016-08-11 00:58:08', 0, 529, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5069, 5, '2016-08-11 00:58:23', 0, 560, 22.6000004, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5071, 5, '2016-08-11 00:58:36', 1, 502, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5073, 5, '2016-08-11 00:58:50', 0, 522, 22.6000004, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5075, 5, '2016-08-11 00:59:05', 0, 528, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5077, 5, '2016-08-11 00:59:34', 0, 511, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5079, 5, '2016-08-11 00:59:49', 0, 528, 22.6000004, 42.9000015, 32835);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5081, 5, '2016-08-11 01:00:02', 0, 517, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5083, 5, '2016-08-11 01:00:17', 1, 555, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5113, 5, '2016-08-11 01:03:52', 0, 553, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5115, 5, '2016-08-11 01:04:04', 0, 533, 22.6000004, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5117, 5, '2016-08-11 01:04:21', 0, 522, 22.6000004, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5119, 5, '2016-08-11 01:04:37', 0, 544, 22.6000004, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5121, 5, '2016-08-11 01:04:50', 0, 556, 22.6000004, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5123, 5, '2016-08-11 01:05:04', 1, 498, 22.6000004, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5125, 0, '2016-08-11 01:05:12', 0, 526, 22, 45.9000015, 4392);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5127, 5, '2016-08-11 01:05:26', 0, 515, 22.6000004, 42.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5153, 5, '2016-08-11 01:08:32', 0, 524, 22.6000004, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5155, 5, '2016-08-11 01:08:47', 0, 560, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5157, 5, '2016-08-11 01:09:01', 0, 537, 22.6000004, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5159, 5, '2016-08-11 01:09:15', 0, 515, 22.6000004, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5165, 5, '2016-08-11 01:10:13', 0, 580, 22.6000004, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5167, 5, '2016-08-11 01:10:27', 0, 515, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5169, 5, '2016-08-11 01:10:47', 0, 569, 22.6000004, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5171, 5, '2016-08-11 01:10:55', 0, 533, 22.6000004, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5173, 5, '2016-08-11 01:11:09', 0, 560, 22.6000004, 42.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5229, 5, '2016-08-11 01:18:00', 0, 507, 22.6000004, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5231, 5, '2016-08-11 01:18:14', 0, 554, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5233, 5, '2016-08-11 01:18:28', 0, 522, 22.6000004, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5235, 5, '2016-08-11 01:18:43', 0, 558, 22.6000004, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5237, 5, '2016-08-11 01:18:57', 0, 582, 22.6000004, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5239, 5, '2016-08-11 01:19:11', 0, 549, 22.6000004, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5241, 5, '2016-08-11 01:19:26', 0, 549, 22.6000004, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5243, 5, '2016-08-11 01:19:40', 0, 496, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5245, 5, '2016-08-11 01:19:55', 0, 549, 22.6000004, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5247, 5, '2016-08-11 01:20:15', 1, 552, 22.6000004, 42.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5277, 5, '2016-08-11 01:23:44', 0, 504, 22.6000004, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5279, 5, '2016-08-11 01:23:58', 0, 613, 22.6000004, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5281, 5, '2016-08-11 01:24:08', 0, 529, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5283, 5, '2016-08-11 01:24:34', 0, 567, 22.6000004, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5285, 5, '2016-08-11 01:24:49', 0, 560, 22.6000004, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5287, 5, '2016-08-11 01:24:57', 0, 513, 22.6000004, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5289, 5, '2016-08-11 01:25:10', 1, 574, 22.6000004, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5291, 5, '2016-08-11 01:25:25', 0, 554, 22.6000004, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5293, 5, '2016-08-11 01:25:39', 0, 545, 22.6000004, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5295, 5, '2016-08-11 01:25:54', 0, 529, 22.6000004, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5297, 5, '2016-08-11 01:26:08', 0, 558, 22.6000004, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5299, 5, '2016-08-11 01:26:22', 0, 524, 22.6000004, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5301, 5, '2016-08-11 01:26:37', 0, 533, 22.6000004, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5303, 5, '2016-08-11 01:26:45', 1, 529, 22.6000004, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5331, 5, '2016-08-11 01:30:05', 0, 531, 22.6000004, 42.9000015, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5333, 5, '2016-08-11 01:30:19', 0, 551, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5335, 5, '2016-08-11 01:30:34', 0, 565, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5337, 5, '2016-08-11 01:30:48', 0, 578, 22.6000004, 42.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5339, 5, '2016-08-11 01:31:02', 0, 580, 22.6000004, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5341, 5, '2016-08-11 01:31:17', 0, 552, 22.6000004, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5343, 5, '2016-08-11 01:31:30', 0, 545, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5345, 5, '2016-08-11 01:31:53', 0, 545, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5347, 5, '2016-08-11 01:32:07', 0, 585, 22.6000004, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5349, 5, '2016-08-11 01:32:22', 1, 547, 22.6000004, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5351, 5, '2016-08-11 01:32:35', 0, 580, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5353, 1, '2016-08-11 01:32:43', 0, 558, 21.7000008, 45.4000015, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5355, 5, '2016-08-11 01:32:58', 0, 542, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5357, 5, '2016-08-11 01:33:12', 0, 513, 22.6000004, 42.7999992, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5359, 5, '2016-08-11 01:33:26', 0, 545, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5361, 5, '2016-08-11 01:33:41', 0, 502, 22.6000004, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5363, 5, '2016-08-11 01:34:01', 1, 533, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5365, 5, '2016-08-11 01:34:10', 0, 513, 22.6000004, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5367, 5, '2016-08-11 01:34:31', 0, 552, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5369, 5, '2016-08-11 01:34:45', 1, 515, 22.6000004, 42.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5397, 5, '2016-08-11 01:38:06', 0, 529, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5399, 5, '2016-08-11 01:38:17', 0, 520, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5401, 5, '2016-08-11 01:38:35', 0, 517, 22.6000004, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5403, 5, '2016-08-11 01:38:49', 0, 540, 22.6000004, 42.7999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5405, 5, '2016-08-11 01:39:03', 0, 552, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5407, 5, '2016-08-11 01:39:18', 0, 529, 22.6000004, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5409, 5, '2016-08-11 01:39:32', 1, 571, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5411, 5, '2016-08-11 01:39:47', 0, 545, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5413, 5, '2016-08-11 01:40:08', 0, 513, 22.6000004, 42.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5415, 5, '2016-08-11 01:40:15', 0, 536, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5417, 5, '2016-08-11 01:40:29', 0, 554, 22.6000004, 42.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5419, 5, '2016-08-11 01:40:45', 0, 549, 22.6000004, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5421, 5, '2016-08-11 01:40:59', 0, 496, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5423, 5, '2016-08-11 01:41:13', 1, 517, 22.6000004, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5425, 5, '2016-08-11 01:41:27', 0, 556, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5427, 5, '2016-08-11 01:41:39', 0, 522, 22.6000004, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5429, 5, '2016-08-11 01:41:56', 1, 533, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5431, 5, '2016-08-11 01:42:10', 0, 563, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5433, 5, '2016-08-11 01:42:20', 0, 545, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5435, 5, '2016-08-11 01:42:32', 0, 556, 22.6000004, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5437, 5, '2016-08-11 01:42:49', 0, 545, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5439, 5, '2016-08-11 01:43:01', 0, 547, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5441, 5, '2016-08-11 01:43:14', 0, 504, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5443, 5, '2016-08-11 01:43:29', 0, 522, 22.6000004, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5445, 5, '2016-08-11 01:43:44', 0, 552, 22.6000004, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5447, 5, '2016-08-11 01:44:00', 0, 533, 22.6000004, 42.7999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5449, 5, '2016-08-11 01:44:12', 0, 565, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5451, 5, '2016-08-11 01:44:27', 1, 563, 22.6000004, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5453, 5, '2016-08-11 01:44:40', 0, 554, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5455, 5, '2016-08-11 01:44:55', 0, 549, 22.6000004, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5457, 5, '2016-08-11 01:45:10', 0, 547, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5459, 5, '2016-08-11 01:45:26', 0, 565, 22.6000004, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5461, 5, '2016-08-11 01:45:39', 0, 540, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5463, 5, '2016-08-11 01:45:52', 0, 558, 22.6000004, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5465, 5, '2016-08-11 01:46:16', 0, 533, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5467, 5, '2016-08-11 01:46:28', 0, 567, 22.6000004, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5483, 5, '2016-08-11 01:48:16', 0, 569, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5485, 5, '2016-08-11 01:48:30', 0, 549, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5501, 5, '2016-08-11 01:50:26', 0, 563, 22.6000004, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5503, 5, '2016-08-11 01:50:40', 0, 558, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5507, 5, '2016-08-11 01:51:04', 1, 549, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5509, 5, '2016-08-11 01:51:17', 0, 545, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5511, 5, '2016-08-11 01:51:30', 1, 549, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5513, 5, '2016-08-11 01:51:44', 0, 509, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5515, 5, '2016-08-11 01:52:00', 0, 547, 22.6000004, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5464, 5, '2016-08-11 01:46:07', 1, 536, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5466, 5, '2016-08-11 01:46:22', 0, 549, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5468, 5, '2016-08-11 01:46:36', 0, 515, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5470, 5, '2016-08-11 01:46:52', 0, 571, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5472, 5, '2016-08-11 01:47:04', 0, 513, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5502, 5, '2016-08-11 01:50:33', 0, 517, 22.6000004, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5506, 5, '2016-08-11 01:50:54', 1, 552, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5508, 5, '2016-08-11 01:51:08', 0, 517, 22.6000004, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5510, 5, '2016-08-11 01:51:23', 0, 549, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5512, 5, '2016-08-11 01:51:37', 1, 547, 22.6000004, 42.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5514, 5, '2016-08-11 01:51:50', 0, 549, 22.6000004, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5516, 5, '2016-08-11 01:52:06', 0, 515, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5518, 5, '2016-08-11 01:52:20', 0, 524, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5475, 5, '2016-08-11 01:47:23', 0, 542, 22.6000004, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5477, 5, '2016-08-11 01:47:34', 0, 540, 22.6000004, 42.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5479, 5, '2016-08-11 01:47:49', 0, 565, 22.6000004, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5481, 5, '2016-08-11 01:48:03', 0, 563, 22.6000004, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5487, 5, '2016-08-11 01:48:45', 0, 520, 22.6000004, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5489, 5, '2016-08-11 01:49:00', 0, 547, 22.6000004, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5491, 5, '2016-08-11 01:49:14', 1, 565, 22.6000004, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5493, 5, '2016-08-11 01:49:30', 0, 560, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5495, 5, '2016-08-11 01:49:42', 0, 569, 22.6000004, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5497, 5, '2016-08-11 01:49:57', 0, 547, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5499, 5, '2016-08-11 01:50:11', 0, 524, 22.6000004, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5505, 0, '2016-08-11 01:50:47', 0, 540, 22, 45.9000015, 4104);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5517, 5, '2016-08-11 01:52:14', 0, 513, 22.6000004, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5476, 1, '2016-08-11 01:47:28', 0, 570, 21.7000008, 45.4000015, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5478, 5, '2016-08-11 01:47:40', 0, 515, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5480, 5, '2016-08-11 01:47:54', 0, 549, 22.6000004, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5482, 5, '2016-08-11 01:48:10', 0, 515, 22.6000004, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5484, 5, '2016-08-11 01:48:24', 0, 520, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5486, 5, '2016-08-11 01:48:38', 0, 533, 22.6000004, 42.7999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5488, 5, '2016-08-11 01:48:53', 0, 563, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5490, 5, '2016-08-11 01:49:07', 1, 552, 22.6000004, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5492, 5, '2016-08-11 01:49:21', 0, 540, 22.6000004, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5494, 5, '2016-08-11 01:49:36', 0, 547, 22.6000004, 42.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5496, 5, '2016-08-11 01:49:50', 0, 515, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5498, 5, '2016-08-11 01:50:05', 0, 552, 22.6000004, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5500, 5, '2016-08-11 01:50:19', 0, 531, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5504, 5, '2016-08-11 01:50:42', 0, 545, 22.6000004, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5519, 5, '2016-08-11 01:52:28', 0, 540, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5520, 5, '2016-08-11 01:52:35', 0, 533, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5521, 5, '2016-08-11 01:52:43', 0, 517, 22.6000004, 42.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5522, 5, '2016-08-11 01:52:50', 0, 556, 22.6000004, 42.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5523, 5, '2016-08-11 01:52:56', 0, 565, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5524, 5, '2016-08-11 01:53:04', 0, 552, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5525, 5, '2016-08-11 01:53:11', 0, 552, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5526, 5, '2016-08-11 01:53:18', 0, 563, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5527, 5, '2016-08-11 01:53:29', 0, 547, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5528, 5, '2016-08-11 01:53:33', 0, 542, 22.6000004, 42.7999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5529, 5, '2016-08-11 01:53:40', 0, 554, 22.6000004, 42.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5530, 5, '2016-08-11 01:53:46', 0, 542, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5531, 5, '2016-08-11 01:53:55', 0, 576, 22.6000004, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5532, 5, '2016-08-11 01:54:02', 1, 599, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5533, 5, '2016-08-11 01:54:08', 0, 526, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5534, 5, '2016-08-11 01:54:14', 0, 504, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5535, 5, '2016-08-11 01:54:22', 0, 556, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5536, 5, '2016-08-11 01:54:30', 0, 496, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5537, 5, '2016-08-11 01:54:39', 0, 526, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5538, 5, '2016-08-11 01:54:44', 0, 533, 22.6000004, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5539, 5, '2016-08-11 01:54:53', 0, 540, 22.6000004, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5540, 5, '2016-08-11 01:55:06', 0, 560, 22.6000004, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5541, 5, '2016-08-11 01:55:13', 0, 513, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5542, 5, '2016-08-11 01:55:18', 0, 565, 22.6000004, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5543, 3, '2016-08-11 01:55:20', 1, 600, 21.7999992, 45.7999992, 8969);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5544, 5, '2016-08-11 01:55:28', 0, 515, 22.6000004, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5545, 5, '2016-08-11 01:55:34', 0, 558, 22.6000004, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5546, 5, '2016-08-11 01:55:42', 1, 576, 22.6000004, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5547, 5, '2016-08-11 01:55:49', 1, 531, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5548, 5, '2016-08-11 01:55:56', 0, 558, 22.6000004, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5549, 5, '2016-08-11 01:56:03', 0, 558, 22.6000004, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5550, 5, '2016-08-11 01:56:10', 0, 560, 22.6000004, 42.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5551, 5, '2016-08-11 01:56:18', 1, 540, 22.6000004, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5552, 5, '2016-08-11 01:56:18', 1, 549, 22.6000004, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5553, 5, '2016-08-11 01:56:31', 0, 529, 22.6000004, 42.7999992, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5554, 5, '2016-08-11 01:56:39', 0, 522, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5555, 5, '2016-08-11 01:56:47', 0, 511, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5556, 5, '2016-08-11 01:56:54', 0, 545, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5557, 5, '2016-08-11 01:57:01', 0, 511, 22.6000004, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5558, 5, '2016-08-11 01:57:07', 0, 522, 22.6000004, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5559, 5, '2016-08-11 01:57:15', 0, 563, 22.6000004, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5560, 5, '2016-08-11 01:57:22', 0, 554, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5561, 5, '2016-08-11 01:57:30', 0, 540, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5562, 5, '2016-08-11 01:57:31', 0, 542, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5563, 2, '2016-08-11 01:57:37', 1, 487, 22.7999992, 43.2000008, 13432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5564, 5, '2016-08-11 01:57:43', 0, 545, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5565, 5, '2016-08-11 01:57:52', 0, 585, 22.6000004, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5566, 5, '2016-08-11 01:57:58', 0, 578, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5567, 5, '2016-08-11 01:58:06', 0, 531, 22.6000004, 42.7999992, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5568, 5, '2016-08-11 01:58:13', 0, 498, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5569, 5, '2016-08-11 01:58:19', 0, 571, 22.6000004, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5570, 5, '2016-08-11 01:58:27', 0, 531, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5571, 5, '2016-08-11 01:58:34', 0, 540, 22.6000004, 42.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5572, 5, '2016-08-11 01:58:42', 0, 536, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5573, 5, '2016-08-11 01:58:48', 1, 549, 22.6000004, 42.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5574, 5, '2016-08-11 01:58:55', 0, 540, 22.6000004, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5575, 5, '2016-08-11 01:59:05', 0, 540, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5576, 5, '2016-08-11 01:59:10', 0, 520, 22.6000004, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5577, 5, '2016-08-11 01:59:17', 0, 560, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5578, 5, '2016-08-11 01:59:25', 0, 536, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5579, 5, '2016-08-11 01:59:32', 0, 545, 22.6000004, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5580, 5, '2016-08-11 01:59:39', 0, 565, 22.6000004, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5581, 5, '2016-08-11 01:59:46', 0, 507, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5582, 5, '2016-08-11 01:59:53', 0, 520, 22.6000004, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5583, 5, '2016-08-11 02:00:00', 0, 524, 22.6000004, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5584, 5, '2016-08-11 02:00:07', 0, 540, 22.6000004, 42.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5585, 5, '2016-08-11 02:00:15', 0, 533, 22.6000004, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5586, 5, '2016-08-11 02:00:22', 0, 547, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5587, 5, '2016-08-11 02:00:30', 1, 517, 22.6000004, 42.7999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5588, 5, '2016-08-11 02:00:36', 1, 538, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5589, 5, '2016-08-11 02:00:41', 0, 531, 22.6000004, 42.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5590, 5, '2016-08-11 02:00:51', 0, 529, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5591, 5, '2016-08-11 02:00:57', 0, 536, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5592, 5, '2016-08-11 02:01:05', 0, 549, 22.6000004, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5593, 5, '2016-08-11 02:01:12', 1, 560, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5594, 5, '2016-08-11 02:01:19', 0, 540, 22.6000004, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5595, 5, '2016-08-11 02:01:29', 0, 547, 22.6000004, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5596, 5, '2016-08-11 02:01:33', 0, 529, 22.6000004, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5597, 5, '2016-08-11 02:01:41', 0, 515, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5598, 5, '2016-08-11 02:01:48', 0, 556, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5599, 5, '2016-08-11 02:01:55', 0, 492, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5600, 5, '2016-08-11 02:01:59', 0, 536, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5601, 5, '2016-08-11 02:02:09', 0, 549, 22.6000004, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5602, 5, '2016-08-11 02:02:23', 0, 515, 22.6000004, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5603, 5, '2016-08-11 02:02:31', 0, 542, 22.6000004, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5604, 5, '2016-08-11 02:02:34', 0, 565, 22.6000004, 42.7999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5605, 1, '2016-08-11 02:02:39', 0, 544, 21.7000008, 45.4000015, 2454);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5606, 5, '2016-08-11 02:02:45', 0, 552, 22.6000004, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5607, 5, '2016-08-11 02:02:53', 0, 547, 22.6000004, 42.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5608, 5, '2016-08-11 02:03:00', 0, 558, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5609, 5, '2016-08-11 02:03:07', 0, 533, 22.6000004, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5610, 5, '2016-08-11 02:03:14', 0, 574, 22.6000004, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5611, 5, '2016-08-11 02:03:21', 0, 538, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5612, 5, '2016-08-11 02:03:29', 0, 567, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5614, 5, '2016-08-11 02:03:44', 1, 545, 22.6000004, 42.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5616, 5, '2016-08-11 02:03:57', 0, 515, 22.6000004, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5618, 5, '2016-08-11 02:04:11', 0, 513, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5620, 5, '2016-08-11 02:04:26', 0, 524, 22.6000004, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5622, 5, '2016-08-11 02:04:40', 0, 524, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5624, 5, '2016-08-11 02:05:03', 0, 560, 22.6000004, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5626, 5, '2016-08-11 02:05:16', 1, 522, 22.6000004, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5628, 5, '2016-08-11 02:05:31', 0, 538, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5630, 5, '2016-08-11 02:05:45', 0, 481, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5632, 5, '2016-08-11 02:05:59', 1, 567, 22.6000004, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5634, 5, '2016-08-11 02:06:13', 0, 542, 22.6000004, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5658, 5, '2016-08-11 02:09:06', 0, 511, 22.6000004, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5666, 5, '2016-08-11 02:10:11', 1, 556, 22.6000004, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5668, 5, '2016-08-11 02:10:26', 0, 524, 22.6000004, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5670, 3, '2016-08-11 02:10:30', 1, 649, 21.7999992, 45.7000008, 14384);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5672, 5, '2016-08-11 02:10:39', 0, 507, 22.6000004, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5674, 5, '2016-08-11 02:10:53', 0, 498, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5676, 5, '2016-08-11 02:11:08', 0, 538, 22.6000004, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5678, 5, '2016-08-11 02:11:23', 0, 571, 22.6000004, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5680, 5, '2016-08-11 02:11:36', 0, 522, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5682, 5, '2016-08-11 02:11:51', 0, 558, 22.6000004, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5684, 5, '2016-08-11 02:12:06', 0, 483, 22.6000004, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5686, 5, '2016-08-11 02:12:20', 0, 529, 22.6000004, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5688, 5, '2016-08-11 02:12:42', 0, 552, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5690, 2, '2016-08-11 02:12:43', 1, 509, 22.8999996, 43.0999985, 2422);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5692, 5, '2016-08-11 02:12:56', 0, 526, 22.6000004, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5716, 5, '2016-08-11 02:15:55', 0, 513, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5718, 5, '2016-08-11 02:16:10', 0, 540, 22.6000004, 42.7000008, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5720, 5, '2016-08-11 02:16:24', 0, 504, 22.6000004, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5722, 5, '2016-08-11 02:16:38', 0, 545, 22.6000004, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5724, 5, '2016-08-11 02:16:53', 0, 526, 22.6000004, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5726, 5, '2016-08-11 02:17:08', 0, 563, 22.6000004, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5728, 5, '2016-08-11 02:17:22', 0, 526, 22.6000004, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5730, 5, '2016-08-11 02:17:36', 0, 547, 22.6000004, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5732, 5, '2016-08-11 02:17:45', 0, 515, 22.6000004, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5734, 5, '2016-08-11 02:17:58', 1, 520, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5736, 5, '2016-08-11 02:18:12', 0, 517, 22.6000004, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5738, 5, '2016-08-11 02:18:26', 0, 558, 22.6000004, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5740, 5, '2016-08-11 02:18:40', 0, 545, 22.6000004, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5742, 5, '2016-08-11 02:18:49', 0, 515, 22.6000004, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5748, 5, '2016-08-11 02:19:38', 0, 542, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5750, 5, '2016-08-11 02:19:52', 1, 538, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5752, 5, '2016-08-11 02:20:07', 0, 542, 22.6000004, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5760, 5, '2016-08-11 02:21:04', 0, 545, 22.6000004, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5762, 5, '2016-08-11 02:21:19', 0, 513, 22.6000004, 42.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5764, 5, '2016-08-11 02:21:28', 0, 524, 22.6000004, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5766, 5, '2016-08-11 02:21:40', 0, 524, 22.6000004, 42.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5768, 5, '2016-08-11 02:21:54', 0, 545, 22.6000004, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5770, 5, '2016-08-11 02:22:09', 0, 490, 22.6000004, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5772, 5, '2016-08-11 02:22:20', 0, 498, 22.6000004, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5613, 5, '2016-08-11 02:03:35', 1, 533, 22.6000004, 42.7999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5615, 5, '2016-08-11 02:03:50', 0, 533, 22.6000004, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5617, 5, '2016-08-11 02:04:05', 0, 563, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5619, 5, '2016-08-11 02:04:15', 0, 540, 22.6000004, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5621, 5, '2016-08-11 02:04:33', 0, 515, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5623, 5, '2016-08-11 02:04:55', 0, 533, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5625, 5, '2016-08-11 02:05:09', 0, 536, 22.6000004, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5627, 5, '2016-08-11 02:05:17', 1, 515, 22.6000004, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5629, 5, '2016-08-11 02:05:37', 0, 500, 22.6000004, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5631, 5, '2016-08-11 02:05:52', 0, 536, 22.6000004, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5633, 5, '2016-08-11 02:06:07', 0, 481, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5635, 5, '2016-08-11 02:06:17', 0, 490, 22.6000004, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5637, 5, '2016-08-11 02:06:35', 0, 540, 22.6000004, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5639, 5, '2016-08-11 02:06:49', 0, 531, 22.6000004, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5641, 5, '2016-08-11 02:07:04', 0, 507, 22.6000004, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5643, 5, '2016-08-11 02:07:19', 0, 473, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5645, 5, '2016-08-11 02:07:33', 0, 520, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5647, 5, '2016-08-11 02:07:47', 0, 538, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5649, 5, '2016-08-11 02:08:01', 0, 540, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5651, 5, '2016-08-11 02:08:16', 0, 504, 22.6000004, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5653, 5, '2016-08-11 02:08:31', 0, 542, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5655, 5, '2016-08-11 02:08:45', 0, 531, 22.6000004, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5657, 5, '2016-08-11 02:08:59', 0, 536, 22.6000004, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5659, 5, '2016-08-11 02:09:13', 0, 542, 22.6000004, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5661, 5, '2016-08-11 02:09:28', 0, 517, 22.6000004, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5663, 5, '2016-08-11 02:09:43', 0, 538, 22.6000004, 42.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5665, 5, '2016-08-11 02:09:57', 0, 526, 22.6000004, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5667, 5, '2016-08-11 02:10:18', 0, 517, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5669, 5, '2016-08-11 02:10:29', 0, 540, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5671, 3, '2016-08-11 02:10:32', 1, 649, 21.7999992, 45.7000008, 14384);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5673, 5, '2016-08-11 02:10:47', 1, 552, 22.6000004, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5675, 5, '2016-08-11 02:11:01', 0, 504, 22.6000004, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5677, 5, '2016-08-11 02:11:15', 0, 522, 22.6000004, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5687, 5, '2016-08-11 02:12:35', 0, 496, 22.6000004, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5689, 5, '2016-08-11 02:12:42', 0, 524, 22.6000004, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5691, 2, '2016-08-11 02:12:48', 1, 509, 22.8999996, 43.0999985, 2422);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5693, 5, '2016-08-11 02:13:03', 0, 563, 22.6000004, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5695, 5, '2016-08-11 02:13:18', 1, 504, 22.6000004, 42.7999992, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5697, 5, '2016-08-11 02:13:32', 0, 542, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5699, 5, '2016-08-11 02:13:46', 0, 545, 22.6000004, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5701, 5, '2016-08-11 02:14:01', 0, 558, 22.6000004, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5703, 5, '2016-08-11 02:14:15', 0, 554, 22.6000004, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5705, 5, '2016-08-11 02:14:36', 0, 533, 22.6000004, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5707, 5, '2016-08-11 02:14:52', 1, 522, 22.6000004, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5709, 5, '2016-08-11 02:15:06', 0, 533, 22.6000004, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5711, 5, '2016-08-11 02:15:20', 0, 529, 22.6000004, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5713, 5, '2016-08-11 02:15:34', 1, 533, 22.6000004, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5715, 5, '2016-08-11 02:15:48', 0, 529, 22.6000004, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5717, 5, '2016-08-11 02:16:02', 0, 515, 22.6000004, 42.7000008, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5719, 5, '2016-08-11 02:16:17', 0, 513, 22.6000004, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5721, 5, '2016-08-11 02:16:32', 0, 558, 22.6000004, 42.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5723, 5, '2016-08-11 02:16:46', 0, 560, 22.6000004, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5725, 5, '2016-08-11 02:17:00', 0, 531, 22.6000004, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5727, 5, '2016-08-11 02:17:14', 0, 560, 22.6000004, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5729, 5, '2016-08-11 02:17:28', 0, 549, 22.6000004, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5731, 5, '2016-08-11 02:17:43', 0, 556, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5733, 1, '2016-08-11 02:17:51', 0, 584, 21.7000008, 45.4000015, 4136);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5735, 5, '2016-08-11 02:18:04', 1, 533, 22.6000004, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5737, 5, '2016-08-11 02:18:19', 0, 515, 22.6000004, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5739, 5, '2016-08-11 02:18:34', 0, 515, 22.6000004, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5741, 5, '2016-08-11 02:18:48', 0, 529, 22.6000004, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5743, 5, '2016-08-11 02:19:02', 0, 542, 22.6000004, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5745, 5, '2016-08-11 02:19:16', 0, 552, 22.6000004, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5747, 5, '2016-08-11 02:19:31', 0, 509, 22.6000004, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5753, 5, '2016-08-11 02:20:13', 0, 569, 22.6000004, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5755, 5, '2016-08-11 02:20:28', 0, 576, 22.6000004, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5763, 5, '2016-08-11 02:21:26', 0, 538, 22.6000004, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5765, 0, '2016-08-11 02:21:34', 0, 554, 21.7000008, 46.0999985, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5767, 5, '2016-08-11 02:21:48', 0, 509, 22.6000004, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5769, 5, '2016-08-11 02:22:03', 0, 522, 22.6000004, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5771, 5, '2016-08-11 02:22:16', 0, 549, 22.6000004, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5773, 5, '2016-08-11 02:22:45', 0, 504, 22.6000004, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5774, 5, '2016-08-11 02:22:52', 1, 513, 22.6000004, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5775, 5, '2016-08-11 02:22:59', 0, 515, 22.6000004, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5776, 5, '2016-08-11 02:23:06', 0, 515, 22.6000004, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5777, 5, '2016-08-11 02:23:14', 0, 554, 22.6000004, 42.7000008, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5778, 5, '2016-08-11 02:23:19', 0, 515, 22.6000004, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5779, 5, '2016-08-11 02:23:28', 0, 540, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5780, 5, '2016-08-11 02:23:35', 0, 517, 22.6000004, 42.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5784, 5, '2016-08-11 02:24:04', 0, 554, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5785, 5, '2016-08-11 02:24:11', 0, 526, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5786, 5, '2016-08-11 02:24:18', 0, 524, 22.6000004, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5787, 5, '2016-08-11 02:24:18', 0, 580, 22.6000004, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5788, 5, '2016-08-11 02:24:33', 1, 545, 22.6000004, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5789, 5, '2016-08-11 02:24:39', 1, 515, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5790, 5, '2016-08-11 02:24:47', 0, 576, 22.6000004, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5791, 5, '2016-08-11 02:24:54', 0, 563, 22.6000004, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5792, 5, '2016-08-11 02:25:02', 0, 540, 22.6000004, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5793, 5, '2016-08-11 02:25:09', 0, 545, 22.6000004, 42.7000008, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5794, 5, '2016-08-11 02:25:15', 0, 558, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5795, 5, '2016-08-11 02:25:23', 0, 578, 22.6000004, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5796, 5, '2016-08-11 02:25:30', 0, 520, 22.6000004, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5797, 5, '2016-08-11 02:25:38', 0, 536, 22.6000004, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5804, 5, '2016-08-11 02:26:20', 0, 576, 22.6000004, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5805, 5, '2016-08-11 02:26:27', 0, 538, 22.6000004, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5806, 5, '2016-08-11 02:26:35', 0, 552, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5807, 5, '2016-08-11 02:26:41', 0, 540, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5808, 5, '2016-08-11 02:26:49', 0, 542, 22.6000004, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5809, 5, '2016-08-11 02:26:56', 0, 554, 22.6000004, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5810, 5, '2016-08-11 02:27:03', 0, 526, 22.7000008, 42.7000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5811, 5, '2016-08-11 02:27:11', 0, 565, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5812, 5, '2016-08-11 02:27:17', 0, 533, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5813, 5, '2016-08-11 02:27:26', 0, 531, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5814, 5, '2016-08-11 02:27:32', 0, 552, 22.6000004, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5815, 5, '2016-08-11 02:27:39', 1, 524, 22.7000008, 42.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5816, 5, '2016-08-11 02:27:47', 0, 547, 22.6000004, 42.7000008, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5817, 5, '2016-08-11 02:27:53', 0, 563, 22.6000004, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5636, 0, '2016-08-11 02:06:29', 0, 511, 22, 45.7999992, 5248);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5638, 5, '2016-08-11 02:06:43', 0, 522, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5640, 5, '2016-08-11 02:06:57', 0, 513, 22.6000004, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5642, 5, '2016-08-11 02:07:11', 0, 540, 22.6000004, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5644, 5, '2016-08-11 02:07:25', 0, 511, 22.6000004, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5646, 5, '2016-08-11 02:07:40', 0, 520, 22.6000004, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5648, 5, '2016-08-11 02:07:55', 0, 520, 22.6000004, 42.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5650, 5, '2016-08-11 02:08:09', 0, 524, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5652, 5, '2016-08-11 02:08:23', 1, 556, 22.6000004, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5654, 5, '2016-08-11 02:08:37', 0, 526, 22.6000004, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5656, 5, '2016-08-11 02:08:51', 0, 545, 22.6000004, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5660, 5, '2016-08-11 02:09:21', 0, 554, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5662, 5, '2016-08-11 02:09:35', 0, 565, 22.6000004, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5664, 5, '2016-08-11 02:09:45', 0, 540, 22.6000004, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5694, 5, '2016-08-11 02:13:10', 1, 513, 22.6000004, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5696, 5, '2016-08-11 02:13:24', 0, 498, 22.6000004, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5698, 5, '2016-08-11 02:13:39', 0, 540, 22.6000004, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5700, 5, '2016-08-11 02:13:53', 0, 520, 22.6000004, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5702, 5, '2016-08-11 02:14:08', 0, 500, 22.6000004, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5704, 5, '2016-08-11 02:14:17', 0, 531, 22.6000004, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5706, 5, '2016-08-11 02:14:44', 0, 574, 22.6000004, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5708, 5, '2016-08-11 02:14:58', 1, 538, 22.6000004, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5710, 5, '2016-08-11 02:15:12', 0, 529, 22.6000004, 42.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5712, 5, '2016-08-11 02:15:26', 0, 536, 22.6000004, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5714, 5, '2016-08-11 02:15:43', 0, 542, 22.6000004, 42.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5744, 5, '2016-08-11 02:19:10', 0, 513, 22.6000004, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5746, 5, '2016-08-11 02:19:24', 0, 538, 22.6000004, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5754, 5, '2016-08-11 02:20:21', 0, 563, 22.6000004, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5756, 5, '2016-08-11 02:20:36', 0, 515, 22.6000004, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5758, 5, '2016-08-11 02:20:50', 0, 540, 22.6000004, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5679, 5, '2016-08-11 02:11:30', 0, 496, 22.6000004, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5681, 5, '2016-08-11 02:11:44', 0, 517, 22.6000004, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5683, 5, '2016-08-11 02:11:59', 0, 529, 22.6000004, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5685, 5, '2016-08-11 02:12:09', 0, 589, 22.6000004, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5749, 5, '2016-08-11 02:19:46', 1, 547, 22.6000004, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5751, 5, '2016-08-11 02:20:00', 0, 522, 22.6000004, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5757, 5, '2016-08-11 02:20:42', 0, 538, 22.6000004, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5759, 5, '2016-08-11 02:20:57', 0, 511, 22.6000004, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5761, 5, '2016-08-11 02:21:12', 0, 538, 22.6000004, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5781, 5, '2016-08-11 02:23:42', 0, 500, 22.6000004, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5782, 5, '2016-08-11 02:23:50', 0, 540, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5783, 5, '2016-08-11 02:23:56', 0, 565, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5798, 5, '2016-08-11 02:25:40', 0, 567, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5799, 3, '2016-08-11 02:25:46', 1, 566, 21.7000008, 45.9000015, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5800, 5, '2016-08-11 02:25:51', 0, 556, 22.6000004, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5801, 5, '2016-08-11 02:25:59', 0, 587, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5802, 5, '2016-08-11 02:26:06', 0, 547, 22.6000004, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5803, 5, '2016-08-11 02:26:13', 0, 524, 22.6000004, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5818, 2, '2016-08-11 02:27:53', 1, 477, 23, 43, 4608);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5822, 5, '2016-08-11 02:28:24', 0, 522, 22.7000008, 42.7000008, 30983);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5823, 5, '2016-08-11 02:28:29', 0, 545, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5824, 5, '2016-08-11 02:28:37', 0, 531, 22.6000004, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5836, 5, '2016-08-11 02:30:03', 0, 522, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5837, 5, '2016-08-11 02:30:11', 0, 542, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5838, 5, '2016-08-11 02:30:17', 0, 542, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5839, 5, '2016-08-11 02:30:25', 0, 540, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5840, 5, '2016-08-11 02:30:32', 0, 558, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5841, 5, '2016-08-11 02:30:39', 0, 547, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5842, 5, '2016-08-11 02:30:54', 0, 522, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5843, 5, '2016-08-11 02:31:00', 0, 515, 22.7000008, 42.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5844, 5, '2016-08-11 02:31:07', 0, 540, 22.6000004, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5845, 5, '2016-08-11 02:31:15', 0, 558, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5846, 5, '2016-08-11 02:31:23', 0, 513, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5847, 5, '2016-08-11 02:31:29', 0, 542, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5848, 5, '2016-08-11 02:31:36', 0, 567, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5849, 5, '2016-08-11 02:31:43', 0, 533, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5864, 5, '2016-08-11 02:33:24', 0, 529, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5865, 5, '2016-08-11 02:33:31', 0, 542, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5866, 5, '2016-08-11 02:33:40', 0, 556, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5867, 5, '2016-08-11 02:33:45', 0, 554, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5868, 5, '2016-08-11 02:33:53', 0, 547, 22.7000008, 42.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5869, 5, '2016-08-11 02:34:00', 0, 529, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5870, 5, '2016-08-11 02:34:07', 1, 549, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5871, 5, '2016-08-11 02:34:14', 1, 520, 22.7000008, 42.7000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5872, 5, '2016-08-11 02:34:20', 0, 536, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5873, 5, '2016-08-11 02:34:31', 0, 540, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5874, 5, '2016-08-11 02:34:35', 0, 558, 22.6000004, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5875, 5, '2016-08-11 02:34:43', 0, 552, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5876, 5, '2016-08-11 02:34:57', 0, 545, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5877, 5, '2016-08-11 02:35:05', 0, 547, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5888, 5, '2016-08-11 02:36:23', 0, 479, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5889, 5, '2016-08-11 02:36:31', 0, 531, 22.6000004, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5890, 5, '2016-08-11 02:36:38', 0, 540, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5891, 5, '2016-08-11 02:36:39', 0, 513, 22.7000008, 42.7000008, 32825);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5892, 0, '2016-08-11 02:36:45', 0, 524, 21.7000008, 46.2999992, 1632);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5893, 5, '2016-08-11 02:36:53', 0, 529, 22.7000008, 42.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5894, 5, '2016-08-11 02:36:57', 0, 552, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5895, 5, '2016-08-11 02:37:07', 0, 522, 22.7000008, 42.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5896, 5, '2016-08-11 02:37:14', 1, 558, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5897, 5, '2016-08-11 02:37:20', 1, 526, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5898, 5, '2016-08-11 02:37:29', 0, 529, 22.7000008, 42.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5899, 5, '2016-08-11 02:37:36', 0, 538, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5900, 5, '2016-08-11 02:37:42', 0, 549, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5901, 5, '2016-08-11 02:37:51', 0, 542, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5906, 5, '2016-08-11 02:38:26', 0, 552, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5907, 5, '2016-08-11 02:38:33', 0, 524, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5908, 5, '2016-08-11 02:38:40', 0, 560, 22.7000008, 42.7000008, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5909, 5, '2016-08-11 02:38:47', 0, 524, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5910, 5, '2016-08-11 02:38:55', 0, 574, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5911, 5, '2016-08-11 02:39:01', 1, 554, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5912, 5, '2016-08-11 02:39:08', 1, 558, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5913, 5, '2016-08-11 02:39:16', 0, 549, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5914, 5, '2016-08-11 02:39:23', 0, 509, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5915, 5, '2016-08-11 02:39:31', 0, 571, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5916, 5, '2016-08-11 02:39:38', 0, 576, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5917, 5, '2016-08-11 02:39:44', 0, 554, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5918, 5, '2016-08-11 02:39:52', 0, 511, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5919, 5, '2016-08-11 02:39:59', 0, 536, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5933, 5, '2016-08-11 02:41:34', 0, 556, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5934, 5, '2016-08-11 02:41:41', 0, 538, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5935, 5, '2016-08-11 02:41:46', 0, 547, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5936, 5, '2016-08-11 02:41:55', 0, 479, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5937, 5, '2016-08-11 02:42:01', 1, 520, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5938, 5, '2016-08-11 02:42:09', 1, 517, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5939, 5, '2016-08-11 02:42:16', 0, 529, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5940, 5, '2016-08-11 02:42:22', 0, 542, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5941, 5, '2016-08-11 02:42:30', 0, 533, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5942, 5, '2016-08-11 02:42:38', 0, 536, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5943, 5, '2016-08-11 02:42:39', 0, 542, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5944, 5, '2016-08-11 02:42:53', 0, 540, 22.7000008, 42.7000008, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5945, 5, '2016-08-11 02:43:04', 0, 517, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5946, 2, '2016-08-11 02:43:06', 1, 494, 22.8999996, 42.9000015, 4480);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5961, 5, '2016-08-11 02:44:54', 0, 515, 22.7000008, 42.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5962, 5, '2016-08-11 02:45:08', 0, 524, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5963, 5, '2016-08-11 02:45:15', 0, 538, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5964, 5, '2016-08-11 02:45:22', 0, 545, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5965, 5, '2016-08-11 02:45:30', 0, 538, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5966, 5, '2016-08-11 02:45:37', 0, 517, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5967, 5, '2016-08-11 02:45:44', 0, 520, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5968, 5, '2016-08-11 02:45:51', 0, 540, 22.7000008, 42.7000008, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5969, 5, '2016-08-11 02:45:58', 0, 529, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5970, 5, '2016-08-11 02:46:01', 0, 507, 22.7000008, 42.7000008, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5971, 5, '2016-08-11 02:46:13', 0, 517, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5972, 5, '2016-08-11 02:46:20', 0, 511, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5973, 5, '2016-08-11 02:46:27', 0, 520, 22.7000008, 42.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5974, 5, '2016-08-11 02:46:33', 0, 545, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5989, 5, '2016-08-11 02:48:22', 0, 567, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5819, 5, '2016-08-11 02:28:01', 0, 536, 22.6000004, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5820, 5, '2016-08-11 02:28:08', 0, 536, 22.6000004, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5821, 5, '2016-08-11 02:28:15', 0, 502, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5825, 5, '2016-08-11 02:28:43', 0, 522, 22.6000004, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5826, 5, '2016-08-11 02:28:52', 0, 507, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5827, 5, '2016-08-11 02:28:59', 0, 496, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5828, 5, '2016-08-11 02:29:05', 0, 576, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5829, 5, '2016-08-11 02:29:13', 0, 540, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5830, 5, '2016-08-11 02:29:19', 1, 589, 22.6000004, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5831, 5, '2016-08-11 02:29:27', 1, 547, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5832, 5, '2016-08-11 02:29:34', 0, 563, 22.6000004, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5833, 5, '2016-08-11 02:29:41', 0, 538, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5834, 5, '2016-08-11 02:29:49', 0, 567, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5835, 5, '2016-08-11 02:29:55', 0, 529, 22.6000004, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5850, 5, '2016-08-11 02:31:51', 0, 531, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5851, 5, '2016-08-11 02:31:57', 0, 542, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5852, 5, '2016-08-11 02:32:05', 0, 552, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5853, 5, '2016-08-11 02:32:12', 0, 531, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5854, 5, '2016-08-11 02:32:19', 0, 558, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5855, 5, '2016-08-11 02:32:19', 1, 496, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5856, 5, '2016-08-11 02:32:29', 0, 509, 22.7000008, 42.7000008, 30983);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5857, 5, '2016-08-11 02:32:41', 0, 533, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5858, 5, '2016-08-11 02:32:49', 0, 565, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5859, 5, '2016-08-11 02:32:55', 0, 513, 22.7000008, 42.7000008, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5860, 5, '2016-08-11 02:32:56', 0, 545, 22.6000004, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5861, 1, '2016-08-11 02:33:03', 0, 561, 21.7000008, 45.4000015, 2312);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5862, 5, '2016-08-11 02:33:10', 0, 542, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5863, 5, '2016-08-11 02:33:17', 0, 520, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5878, 5, '2016-08-11 02:35:12', 0, 513, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5879, 5, '2016-08-11 02:35:18', 0, 526, 22.7000008, 42.7000008, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5880, 5, '2016-08-11 02:35:26', 0, 558, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5881, 5, '2016-08-11 02:35:34', 0, 545, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5882, 5, '2016-08-11 02:35:41', 0, 538, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5883, 5, '2016-08-11 02:35:48', 0, 547, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5884, 5, '2016-08-11 02:35:55', 0, 542, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5885, 5, '2016-08-11 02:36:02', 0, 513, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5886, 5, '2016-08-11 02:36:09', 0, 560, 22.7000008, 42.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5887, 5, '2016-08-11 02:36:17', 0, 513, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5902, 5, '2016-08-11 02:37:56', 0, 507, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5903, 5, '2016-08-11 02:38:04', 0, 520, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5904, 5, '2016-08-11 02:38:11', 0, 549, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5905, 5, '2016-08-11 02:38:18', 0, 538, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5920, 5, '2016-08-11 02:40:06', 0, 556, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5921, 5, '2016-08-11 02:40:13', 0, 531, 22.7000008, 42.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5922, 5, '2016-08-11 02:40:21', 0, 515, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5923, 5, '2016-08-11 02:40:28', 0, 536, 22.7000008, 42.7000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5924, 5, '2016-08-11 02:40:34', 0, 520, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5925, 5, '2016-08-11 02:40:43', 0, 533, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5926, 5, '2016-08-11 02:40:50', 0, 547, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5927, 5, '2016-08-11 02:40:51', 0, 529, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5928, 3, '2016-08-11 02:40:57', 1, 565, 21.7000008, 46, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5929, 5, '2016-08-11 02:41:03', 0, 517, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5930, 5, '2016-08-11 02:41:11', 0, 556, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5931, 5, '2016-08-11 02:41:18', 0, 547, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5932, 5, '2016-08-11 02:41:20', 0, 515, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5947, 5, '2016-08-11 02:43:13', 0, 563, 22.7000008, 42.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5948, 5, '2016-08-11 02:43:20', 0, 513, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5949, 5, '2016-08-11 02:43:28', 0, 533, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5950, 5, '2016-08-11 02:43:34', 0, 522, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5951, 5, '2016-08-11 02:43:42', 0, 529, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5952, 5, '2016-08-11 02:43:49', 1, 560, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5953, 5, '2016-08-11 02:43:57', 1, 531, 22.7000008, 42.7000008, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5954, 5, '2016-08-11 02:44:03', 0, 571, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5955, 5, '2016-08-11 02:44:10', 0, 554, 22.7000008, 42.7000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5956, 5, '2016-08-11 02:44:19', 0, 536, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5957, 5, '2016-08-11 02:44:22', 0, 554, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5958, 5, '2016-08-11 02:44:34', 0, 556, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5959, 5, '2016-08-11 02:44:40', 0, 567, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5960, 5, '2016-08-11 02:44:46', 0, 606, 22.7000008, 42.7000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5975, 5, '2016-08-11 02:46:43', 0, 558, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5976, 5, '2016-08-11 02:46:48', 0, 522, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5977, 5, '2016-08-11 02:46:57', 1, 485, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5978, 5, '2016-08-11 02:47:10', 1, 536, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5979, 5, '2016-08-11 02:47:17', 0, 533, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5980, 5, '2016-08-11 02:47:24', 0, 496, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5981, 5, '2016-08-11 02:47:32', 0, 540, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5982, 5, '2016-08-11 02:47:39', 0, 547, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5983, 5, '2016-08-11 02:47:45', 0, 574, 22.7000008, 42.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5984, 5, '2016-08-11 02:47:54', 0, 565, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5985, 5, '2016-08-11 02:48:00', 0, 545, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5986, 5, '2016-08-11 02:48:06', 0, 522, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5987, 1, '2016-08-11 02:48:08', 0, 528, 21.6000004, 45.5, 5444);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5988, 5, '2016-08-11 02:48:15', 0, 549, 22.7000008, 42.7000008, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6003, 5, '2016-08-11 02:50:03', 0, 558, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6004, 5, '2016-08-11 02:50:10', 0, 549, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6005, 5, '2016-08-11 02:50:17', 0, 538, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6006, 5, '2016-08-11 02:50:21', 0, 529, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6007, 5, '2016-08-11 02:50:32', 0, 515, 22.7000008, 42.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6008, 5, '2016-08-11 02:50:38', 0, 526, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6009, 5, '2016-08-11 02:50:47', 0, 531, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6010, 5, '2016-08-11 02:50:53', 0, 549, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6011, 5, '2016-08-11 02:51:01', 0, 504, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6012, 5, '2016-08-11 02:51:07', 0, 552, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6013, 5, '2016-08-11 02:51:14', 0, 549, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6014, 5, '2016-08-11 02:51:21', 0, 524, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6015, 5, '2016-08-11 02:51:29', 0, 531, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6016, 5, '2016-08-11 02:51:35', 0, 552, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6020, 5, '2016-08-11 02:51:58', 0, 542, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6021, 5, '2016-08-11 02:52:04', 0, 547, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6022, 5, '2016-08-11 02:52:11', 0, 515, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6023, 5, '2016-08-11 02:52:19', 0, 558, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6024, 5, '2016-08-11 02:52:25', 0, 538, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6025, 5, '2016-08-11 02:52:33', 0, 563, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6026, 5, '2016-08-11 02:52:41', 0, 549, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6027, 5, '2016-08-11 02:52:47', 0, 517, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6028, 5, '2016-08-11 02:52:49', 0, 538, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6029, 5, '2016-08-11 02:53:01', 0, 556, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5990, 5, '2016-08-11 02:48:29', 0, 515, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5991, 5, '2016-08-11 02:48:35', 0, 538, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5992, 5, '2016-08-11 02:48:44', 1, 522, 22.7000008, 42.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5993, 5, '2016-08-11 02:48:51', 1, 542, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5994, 5, '2016-08-11 02:48:59', 0, 507, 22.7000008, 42.7000008, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5995, 5, '2016-08-11 02:49:05', 0, 531, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5996, 5, '2016-08-11 02:49:12', 0, 552, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5997, 5, '2016-08-11 02:49:19', 0, 509, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5998, 5, '2016-08-11 02:49:26', 0, 538, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (5999, 5, '2016-08-11 02:49:33', 0, 524, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6000, 5, '2016-08-11 02:49:41', 0, 558, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6001, 5, '2016-08-11 02:49:47', 0, 554, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6002, 5, '2016-08-11 02:49:55', 0, 560, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6017, 5, '2016-08-11 02:51:43', 1, 531, 22.7000008, 42.7000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6018, 5, '2016-08-11 02:51:49', 1, 545, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6019, 0, '2016-08-11 02:51:50', 0, 534, 21.7000008, 46.2999992, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6034, 5, '2016-08-11 02:53:37', 1, 538, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6035, 5, '2016-08-11 02:53:45', 0, 567, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6036, 5, '2016-08-11 02:53:52', 0, 542, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6078, 5, '2016-08-11 02:58:39', 0, 511, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6079, 5, '2016-08-11 02:58:47', 0, 515, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6080, 5, '2016-08-11 02:58:54', 0, 511, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6081, 5, '2016-08-11 02:59:00', 0, 549, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6082, 5, '2016-08-11 02:59:07', 0, 560, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6083, 5, '2016-08-11 02:59:15', 0, 578, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6084, 5, '2016-08-11 02:59:22', 0, 513, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6085, 5, '2016-08-11 02:59:30', 0, 515, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6086, 5, '2016-08-11 02:59:36', 0, 540, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6087, 5, '2016-08-11 02:59:45', 0, 524, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6088, 5, '2016-08-11 02:59:51', 0, 509, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6089, 5, '2016-08-11 02:59:59', 0, 549, 22.7000008, 42.7000008, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6090, 5, '2016-08-11 03:00:05', 0, 499, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6091, 5, '2016-08-11 03:00:14', 0, 545, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6092, 5, '2016-08-11 03:00:20', 0, 531, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6093, 5, '2016-08-11 03:00:27', 0, 524, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6094, 5, '2016-08-11 03:00:34', 0, 558, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6095, 5, '2016-08-11 03:00:42', 0, 494, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6096, 5, '2016-08-11 03:00:49', 0, 524, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6097, 5, '2016-08-11 03:00:56', 0, 531, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6098, 5, '2016-08-11 03:01:03', 0, 515, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6099, 5, '2016-08-11 03:01:11', 0, 536, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6100, 5, '2016-08-11 03:01:25', 0, 549, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6101, 5, '2016-08-11 03:01:32', 1, 526, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6102, 5, '2016-08-11 03:01:38', 0, 540, 22.7000008, 42.7000008, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6103, 5, '2016-08-11 03:01:48', 0, 515, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6104, 5, '2016-08-11 03:01:54', 0, 547, 22.7000008, 42.7000008, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6105, 5, '2016-08-11 03:02:00', 0, 549, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6106, 5, '2016-08-11 03:02:09', 0, 538, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6107, 5, '2016-08-11 03:02:14', 0, 538, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6108, 5, '2016-08-11 03:02:22', 0, 522, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6109, 5, '2016-08-11 03:02:29', 0, 522, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6110, 5, '2016-08-11 03:02:37', 0, 542, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6111, 5, '2016-08-11 03:02:43', 0, 531, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6112, 5, '2016-08-11 03:02:50', 0, 549, 22.7000008, 42.7000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6030, 5, '2016-08-11 02:53:09', 0, 520, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6031, 5, '2016-08-11 02:53:17', 0, 554, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6032, 5, '2016-08-11 02:53:23', 0, 556, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6033, 5, '2016-08-11 02:53:31', 1, 556, 22.7000008, 42.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6037, 5, '2016-08-11 02:54:00', 0, 545, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6038, 5, '2016-08-11 02:54:06', 0, 504, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6039, 5, '2016-08-11 02:54:14', 0, 511, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6040, 5, '2016-08-11 02:54:21', 0, 522, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6041, 5, '2016-08-11 02:54:25', 0, 494, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6042, 5, '2016-08-11 02:54:35', 0, 513, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6043, 5, '2016-08-11 02:54:42', 0, 540, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6044, 5, '2016-08-11 02:54:49', 0, 533, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6045, 5, '2016-08-11 02:54:57', 0, 540, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6046, 5, '2016-08-11 02:55:04', 0, 536, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6047, 5, '2016-08-11 02:55:05', 0, 517, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6048, 5, '2016-08-11 02:55:18', 0, 503, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6049, 5, '2016-08-11 02:55:25', 0, 526, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6050, 5, '2016-08-11 02:55:34', 0, 536, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6051, 5, '2016-08-11 02:55:40', 0, 554, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6052, 5, '2016-08-11 02:55:47', 0, 513, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6053, 5, '2016-08-11 02:55:54', 0, 524, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6054, 5, '2016-08-11 02:56:01', 0, 556, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6055, 5, '2016-08-11 02:56:01', 0, 547, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6056, 3, '2016-08-11 02:56:10', 1, 607, 21.7000008, 46, 2450);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6057, 5, '2016-08-11 02:56:15', 0, 549, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6058, 5, '2016-08-11 02:56:24', 0, 536, 22.7000008, 42.7000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6059, 5, '2016-08-11 02:56:30', 0, 547, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6060, 5, '2016-08-11 02:56:37', 1, 507, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6061, 5, '2016-08-11 02:56:45', 1, 529, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6062, 5, '2016-08-11 02:56:51', 0, 522, 22.7000008, 42.7000008, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6063, 5, '2016-08-11 02:56:59', 0, 545, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6064, 5, '2016-08-11 02:57:06', 0, 533, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6065, 5, '2016-08-11 02:57:13', 0, 549, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6066, 5, '2016-08-11 02:57:21', 0, 560, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6067, 5, '2016-08-11 02:57:27', 0, 554, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6068, 5, '2016-08-11 02:57:35', 0, 511, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6069, 5, '2016-08-11 02:57:42', 0, 565, 22.7000008, 42.7000008, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6070, 5, '2016-08-11 02:57:49', 0, 517, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6071, 5, '2016-08-11 02:57:56', 0, 531, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6072, 5, '2016-08-11 02:58:03', 0, 520, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6073, 5, '2016-08-11 02:58:11', 0, 549, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6074, 5, '2016-08-11 02:58:14', 1, 547, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6075, 2, '2016-08-11 02:58:19', 1, 496, 22.8999996, 42.9000015, 8745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6076, 5, '2016-08-11 02:58:24', 1, 513, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6077, 5, '2016-08-11 02:58:32', 0, 531, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6113, 5, '2016-08-11 03:02:58', 0, 526, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6114, 5, '2016-08-11 03:02:59', 1, 511, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6115, 5, '2016-08-11 03:03:12', 1, 554, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6116, 5, '2016-08-11 03:03:17', 0, 538, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6117, 1, '2016-08-11 03:03:20', 0, 575, 21.6000004, 45.5, 2454);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6118, 5, '2016-08-11 03:03:27', 0, 533, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6119, 5, '2016-08-11 03:03:35', 0, 558, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6120, 5, '2016-08-11 03:03:42', 0, 515, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6121, 5, '2016-08-11 03:03:48', 0, 511, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6122, 5, '2016-08-11 03:03:55', 0, 560, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6123, 5, '2016-08-11 03:04:03', 0, 552, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6124, 5, '2016-08-11 03:04:09', 0, 545, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6125, 5, '2016-08-11 03:04:18', 0, 507, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6126, 5, '2016-08-11 03:04:26', 0, 529, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6127, 5, '2016-08-11 03:04:26', 0, 558, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6128, 5, '2016-08-11 03:04:38', 0, 520, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6129, 5, '2016-08-11 03:04:46', 0, 531, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6130, 5, '2016-08-11 03:04:53', 0, 533, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6131, 5, '2016-08-11 03:05:01', 0, 538, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6132, 5, '2016-08-11 03:05:07', 0, 520, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6133, 5, '2016-08-11 03:05:15', 0, 509, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6134, 5, '2016-08-11 03:05:28', 0, 569, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6135, 5, '2016-08-11 03:05:36', 0, 513, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6136, 5, '2016-08-11 03:05:43', 0, 531, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6137, 5, '2016-08-11 03:05:50', 0, 526, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6138, 5, '2016-08-11 03:05:58', 0, 547, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6139, 5, '2016-08-11 03:06:04', 0, 538, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6140, 5, '2016-08-11 03:06:12', 1, 540, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6141, 5, '2016-08-11 03:06:19', 1, 560, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6142, 5, '2016-08-11 03:06:26', 0, 526, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6143, 5, '2016-08-11 03:06:34', 0, 542, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6144, 5, '2016-08-11 03:06:40', 0, 492, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6145, 5, '2016-08-11 03:06:48', 0, 520, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6146, 5, '2016-08-11 03:06:55', 0, 549, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6147, 5, '2016-08-11 03:07:00', 0, 538, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6148, 0, '2016-08-11 03:07:03', 0, 548, 21.7999992, 46.2999992, 6423);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6149, 5, '2016-08-11 03:07:09', 0, 494, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6150, 5, '2016-08-11 03:07:16', 0, 522, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6151, 5, '2016-08-11 03:07:24', 0, 558, 22.7000008, 42.7000008, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6152, 5, '2016-08-11 03:07:30', 0, 494, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6153, 5, '2016-08-11 03:07:38', 0, 547, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6154, 5, '2016-08-11 03:07:45', 0, 517, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6155, 5, '2016-08-11 03:07:52', 1, 545, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6156, 5, '2016-08-11 03:08:00', 1, 533, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6157, 5, '2016-08-11 03:08:06', 0, 529, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6158, 5, '2016-08-11 03:08:14', 0, 515, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6159, 5, '2016-08-11 03:08:21', 0, 517, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6160, 5, '2016-08-11 03:08:22', 0, 556, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6161, 5, '2016-08-11 03:08:35', 0, 563, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6162, 5, '2016-08-11 03:08:42', 0, 554, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6163, 5, '2016-08-11 03:08:50', 0, 509, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6164, 5, '2016-08-11 03:08:57', 0, 545, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6165, 5, '2016-08-11 03:09:03', 0, 511, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6166, 5, '2016-08-11 03:09:11', 0, 545, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6167, 5, '2016-08-11 03:09:18', 0, 542, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6168, 5, '2016-08-11 03:09:26', 0, 509, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6169, 5, '2016-08-11 03:09:33', 0, 529, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6170, 5, '2016-08-11 03:09:39', 0, 515, 22.7000008, 42.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6171, 5, '2016-08-11 03:09:47', 0, 529, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6172, 5, '2016-08-11 03:09:54', 0, 507, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6173, 5, '2016-08-11 03:10:02', 0, 549, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6174, 5, '2016-08-11 03:10:08', 0, 540, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6175, 5, '2016-08-11 03:10:16', 0, 515, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6177, 5, '2016-08-11 03:10:30', 0, 499, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6179, 5, '2016-08-11 03:10:45', 0, 558, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6181, 5, '2016-08-11 03:10:59', 1, 547, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6183, 5, '2016-08-11 03:11:12', 0, 549, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6185, 5, '2016-08-11 03:11:21', 0, 531, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6187, 5, '2016-08-11 03:11:42', 0, 515, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6189, 5, '2016-08-11 03:11:57', 0, 556, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6221, 5, '2016-08-11 03:15:53', 1, 507, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6223, 5, '2016-08-11 03:16:07', 0, 542, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6225, 5, '2016-08-11 03:16:22', 0, 515, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6227, 5, '2016-08-11 03:16:37', 0, 540, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6229, 5, '2016-08-11 03:16:51', 0, 571, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6231, 5, '2016-08-11 03:17:05', 0, 531, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6233, 5, '2016-08-11 03:17:19', 0, 574, 22.7000008, 42.7000008, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6235, 5, '2016-08-11 03:17:34', 1, 522, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6241, 5, '2016-08-11 03:18:17', 0, 513, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6243, 5, '2016-08-11 03:18:29', 0, 505, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6245, 5, '2016-08-11 03:18:39', 0, 542, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6247, 5, '2016-08-11 03:18:53', 0, 513, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6249, 5, '2016-08-11 03:19:07', 0, 574, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6251, 5, '2016-08-11 03:19:22', 0, 511, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6269, 5, '2016-08-11 03:21:31', 0, 558, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6271, 5, '2016-08-11 03:21:45', 0, 547, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6273, 5, '2016-08-11 03:22:00', 0, 505, 22.7000008, 42.7000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6275, 5, '2016-08-11 03:22:11', 0, 511, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6277, 5, '2016-08-11 03:22:17', 1, 529, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6287, 5, '2016-08-11 03:23:32', 0, 515, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6289, 5, '2016-08-11 03:23:47', 0, 540, 22.7000008, 42.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6291, 5, '2016-08-11 03:24:02', 0, 501, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6293, 5, '2016-08-11 03:24:17', 0, 526, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6295, 5, '2016-08-11 03:24:28', 0, 536, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6297, 5, '2016-08-11 03:24:44', 0, 511, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6299, 5, '2016-08-11 03:24:59', 0, 545, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6301, 5, '2016-08-11 03:25:14', 0, 549, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6331, 5, '2016-08-11 03:28:36', 0, 558, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6361, 5, '2016-08-11 03:32:17', 0, 484, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6363, 5, '2016-08-11 03:32:32', 0, 554, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6365, 5, '2016-08-11 03:32:46', 0, 533, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6367, 5, '2016-08-11 03:33:00', 0, 531, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6369, 5, '2016-08-11 03:33:14', 0, 522, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6371, 5, '2016-08-11 03:33:30', 0, 524, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6486, 5, '2016-08-11 03:47:38', 0, 517, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6488, 5, '2016-08-11 03:47:51', 0, 549, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6490, 5, '2016-08-11 03:48:13', 0, 513, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6492, 5, '2016-08-11 03:48:26', 0, 507, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6494, 5, '2016-08-11 03:48:41', 0, 567, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6496, 5, '2016-08-11 03:48:50', 0, 552, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6498, 5, '2016-08-11 03:49:03', 0, 526, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6500, 5, '2016-08-11 03:49:17', 0, 542, 22.7000008, 42.7000008, 32807);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6502, 5, '2016-08-11 03:49:30', 1, 540, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6504, 5, '2016-08-11 03:49:46', 0, 524, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6506, 5, '2016-08-11 03:50:01', 0, 558, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6508, 5, '2016-08-11 03:50:15', 0, 501, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6510, 5, '2016-08-11 03:50:28', 0, 545, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6566, 5, '2016-08-11 03:57:11', 0, 542, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6568, 5, '2016-08-11 03:57:26', 0, 565, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6570, 5, '2016-08-11 03:57:34', 0, 529, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6572, 5, '2016-08-11 03:57:48', 0, 503, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6574, 5, '2016-08-11 03:58:02', 0, 526, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6576, 5, '2016-08-11 03:58:23', 0, 567, 22.7000008, 42.7000008, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6578, 5, '2016-08-11 03:58:34', 0, 515, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6580, 5, '2016-08-11 03:58:52', 0, 540, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6582, 2, '2016-08-11 03:58:59', 1, 492, 22.6000004, 43.0999985, 17222);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6584, 5, '2016-08-11 03:59:05', 1, 542, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6586, 5, '2016-08-11 03:59:20', 0, 526, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6588, 5, '2016-08-11 03:59:36', 0, 503, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6590, 5, '2016-08-11 03:59:49', 0, 540, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6592, 5, '2016-08-11 04:00:04', 0, 538, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6594, 5, '2016-08-11 04:00:27', 0, 576, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6596, 5, '2016-08-11 04:00:42', 0, 513, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6598, 5, '2016-08-11 04:00:54', 1, 542, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6600, 5, '2016-08-11 04:01:08', 0, 542, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6602, 5, '2016-08-11 04:01:22', 0, 554, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6616, 5, '2016-08-11 04:03:03', 0, 538, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6618, 5, '2016-08-11 04:03:20', 0, 547, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6620, 5, '2016-08-11 04:03:31', 0, 570, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6622, 5, '2016-08-11 04:03:47', 0, 542, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6624, 5, '2016-08-11 04:03:59', 1, 540, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6626, 1, '2016-08-11 04:04:09', 0, 537, 21.6000004, 45.5, 4118);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6628, 5, '2016-08-11 04:04:29', 0, 561, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6630, 5, '2016-08-11 04:04:43', 0, 536, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6632, 5, '2016-08-11 04:04:57', 0, 561, 22.7000008, 42.7000008, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6634, 5, '2016-08-11 04:05:13', 0, 517, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6636, 5, '2016-08-11 04:05:27', 0, 517, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6650, 5, '2016-08-11 04:07:07', 0, 529, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6652, 5, '2016-08-11 04:07:21', 0, 526, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6654, 5, '2016-08-11 04:07:35', 0, 522, 22.7000008, 42.7000008, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6656, 5, '2016-08-11 04:07:44', 0, 552, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6658, 0, '2016-08-11 04:07:50', 0, 539, 21.7999992, 46.0999985, 2368);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6660, 5, '2016-08-11 04:08:05', 0, 524, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6662, 5, '2016-08-11 04:08:19', 0, 515, 22.7000008, 42.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6664, 5, '2016-08-11 04:08:34', 0, 492, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6666, 5, '2016-08-11 04:08:47', 1, 515, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6668, 5, '2016-08-11 04:09:02', 0, 578, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6670, 5, '2016-08-11 04:09:17', 0, 522, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6672, 5, '2016-08-11 04:09:31', 0, 540, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6706, 5, '2016-08-11 04:13:35', 1, 531, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6708, 5, '2016-08-11 04:13:49', 1, 538, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6710, 5, '2016-08-11 04:14:04', 0, 509, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6712, 2, '2016-08-11 04:14:10', 0, 484, 22.5, 43.2000008, 16386);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6714, 5, '2016-08-11 04:14:25', 0, 577, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6716, 5, '2016-08-11 04:14:34', 0, 558, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6749, 5, '2016-08-11 04:18:23', 1, 529, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6770, 5, '2016-08-11 04:20:53', 1, 526, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6772, 5, '2016-08-11 04:21:08', 1, 505, 22.7000008, 42.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6774, 5, '2016-08-11 04:21:22', 1, 501, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6176, 5, '2016-08-11 03:10:23', 0, 536, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6178, 5, '2016-08-11 03:10:38', 0, 576, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6180, 5, '2016-08-11 03:10:52', 0, 531, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6182, 5, '2016-08-11 03:11:06', 1, 524, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6184, 3, '2016-08-11 03:11:14', 1, 579, 21.7000008, 46, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6186, 5, '2016-08-11 03:11:35', 0, 524, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6188, 5, '2016-08-11 03:11:50', 0, 517, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6190, 5, '2016-08-11 03:12:04', 0, 545, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6192, 5, '2016-08-11 03:12:17', 0, 513, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6194, 5, '2016-08-11 03:12:32', 0, 547, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6196, 5, '2016-08-11 03:12:47', 1, 545, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6198, 5, '2016-08-11 03:13:01', 0, 522, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6200, 5, '2016-08-11 03:13:09', 0, 517, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6202, 5, '2016-08-11 03:13:25', 0, 563, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6204, 5, '2016-08-11 03:13:37', 0, 529, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6206, 5, '2016-08-11 03:13:52', 0, 578, 22.7000008, 42.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6208, 5, '2016-08-11 03:14:06', 0, 563, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6210, 5, '2016-08-11 03:14:20', 0, 494, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6212, 5, '2016-08-11 03:14:35', 0, 556, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6222, 5, '2016-08-11 03:16:01', 0, 558, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6248, 5, '2016-08-11 03:19:00', 0, 501, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6250, 5, '2016-08-11 03:19:15', 0, 540, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6252, 5, '2016-08-11 03:19:29', 0, 511, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6254, 5, '2016-08-11 03:19:43', 0, 526, 22.7000008, 42.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6256, 5, '2016-08-11 03:19:58', 0, 529, 22.7000008, 42.7000008, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6258, 5, '2016-08-11 03:20:13', 0, 536, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6260, 5, '2016-08-11 03:20:27', 0, 517, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6262, 5, '2016-08-11 03:20:41', 1, 554, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6268, 5, '2016-08-11 03:21:24', 0, 547, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6270, 5, '2016-08-11 03:21:39', 0, 578, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6272, 5, '2016-08-11 03:21:53', 0, 533, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6274, 5, '2016-08-11 03:22:07', 0, 567, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6276, 0, '2016-08-11 03:22:15', 0, 501, 21.7999992, 46.2000008, 4502);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6304, 5, '2016-08-11 03:25:35', 1, 547, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6306, 5, '2016-08-11 03:25:50', 0, 549, 22.7000008, 42.7000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6308, 5, '2016-08-11 03:26:05', 0, 556, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6310, 5, '2016-08-11 03:26:20', 0, 552, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6312, 3, '2016-08-11 03:26:24', 1, 611, 21.7000008, 46, 2112);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6314, 5, '2016-08-11 03:26:41', 0, 533, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6316, 5, '2016-08-11 03:26:54', 0, 536, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6318, 5, '2016-08-11 03:27:08', 0, 554, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6320, 5, '2016-08-11 03:27:22', 0, 522, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6322, 5, '2016-08-11 03:27:38', 0, 549, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6324, 5, '2016-08-11 03:27:52', 0, 545, 22.7000008, 42.7000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6326, 5, '2016-08-11 03:28:06', 0, 536, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6328, 5, '2016-08-11 03:28:20', 0, 529, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6330, 5, '2016-08-11 03:28:35', 0, 585, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6334, 5, '2016-08-11 03:28:56', 0, 524, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6336, 5, '2016-08-11 03:29:10', 0, 488, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6338, 5, '2016-08-11 03:29:26', 0, 542, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6340, 5, '2016-08-11 03:29:40', 0, 540, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6342, 5, '2016-08-11 03:30:00', 0, 563, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6344, 5, '2016-08-11 03:30:16', 1, 549, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6346, 5, '2016-08-11 03:30:30', 0, 511, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6348, 5, '2016-08-11 03:30:44', 0, 545, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6350, 5, '2016-08-11 03:30:58', 0, 552, 22.7000008, 42.7000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6352, 5, '2016-08-11 03:31:12', 0, 547, 22.7000008, 42.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6354, 5, '2016-08-11 03:31:28', 0, 536, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6356, 5, '2016-08-11 03:31:42', 0, 547, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6358, 5, '2016-08-11 03:31:57', 0, 538, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6373, 5, '2016-08-11 03:33:39', 0, 556, 22.7000008, 42.7000008, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6375, 5, '2016-08-11 03:33:58', 0, 503, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6377, 5, '2016-08-11 03:34:12', 0, 531, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6379, 5, '2016-08-11 03:34:27', 0, 549, 22.7000008, 42.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6381, 5, '2016-08-11 03:34:41', 0, 499, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6383, 5, '2016-08-11 03:34:56', 0, 511, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6385, 5, '2016-08-11 03:35:11', 1, 542, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6387, 5, '2016-08-11 03:35:24', 0, 542, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6389, 5, '2016-08-11 03:35:38', 0, 545, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6391, 5, '2016-08-11 03:36:08', 0, 540, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6393, 5, '2016-08-11 03:36:22', 0, 511, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6395, 5, '2016-08-11 03:36:35', 0, 545, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6397, 5, '2016-08-11 03:36:50', 1, 552, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6399, 5, '2016-08-11 03:37:05', 0, 554, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6401, 5, '2016-08-11 03:37:20', 0, 520, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6403, 0, '2016-08-11 03:37:26', 0, 558, 21.7999992, 46.0999985, 8449);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6405, 5, '2016-08-11 03:37:43', 0, 563, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6407, 5, '2016-08-11 03:38:02', 0, 499, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6409, 5, '2016-08-11 03:38:16', 0, 540, 22.7000008, 42.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6411, 5, '2016-08-11 03:38:31', 0, 563, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6413, 5, '2016-08-11 03:38:45', 0, 589, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6415, 5, '2016-08-11 03:39:00', 0, 526, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6429, 5, '2016-08-11 03:40:40', 0, 520, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6431, 5, '2016-08-11 03:40:55', 0, 540, 22.7000008, 42.7000008, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6433, 5, '2016-08-11 03:41:09', 0, 549, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6435, 5, '2016-08-11 03:41:24', 0, 531, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6437, 5, '2016-08-11 03:41:34', 1, 494, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6439, 5, '2016-08-11 03:41:45', 1, 524, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6441, 5, '2016-08-11 03:42:07', 0, 540, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6443, 5, '2016-08-11 03:42:21', 0, 524, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6445, 5, '2016-08-11 03:42:36', 0, 542, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6447, 5, '2016-08-11 03:42:49', 0, 524, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6449, 5, '2016-08-11 03:43:04', 0, 526, 22.7000008, 42.7000008, 32775);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6451, 5, '2016-08-11 03:43:18', 0, 533, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6453, 5, '2016-08-11 03:43:32', 0, 482, 22.7000008, 42.7000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6455, 5, '2016-08-11 03:43:39', 0, 542, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6471, 5, '2016-08-11 03:45:42', 0, 513, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6473, 5, '2016-08-11 03:45:56', 0, 554, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6475, 5, '2016-08-11 03:46:17', 0, 540, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6477, 5, '2016-08-11 03:46:32', 1, 531, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6479, 5, '2016-08-11 03:46:47', 0, 552, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6481, 5, '2016-08-11 03:47:02', 0, 517, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6483, 5, '2016-08-11 03:47:15', 0, 524, 22.7000008, 42.7000008, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6485, 5, '2016-08-11 03:47:29', 0, 545, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6487, 5, '2016-08-11 03:47:44', 0, 556, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6503, 5, '2016-08-11 03:49:40', 0, 547, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6505, 5, '2016-08-11 03:49:52', 0, 517, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6191, 5, '2016-08-11 03:12:10', 0, 540, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6193, 5, '2016-08-11 03:12:25', 0, 567, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6195, 5, '2016-08-11 03:12:40', 0, 486, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6197, 5, '2016-08-11 03:12:54', 1, 540, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6199, 5, '2016-08-11 03:13:08', 0, 500, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6201, 5, '2016-08-11 03:13:23', 0, 558, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6203, 2, '2016-08-11 03:13:30', 1, 511, 22.7999992, 43, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6205, 5, '2016-08-11 03:13:44', 0, 515, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6207, 5, '2016-08-11 03:13:59', 0, 547, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6209, 5, '2016-08-11 03:14:13', 0, 547, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6211, 5, '2016-08-11 03:14:27', 0, 517, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6213, 5, '2016-08-11 03:14:49', 0, 515, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6215, 5, '2016-08-11 03:15:04', 0, 556, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6217, 5, '2016-08-11 03:15:17', 0, 549, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6219, 5, '2016-08-11 03:15:32', 0, 520, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6237, 5, '2016-08-11 03:17:49', 0, 560, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6239, 5, '2016-08-11 03:18:03', 0, 558, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6253, 5, '2016-08-11 03:19:37', 0, 517, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6255, 5, '2016-08-11 03:19:51', 0, 520, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6257, 5, '2016-08-11 03:20:05', 0, 517, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6259, 5, '2016-08-11 03:20:19', 0, 492, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6261, 5, '2016-08-11 03:20:33', 0, 520, 22.7000008, 42.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6263, 5, '2016-08-11 03:20:48', 1, 529, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6265, 5, '2016-08-11 03:21:03', 0, 536, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6267, 5, '2016-08-11 03:21:17', 0, 522, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6279, 5, '2016-08-11 03:22:36', 0, 554, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6281, 5, '2016-08-11 03:22:50', 0, 520, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6283, 5, '2016-08-11 03:23:05', 0, 522, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6285, 5, '2016-08-11 03:23:19', 0, 556, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6303, 5, '2016-08-11 03:25:28', 1, 556, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6305, 5, '2016-08-11 03:25:43', 0, 558, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6307, 5, '2016-08-11 03:25:56', 0, 554, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6309, 5, '2016-08-11 03:26:11', 0, 592, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6311, 5, '2016-08-11 03:26:23', 0, 496, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6313, 5, '2016-08-11 03:26:32', 0, 536, 22.7000008, 42.7000008, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6315, 5, '2016-08-11 03:26:46', 0, 486, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6317, 5, '2016-08-11 03:27:01', 0, 536, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6319, 5, '2016-08-11 03:27:16', 1, 533, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6321, 5, '2016-08-11 03:27:30', 0, 580, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6323, 5, '2016-08-11 03:27:45', 0, 531, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6325, 5, '2016-08-11 03:27:58', 0, 556, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6327, 5, '2016-08-11 03:28:13', 0, 513, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6329, 5, '2016-08-11 03:28:28', 0, 549, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6333, 5, '2016-08-11 03:28:48', 0, 513, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6335, 5, '2016-08-11 03:29:05', 0, 560, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6337, 5, '2016-08-11 03:29:18', 0, 511, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6339, 5, '2016-08-11 03:29:32', 0, 488, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6341, 5, '2016-08-11 03:29:54', 0, 515, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6343, 5, '2016-08-11 03:30:08', 0, 540, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6345, 5, '2016-08-11 03:30:23', 1, 536, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6347, 5, '2016-08-11 03:30:36', 0, 522, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6349, 5, '2016-08-11 03:30:51', 0, 540, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6351, 5, '2016-08-11 03:31:06', 0, 513, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6353, 5, '2016-08-11 03:31:20', 0, 524, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6355, 5, '2016-08-11 03:31:35', 0, 531, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6357, 5, '2016-08-11 03:31:48', 0, 589, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6359, 5, '2016-08-11 03:32:02', 1, 511, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6417, 5, '2016-08-11 03:39:14', 0, 533, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6419, 5, '2016-08-11 03:39:28', 0, 540, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6421, 5, '2016-08-11 03:39:44', 0, 520, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6423, 5, '2016-08-11 03:39:57', 1, 533, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6425, 5, '2016-08-11 03:40:11', 0, 547, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6427, 5, '2016-08-11 03:40:25', 0, 522, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6457, 5, '2016-08-11 03:43:55', 0, 542, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6459, 5, '2016-08-11 03:44:15', 0, 554, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6461, 5, '2016-08-11 03:44:25', 0, 536, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6463, 5, '2016-08-11 03:44:44', 1, 549, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6465, 5, '2016-08-11 03:44:59', 0, 538, 22.7000008, 42.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6467, 5, '2016-08-11 03:45:13', 0, 529, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6469, 5, '2016-08-11 03:45:27', 0, 536, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6489, 5, '2016-08-11 03:47:58', 0, 513, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6491, 5, '2016-08-11 03:48:20', 0, 507, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6493, 5, '2016-08-11 03:48:34', 0, 517, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6495, 5, '2016-08-11 03:48:48', 0, 526, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6497, 1, '2016-08-11 03:48:57', 0, 565, 21.6000004, 45.5, 2372);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6499, 5, '2016-08-11 03:49:10', 0, 554, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6501, 5, '2016-08-11 03:49:24', 0, 589, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6513, 5, '2016-08-11 03:50:51', 0, 581, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6515, 5, '2016-08-11 03:51:04', 0, 533, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6517, 5, '2016-08-11 03:51:19', 1, 524, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6519, 5, '2016-08-11 03:51:33', 0, 529, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6521, 5, '2016-08-11 03:51:50', 0, 552, 22.7000008, 42.7000008, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6523, 5, '2016-08-11 03:52:04', 0, 517, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6525, 5, '2016-08-11 03:52:26', 0, 505, 22.7000008, 42.7000008, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6527, 5, '2016-08-11 03:52:34', 0, 520, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6529, 5, '2016-08-11 03:52:46', 0, 529, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6531, 5, '2016-08-11 03:53:01', 0, 533, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6533, 5, '2016-08-11 03:53:15', 0, 542, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6535, 5, '2016-08-11 03:53:26', 0, 556, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6537, 5, '2016-08-11 03:53:42', 0, 547, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6539, 5, '2016-08-11 03:53:58', 0, 538, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6559, 5, '2016-08-11 03:56:35', 0, 540, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6561, 5, '2016-08-11 03:56:45', 0, 531, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6563, 3, '2016-08-11 03:56:50', 1, 588, 21.7000008, 46, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6565, 5, '2016-08-11 03:57:04', 0, 572, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6567, 5, '2016-08-11 03:57:18', 0, 574, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6569, 5, '2016-08-11 03:57:32', 0, 556, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6571, 3, '2016-08-11 03:57:41', 1, 588, 21.7000008, 46, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6573, 5, '2016-08-11 03:57:54', 0, 522, 22.7000008, 42.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6575, 5, '2016-08-11 03:58:08', 0, 565, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6577, 5, '2016-08-11 03:58:30', 0, 538, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6579, 5, '2016-08-11 03:58:45', 0, 549, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6581, 5, '2016-08-11 03:58:58', 0, 533, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6583, 2, '2016-08-11 03:58:59', 1, 492, 22.6000004, 43.0999985, 17222);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6585, 5, '2016-08-11 03:59:13', 1, 549, 22.7000008, 42.7000008, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6597, 5, '2016-08-11 04:00:46', 1, 565, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6599, 5, '2016-08-11 04:01:01', 0, 524, 22.7000008, 42.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6214, 5, '2016-08-11 03:14:56', 0, 524, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6216, 5, '2016-08-11 03:15:11', 0, 533, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6218, 5, '2016-08-11 03:15:25', 0, 531, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6220, 5, '2016-08-11 03:15:39', 0, 567, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6224, 5, '2016-08-11 03:16:14', 0, 509, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6226, 5, '2016-08-11 03:16:29', 0, 576, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6228, 5, '2016-08-11 03:16:43', 0, 513, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6230, 5, '2016-08-11 03:16:58', 0, 520, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6232, 5, '2016-08-11 03:17:14', 0, 529, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6234, 5, '2016-08-11 03:17:23', 0, 547, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6236, 5, '2016-08-11 03:17:41', 1, 570, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6238, 5, '2016-08-11 03:17:55', 0, 515, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6240, 5, '2016-08-11 03:18:09', 0, 563, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6242, 5, '2016-08-11 03:18:24', 0, 531, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6244, 1, '2016-08-11 03:18:31', 0, 549, 21.6000004, 45.5, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6246, 5, '2016-08-11 03:18:45', 0, 542, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6264, 5, '2016-08-11 03:20:55', 0, 547, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6266, 5, '2016-08-11 03:21:09', 0, 494, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6278, 5, '2016-08-11 03:22:29', 1, 503, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6280, 5, '2016-08-11 03:22:43', 0, 515, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6282, 5, '2016-08-11 03:22:57', 0, 513, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6284, 5, '2016-08-11 03:23:13', 0, 524, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6286, 5, '2016-08-11 03:23:19', 0, 538, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6288, 5, '2016-08-11 03:23:41', 0, 545, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6290, 5, '2016-08-11 03:23:55', 0, 520, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6292, 5, '2016-08-11 03:24:08', 0, 499, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6294, 5, '2016-08-11 03:24:23', 0, 509, 22.7000008, 42.7000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6296, 5, '2016-08-11 03:24:38', 0, 480, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6298, 5, '2016-08-11 03:24:52', 0, 494, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6300, 5, '2016-08-11 03:25:07', 0, 538, 22.7000008, 42.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6302, 5, '2016-08-11 03:25:22', 0, 542, 22.7000008, 42.7000008, 31033);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6332, 2, '2016-08-11 03:28:43', 1, 500, 22.7000008, 43, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6360, 5, '2016-08-11 03:32:10', 0, 576, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6362, 5, '2016-08-11 03:32:24', 0, 511, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6364, 5, '2016-08-11 03:32:39', 0, 556, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6366, 5, '2016-08-11 03:32:53', 0, 554, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6368, 5, '2016-08-11 03:33:08', 0, 494, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6370, 5, '2016-08-11 03:33:21', 0, 540, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6372, 5, '2016-08-11 03:33:30', 0, 536, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6374, 1, '2016-08-11 03:33:45', 0, 549, 21.6000004, 45.5999985, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6376, 5, '2016-08-11 03:34:05', 0, 526, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6378, 5, '2016-08-11 03:34:20', 0, 558, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6380, 5, '2016-08-11 03:34:30', 0, 547, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6382, 5, '2016-08-11 03:34:48', 0, 554, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6384, 5, '2016-08-11 03:35:02', 1, 524, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6386, 5, '2016-08-11 03:35:17', 0, 520, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6388, 5, '2016-08-11 03:35:24', 0, 547, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6390, 5, '2016-08-11 03:35:46', 0, 531, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6392, 5, '2016-08-11 03:36:15', 0, 513, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6394, 5, '2016-08-11 03:36:29', 0, 580, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6396, 5, '2016-08-11 03:36:44', 0, 538, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6398, 5, '2016-08-11 03:36:58', 1, 545, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6400, 5, '2016-08-11 03:37:11', 0, 515, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6402, 5, '2016-08-11 03:37:22', 0, 549, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6404, 5, '2016-08-11 03:37:33', 0, 531, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6406, 5, '2016-08-11 03:37:48', 0, 488, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6408, 5, '2016-08-11 03:38:09', 0, 545, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6410, 5, '2016-08-11 03:38:24', 0, 533, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6412, 5, '2016-08-11 03:38:37', 0, 517, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6414, 5, '2016-08-11 03:38:52', 0, 529, 22.7000008, 42.7000008, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6416, 5, '2016-08-11 03:39:07', 0, 513, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6418, 5, '2016-08-11 03:39:22', 0, 503, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6420, 5, '2016-08-11 03:39:36', 0, 554, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6422, 5, '2016-08-11 03:39:49', 0, 517, 22.7000008, 42.7000008, 31057);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6424, 5, '2016-08-11 03:40:05', 0, 554, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6426, 5, '2016-08-11 03:40:19', 0, 509, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6428, 5, '2016-08-11 03:40:25', 0, 567, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6430, 5, '2016-08-11 03:40:47', 0, 526, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6432, 5, '2016-08-11 03:41:01', 0, 552, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6434, 5, '2016-08-11 03:41:16', 0, 524, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6436, 5, '2016-08-11 03:41:31', 0, 520, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6438, 3, '2016-08-11 03:41:39', 1, 574, 21.7000008, 46, 1842);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6440, 5, '2016-08-11 03:41:51', 0, 515, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6442, 5, '2016-08-11 03:42:13', 0, 524, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6444, 5, '2016-08-11 03:42:27', 0, 571, 22.7000008, 42.7000008, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6446, 5, '2016-08-11 03:42:42', 0, 533, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6448, 5, '2016-08-11 03:42:57', 0, 522, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6450, 5, '2016-08-11 03:43:11', 0, 540, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6452, 5, '2016-08-11 03:43:26', 0, 524, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6454, 5, '2016-08-11 03:43:39', 0, 533, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6456, 2, '2016-08-11 03:43:48', 1, 484, 22.7000008, 43.0999985, 4352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6458, 5, '2016-08-11 03:44:09', 0, 515, 22.7000008, 42.7000008, 32835);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6460, 5, '2016-08-11 03:44:23', 0, 572, 22.7000008, 42.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6462, 5, '2016-08-11 03:44:32', 0, 499, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6464, 5, '2016-08-11 03:44:51', 0, 558, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6466, 5, '2016-08-11 03:45:05', 0, 567, 22.7000008, 42.7000008, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6468, 5, '2016-08-11 03:45:20', 0, 556, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6470, 5, '2016-08-11 03:45:35', 0, 515, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6472, 5, '2016-08-11 03:45:49', 0, 587, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6474, 5, '2016-08-11 03:46:11', 0, 561, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6476, 5, '2016-08-11 03:46:25', 1, 538, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6478, 5, '2016-08-11 03:46:40', 0, 565, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6480, 5, '2016-08-11 03:46:53', 0, 554, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6482, 5, '2016-08-11 03:47:08', 0, 503, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6484, 5, '2016-08-11 03:47:22', 0, 531, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6512, 5, '2016-08-11 03:50:43', 0, 540, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6514, 5, '2016-08-11 03:50:58', 0, 515, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6516, 5, '2016-08-11 03:51:12', 1, 529, 22.7000008, 42.7000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6518, 5, '2016-08-11 03:51:27', 0, 556, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6520, 5, '2016-08-11 03:51:41', 0, 547, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6522, 5, '2016-08-11 03:51:55', 0, 513, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6524, 5, '2016-08-11 03:52:17', 0, 536, 22.7000008, 42.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6526, 5, '2016-08-11 03:52:31', 0, 545, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6528, 0, '2016-08-11 03:52:39', 0, 551, 21.7999992, 46.0999985, 13080);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6530, 5, '2016-08-11 03:52:52', 0, 563, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6532, 5, '2016-08-11 03:53:07', 0, 567, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6534, 5, '2016-08-11 03:53:21', 0, 569, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6507, 5, '2016-08-11 03:50:07', 0, 583, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6509, 5, '2016-08-11 03:50:23', 0, 569, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6511, 5, '2016-08-11 03:50:37', 0, 552, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6541, 5, '2016-08-11 03:54:19', 0, 515, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6543, 5, '2016-08-11 03:54:33', 0, 540, 22.7000008, 42.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6545, 5, '2016-08-11 03:54:48', 0, 536, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6547, 5, '2016-08-11 03:55:02', 0, 529, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6549, 5, '2016-08-11 03:55:17', 0, 558, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6551, 5, '2016-08-11 03:55:30', 0, 507, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6553, 5, '2016-08-11 03:55:46', 0, 509, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6555, 5, '2016-08-11 03:56:00', 1, 538, 22.7000008, 42.7000008, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6557, 5, '2016-08-11 03:56:21', 0, 593, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6587, 5, '2016-08-11 03:59:28', 0, 540, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6589, 5, '2016-08-11 03:59:41', 0, 522, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6591, 5, '2016-08-11 03:59:56', 0, 524, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6593, 5, '2016-08-11 04:00:11', 0, 554, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6595, 5, '2016-08-11 04:00:32', 0, 558, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6609, 5, '2016-08-11 04:02:13', 0, 529, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6611, 5, '2016-08-11 04:02:28', 0, 547, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6613, 5, '2016-08-11 04:02:41', 0, 549, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6615, 5, '2016-08-11 04:02:55', 0, 542, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6633, 5, '2016-08-11 04:05:06', 0, 531, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6635, 5, '2016-08-11 04:05:20', 0, 554, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6637, 5, '2016-08-11 04:05:33', 1, 565, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6639, 5, '2016-08-11 04:05:48', 1, 520, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6641, 5, '2016-08-11 04:06:03', 0, 531, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6643, 5, '2016-08-11 04:06:17', 0, 513, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6645, 5, '2016-08-11 04:06:32', 0, 522, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6647, 5, '2016-08-11 04:06:45', 0, 515, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6649, 5, '2016-08-11 04:06:59', 0, 552, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6679, 5, '2016-08-11 04:10:21', 1, 529, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6717, 2, '2016-08-11 04:14:34', 0, 484, 22.5, 43.2000008, 16386);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6719, 5, '2016-08-11 04:14:47', 0, 533, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6722, 5, '2016-08-11 04:15:08', 1, 536, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6725, 5, '2016-08-11 04:15:30', 1, 542, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6728, 5, '2016-08-11 04:15:51', 0, 540, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6731, 5, '2016-08-11 04:16:12', 1, 503, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6734, 5, '2016-08-11 04:16:35', 0, 538, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6737, 5, '2016-08-11 04:16:56', 0, 520, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6740, 5, '2016-08-11 04:17:18', 1, 503, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6743, 5, '2016-08-11 04:17:39', 1, 531, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6746, 5, '2016-08-11 04:18:00', 0, 572, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6752, 5, '2016-08-11 04:18:44', 1, 565, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6755, 5, '2016-08-11 04:19:06', 0, 517, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6758, 5, '2016-08-11 04:19:20', 0, 552, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6761, 5, '2016-08-11 04:19:41', 1, 524, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6764, 5, '2016-08-11 04:20:02', 1, 540, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6767, 5, '2016-08-11 04:20:25', 0, 490, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6536, 5, '2016-08-11 03:53:36', 0, 545, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6538, 5, '2016-08-11 03:53:49', 0, 558, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6540, 5, '2016-08-11 03:54:05', 0, 526, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6542, 5, '2016-08-11 03:54:28', 1, 540, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6544, 5, '2016-08-11 03:54:33', 0, 536, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6546, 5, '2016-08-11 03:54:55', 0, 509, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6548, 5, '2016-08-11 03:55:09', 0, 547, 22.7000008, 42.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6550, 5, '2016-08-11 03:55:24', 0, 515, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6552, 5, '2016-08-11 03:55:38', 0, 522, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6554, 5, '2016-08-11 03:55:55', 0, 554, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6556, 5, '2016-08-11 03:56:06', 1, 545, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6558, 5, '2016-08-11 03:56:29', 0, 538, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6560, 5, '2016-08-11 03:56:43', 0, 517, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6562, 3, '2016-08-11 03:56:46', 1, 588, 21.7000008, 46, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6564, 5, '2016-08-11 03:56:57', 0, 545, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6604, 5, '2016-08-11 04:01:37', 0, 545, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6606, 5, '2016-08-11 04:01:52', 0, 545, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6608, 5, '2016-08-11 04:02:06', 0, 517, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6610, 5, '2016-08-11 04:02:22', 0, 545, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6612, 5, '2016-08-11 04:02:34', 0, 536, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6614, 5, '2016-08-11 04:02:50', 0, 545, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6638, 5, '2016-08-11 04:05:41', 1, 531, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6640, 5, '2016-08-11 04:05:56', 0, 529, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6642, 5, '2016-08-11 04:06:09', 0, 526, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6644, 5, '2016-08-11 04:06:24', 0, 578, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6646, 5, '2016-08-11 04:06:40', 0, 529, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6648, 5, '2016-08-11 04:06:54', 0, 505, 22.7000008, 42.7000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6674, 5, '2016-08-11 04:09:45', 0, 565, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6676, 5, '2016-08-11 04:09:59', 0, 524, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6678, 5, '2016-08-11 04:10:13', 1, 556, 22.7000008, 42.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6680, 5, '2016-08-11 04:10:31', 1, 531, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6682, 5, '2016-08-11 04:10:43', 0, 574, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6684, 5, '2016-08-11 04:10:57', 0, 524, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6686, 5, '2016-08-11 04:11:11', 0, 547, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6688, 5, '2016-08-11 04:11:25', 0, 529, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6690, 5, '2016-08-11 04:11:40', 0, 542, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6692, 5, '2016-08-11 04:11:55', 0, 565, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6694, 5, '2016-08-11 04:12:09', 0, 538, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6696, 5, '2016-08-11 04:12:23', 0, 520, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6698, 5, '2016-08-11 04:12:45', 0, 531, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6700, 5, '2016-08-11 04:12:52', 1, 567, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6702, 5, '2016-08-11 04:13:07', 0, 556, 22.7000008, 42.7000008, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6704, 5, '2016-08-11 04:13:21', 0, 547, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6718, 2, '2016-08-11 04:14:37', 0, 484, 22.5, 43.2000008, 16386);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6721, 5, '2016-08-11 04:15:01', 1, 579, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6724, 5, '2016-08-11 04:15:23', 1, 509, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6727, 5, '2016-08-11 04:15:45', 0, 511, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6730, 5, '2016-08-11 04:16:06', 1, 501, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6733, 5, '2016-08-11 04:16:27', 0, 515, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6763, 5, '2016-08-11 04:19:56', 1, 540, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6766, 5, '2016-08-11 04:20:17', 1, 533, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6769, 5, '2016-08-11 04:20:46', 1, 531, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6601, 5, '2016-08-11 04:01:15', 0, 522, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6603, 5, '2016-08-11 04:01:30', 0, 531, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6605, 5, '2016-08-11 04:01:44', 0, 536, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6607, 5, '2016-08-11 04:01:58', 0, 517, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6617, 5, '2016-08-11 04:03:11', 0, 520, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6619, 5, '2016-08-11 04:03:25', 0, 542, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6621, 5, '2016-08-11 04:03:40', 0, 533, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6623, 5, '2016-08-11 04:03:54', 1, 505, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6625, 5, '2016-08-11 04:04:01', 0, 511, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6627, 5, '2016-08-11 04:04:15', 0, 561, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6629, 5, '2016-08-11 04:04:36', 0, 542, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6631, 5, '2016-08-11 04:04:51', 0, 577, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6651, 5, '2016-08-11 04:07:15', 0, 547, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6653, 5, '2016-08-11 04:07:29', 0, 494, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6655, 5, '2016-08-11 04:07:38', 0, 549, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6657, 0, '2016-08-11 04:07:45', 0, 539, 21.7999992, 46.0999985, 2368);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6659, 5, '2016-08-11 04:07:57', 0, 540, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6661, 5, '2016-08-11 04:08:11', 0, 565, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6663, 5, '2016-08-11 04:08:26', 0, 515, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6665, 5, '2016-08-11 04:08:41', 1, 552, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6667, 5, '2016-08-11 04:08:55', 1, 549, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6669, 5, '2016-08-11 04:09:10', 0, 529, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6671, 5, '2016-08-11 04:09:23', 0, 520, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6673, 5, '2016-08-11 04:09:38', 0, 583, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6675, 5, '2016-08-11 04:09:52', 0, 545, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6677, 5, '2016-08-11 04:10:07', 0, 513, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6681, 5, '2016-08-11 04:10:35', 1, 529, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6683, 5, '2016-08-11 04:10:50', 0, 540, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6685, 5, '2016-08-11 04:11:04', 0, 507, 22.7000008, 42.7000008, 30979);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6687, 5, '2016-08-11 04:11:19', 0, 501, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6689, 5, '2016-08-11 04:11:27', 0, 515, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6691, 5, '2016-08-11 04:11:47', 0, 513, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6693, 5, '2016-08-11 04:12:01', 0, 545, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6695, 5, '2016-08-11 04:12:16', 0, 540, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6697, 5, '2016-08-11 04:12:37', 0, 561, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6699, 3, '2016-08-11 04:12:46', 1, 559, 21.7000008, 46, 2326);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6701, 5, '2016-08-11 04:12:59', 1, 547, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6703, 5, '2016-08-11 04:13:13', 0, 561, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6705, 5, '2016-08-11 04:13:28', 1, 526, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6707, 5, '2016-08-11 04:13:43', 1, 524, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6709, 5, '2016-08-11 04:13:57', 0, 579, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6711, 5, '2016-08-11 04:14:09', 0, 547, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6713, 5, '2016-08-11 04:14:18', 0, 509, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6715, 5, '2016-08-11 04:14:34', 0, 522, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6720, 5, '2016-08-11 04:14:54', 0, 505, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6723, 5, '2016-08-11 04:15:15', 1, 540, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6726, 5, '2016-08-11 04:15:37', 0, 520, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6729, 5, '2016-08-11 04:15:59', 1, 540, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6732, 5, '2016-08-11 04:16:20', 1, 540, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6735, 5, '2016-08-11 04:16:41', 0, 538, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6736, 5, '2016-08-11 04:16:49', 0, 540, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6738, 5, '2016-08-11 04:17:03', 0, 496, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6739, 5, '2016-08-11 04:17:11', 0, 517, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6741, 5, '2016-08-11 04:17:24', 1, 501, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6742, 5, '2016-08-11 04:17:32', 1, 492, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6744, 5, '2016-08-11 04:17:47', 1, 552, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6745, 5, '2016-08-11 04:17:54', 1, 558, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6747, 5, '2016-08-11 04:18:08', 1, 570, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6748, 5, '2016-08-11 04:18:15', 1, 517, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6750, 5, '2016-08-11 04:18:30', 1, 552, 22.7000008, 42.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6751, 5, '2016-08-11 04:18:37', 1, 507, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6753, 5, '2016-08-11 04:18:51', 1, 595, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6754, 5, '2016-08-11 04:18:59', 1, 542, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6756, 5, '2016-08-11 04:19:12', 0, 552, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6757, 1, '2016-08-11 04:19:13', 0, 523, 21.6000004, 45.5999985, 9029);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6759, 5, '2016-08-11 04:19:27', 1, 524, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6760, 5, '2016-08-11 04:19:35', 1, 558, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6762, 5, '2016-08-11 04:19:49', 1, 556, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6765, 5, '2016-08-11 04:20:10', 1, 538, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6768, 5, '2016-08-11 04:20:28', 0, 547, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6771, 5, '2016-08-11 04:21:01', 1, 533, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6773, 5, '2016-08-11 04:21:14', 1, 565, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6775, 5, '2016-08-11 04:21:28', 1, 520, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6777, 5, '2016-08-11 04:21:43', 1, 529, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6779, 5, '2016-08-11 04:21:58', 1, 507, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6781, 5, '2016-08-11 04:22:12', 1, 524, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6783, 5, '2016-08-11 04:22:26', 1, 517, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6776, 5, '2016-08-11 04:21:37', 1, 538, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6778, 5, '2016-08-11 04:21:50', 1, 536, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6780, 5, '2016-08-11 04:22:04', 1, 556, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6782, 5, '2016-08-11 04:22:20', 1, 511, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6784, 5, '2016-08-11 04:22:34', 1, 554, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6785, 5, '2016-08-11 04:22:41', 1, 586, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6786, 5, '2016-08-11 04:22:48', 0, 515, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6787, 5, '2016-08-11 04:22:55', 1, 515, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6788, 0, '2016-08-11 04:22:55', 1, 527, 21.7999992, 46, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6789, 5, '2016-08-11 04:22:55', 1, 552, 22.7000008, 42.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6790, 0, '2016-08-11 04:23:03', 1, 527, 21.7999992, 46, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6791, 5, '2016-08-11 04:23:10', 1, 515, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6792, 5, '2016-08-11 04:23:16', 1, 533, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6793, 5, '2016-08-11 04:23:24', 1, 531, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6794, 5, '2016-08-11 04:23:31', 1, 552, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6795, 5, '2016-08-11 04:23:38', 1, 549, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6796, 5, '2016-08-11 04:23:46', 1, 531, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6797, 5, '2016-08-11 04:23:52', 1, 520, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6798, 5, '2016-08-11 04:24:00', 1, 542, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6799, 5, '2016-08-11 04:24:07', 1, 520, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6800, 5, '2016-08-11 04:24:14', 1, 533, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6801, 5, '2016-08-11 04:24:19', 1, 531, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6802, 5, '2016-08-11 04:24:28', 1, 515, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6803, 5, '2016-08-11 04:24:36', 1, 545, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6804, 5, '2016-08-11 04:24:38', 1, 503, 22.7000008, 42.7000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6805, 5, '2016-08-11 04:24:57', 1, 538, 22.7000008, 42.7000008, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6806, 5, '2016-08-11 04:25:04', 1, 549, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6807, 5, '2016-08-11 04:25:12', 1, 561, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6808, 5, '2016-08-11 04:25:18', 1, 531, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6809, 5, '2016-08-11 04:25:26', 1, 574, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6810, 5, '2016-08-11 04:25:33', 1, 554, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6811, 5, '2016-08-11 04:25:40', 1, 490, 22.7000008, 42.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6812, 5, '2016-08-11 04:25:44', 1, 552, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6813, 5, '2016-08-11 04:25:54', 1, 517, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6814, 5, '2016-08-11 04:26:03', 1, 558, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6815, 5, '2016-08-11 04:26:09', 1, 565, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6816, 5, '2016-08-11 04:26:16', 1, 579, 22.7000008, 42.7000008, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6817, 5, '2016-08-11 04:26:24', 1, 536, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6818, 5, '2016-08-11 04:26:30', 1, 579, 22.7000008, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6819, 5, '2016-08-11 04:26:38', 1, 552, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6820, 5, '2016-08-11 04:26:52', 1, 547, 22.7000008, 42.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6821, 5, '2016-08-11 04:27:00', 1, 522, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6822, 5, '2016-08-11 04:27:06', 1, 513, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6823, 5, '2016-08-11 04:27:14', 1, 529, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6824, 5, '2016-08-11 04:27:21', 1, 513, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6825, 5, '2016-08-11 04:27:28', 1, 563, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6826, 5, '2016-08-11 04:27:36', 1, 556, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6827, 5, '2016-08-11 04:27:42', 1, 540, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6828, 5, '2016-08-11 04:27:50', 1, 517, 22.7000008, 42.7000008, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6829, 5, '2016-08-11 04:27:56', 1, 572, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6830, 3, '2016-08-11 04:27:57', 0, 588, 21.7000008, 46, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6831, 3, '2016-08-11 04:27:57', 0, 588, 21.7000008, 46, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6832, 5, '2016-08-11 04:28:04', 1, 517, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6833, 5, '2016-08-11 04:28:11', 1, 524, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6834, 5, '2016-08-11 04:28:18', 1, 554, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6835, 5, '2016-08-11 04:28:26', 1, 549, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6836, 5, '2016-08-11 04:28:33', 1, 561, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6837, 5, '2016-08-11 04:28:39', 1, 492, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6838, 5, '2016-08-11 04:28:47', 1, 574, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6839, 5, '2016-08-11 04:28:54', 1, 549, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6840, 5, '2016-08-11 04:29:02', 1, 549, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6841, 5, '2016-08-11 04:29:08', 1, 536, 22.7000008, 42.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6842, 5, '2016-08-11 04:29:16', 1, 533, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6843, 5, '2016-08-11 04:29:23', 1, 538, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6844, 5, '2016-08-11 04:29:29', 1, 556, 22.7000008, 42.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6845, 5, '2016-08-11 04:29:38', 1, 533, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6846, 5, '2016-08-11 04:29:44', 1, 522, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6847, 2, '2016-08-11 04:29:45', 0, 509, 22.3999996, 43.4000015, 2422);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6848, 5, '2016-08-11 04:29:53', 1, 526, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6849, 5, '2016-08-11 04:29:59', 1, 515, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6850, 5, '2016-08-11 04:30:06', 1, 524, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6851, 5, '2016-08-11 04:30:14', 1, 563, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6852, 5, '2016-08-11 04:30:20', 1, 549, 22.7000008, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6853, 5, '2016-08-11 04:30:28', 1, 549, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6854, 5, '2016-08-11 04:30:35', 1, 542, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6855, 5, '2016-08-11 04:30:41', 1, 545, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6856, 5, '2016-08-11 04:30:56', 1, 561, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6857, 5, '2016-08-11 04:31:04', 1, 515, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6858, 5, '2016-08-11 04:31:11', 1, 494, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6859, 5, '2016-08-11 04:31:18', 1, 567, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6860, 5, '2016-08-11 04:31:25', 1, 509, 22.7000008, 42.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6861, 5, '2016-08-11 04:31:32', 1, 505, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6862, 5, '2016-08-11 04:31:40', 1, 501, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6863, 5, '2016-08-11 04:31:47', 1, 513, 22.7000008, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6864, 5, '2016-08-11 04:31:53', 1, 513, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6865, 5, '2016-08-11 04:32:01', 1, 509, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6866, 5, '2016-08-11 04:32:08', 1, 556, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6867, 5, '2016-08-11 04:32:15', 1, 533, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6868, 5, '2016-08-11 04:32:23', 1, 522, 22.7000008, 42.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6869, 5, '2016-08-11 04:32:30', 1, 529, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6870, 5, '2016-08-11 04:32:37', 1, 515, 22.7000008, 42.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6871, 5, '2016-08-11 04:32:43', 0, 536, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6872, 5, '2016-08-11 04:32:52', 1, 558, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6873, 5, '2016-08-11 04:32:58', 1, 536, 22.7000008, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6874, 5, '2016-08-11 04:33:06', 1, 561, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6875, 5, '2016-08-11 04:33:14', 1, 480, 22.7000008, 42.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6876, 5, '2016-08-11 04:33:20', 1, 567, 22.7000008, 42.7000008, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6877, 5, '2016-08-11 04:33:28', 1, 501, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6878, 5, '2016-08-11 04:33:35', 1, 484, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6879, 5, '2016-08-11 04:33:42', 1, 542, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6880, 5, '2016-08-11 04:33:49', 1, 501, 22.7000008, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6881, 5, '2016-08-11 04:33:57', 1, 558, 22.7000008, 42.7000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6882, 5, '2016-08-11 04:34:03', 1, 513, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6883, 5, '2016-08-11 04:34:10', 1, 545, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6884, 5, '2016-08-11 04:34:19', 0, 526, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6885, 5, '2016-08-11 04:34:23', 0, 579, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6886, 1, '2016-08-11 04:34:25', 0, 516, 21.6000004, 45.5, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6887, 5, '2016-08-11 04:34:29', 0, 509, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6889, 5, '2016-08-11 04:34:41', 1, 565, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6903, 5, '2016-08-11 04:36:27', 1, 556, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6905, 5, '2016-08-11 04:36:42', 0, 507, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6907, 5, '2016-08-11 04:36:55', 0, 542, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6909, 5, '2016-08-11 04:37:09', 1, 538, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6911, 5, '2016-08-11 04:37:24', 0, 531, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6913, 5, '2016-08-11 04:37:39', 0, 529, 22.7000008, 42.7000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6915, 5, '2016-08-11 04:37:53', 0, 524, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6917, 5, '2016-08-11 04:38:05', 0, 549, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6935, 5, '2016-08-11 04:40:09', 0, 515, 22.7000008, 42.7000008, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6937, 5, '2016-08-11 04:40:23', 0, 563, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6939, 5, '2016-08-11 04:40:38', 0, 558, 22.7000008, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6983, 5, '2016-08-11 04:45:46', 1, 536, 22.7000008, 42.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6985, 5, '2016-08-11 04:46:01', 1, 520, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6987, 5, '2016-08-11 04:46:16', 1, 513, 22.7999992, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7003, 5, '2016-08-11 04:48:10', 1, 579, 22.7999992, 42.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7005, 5, '2016-08-11 04:48:24', 1, 524, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7007, 5, '2016-08-11 04:48:39', 1, 507, 22.7000008, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7009, 5, '2016-08-11 04:48:54', 1, 556, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7011, 5, '2016-08-11 04:49:15', 1, 545, 22.7999992, 42.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7013, 5, '2016-08-11 04:49:30', 1, 517, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7015, 1, '2016-08-11 04:49:37', 5, 507, 21.6000004, 45.5999985, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7017, 5, '2016-08-11 04:49:52', 1, 531, 22.7999992, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7019, 5, '2016-08-11 04:50:06', 1, 517, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7021, 5, '2016-08-11 04:50:20', 1, 538, 22.7999992, 42.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7023, 5, '2016-08-11 04:50:36', 1, 549, 22.7999992, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7025, 5, '2016-08-11 04:50:48', 1, 540, 22.7999992, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7027, 5, '2016-08-11 04:51:02', 1, 531, 22.7999992, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7029, 5, '2016-08-11 04:51:24', 0, 545, 22.7000008, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7059, 5, '2016-08-11 04:54:49', 2, 552, 22.7000008, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7061, 5, '2016-08-11 04:55:08', 2, 542, 22.7000008, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7063, 5, '2016-08-11 04:55:22', 2, 552, 22.7000008, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7065, 5, '2016-08-11 04:55:36', 2, 542, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7067, 5, '2016-08-11 04:55:50', 2, 511, 22.7999992, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7069, 5, '2016-08-11 04:56:04', 1, 572, 22.7000008, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7071, 5, '2016-08-11 04:56:19', 2, 524, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7073, 5, '2016-08-11 04:56:29', 1, 547, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7075, 5, '2016-08-11 04:56:48', 1, 552, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7077, 5, '2016-08-11 04:57:01', 1, 565, 22.7999992, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7079, 5, '2016-08-11 04:57:25', 1, 538, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7081, 5, '2016-08-11 04:57:39', 2, 545, 22.7999992, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7083, 5, '2016-08-11 04:57:52', 1, 524, 22.7999992, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7085, 5, '2016-08-11 04:58:06', 1, 556, 22.7999992, 42.7000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7115, 5, '2016-08-11 05:01:21', 2, 565, 22.7999992, 42.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7117, 5, '2016-08-11 05:01:35', 2, 509, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7119, 5, '2016-08-11 05:01:50', 2, 515, 22.7999992, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7121, 5, '2016-08-11 05:02:01', 2, 520, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7123, 5, '2016-08-11 05:02:18', 2, 547, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7125, 5, '2016-08-11 05:02:33', 2, 496, 22.7999992, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7127, 5, '2016-08-11 05:02:47', 2, 567, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7139, 5, '2016-08-11 05:04:20', 2, 531, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7141, 5, '2016-08-11 05:04:35', 2, 524, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7143, 5, '2016-08-11 05:04:45', 2, 565, 22.7999992, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7145, 5, '2016-08-11 05:04:57', 2, 565, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7147, 5, '2016-08-11 05:05:11', 1, 501, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7149, 5, '2016-08-11 05:05:30', 1, 529, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7151, 5, '2016-08-11 05:05:47', 3, 540, 22.7999992, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7153, 5, '2016-08-11 05:06:01', 3, 503, 22.7999992, 42.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7155, 5, '2016-08-11 05:06:15', 2, 520, 22.7999992, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7157, 5, '2016-08-11 05:06:29', 3, 570, 22.7999992, 42.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7159, 5, '2016-08-11 05:06:45', 3, 542, 22.7999992, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7161, 5, '2016-08-11 05:06:59', 3, 556, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7163, 5, '2016-08-11 05:07:13', 3, 561, 22.7999992, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7165, 5, '2016-08-11 05:07:35', 3, 509, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7167, 5, '2016-08-11 05:07:49', 3, 554, 22.7999992, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7169, 5, '2016-08-11 05:08:03', 3, 538, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7171, 5, '2016-08-11 05:08:17', 3, 513, 22.7999992, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7173, 5, '2016-08-11 05:08:27', 3, 531, 22.7999992, 42.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7175, 5, '2016-08-11 05:08:39', 3, 549, 22.7999992, 42.7999992, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7177, 5, '2016-08-11 05:08:53', 3, 547, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7179, 5, '2016-08-11 05:09:07', 3, 552, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7181, 5, '2016-08-11 05:09:22', 3, 554, 22.7999992, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7183, 5, '2016-08-11 05:09:38', 3, 524, 22.7999992, 42.7999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7185, 5, '2016-08-11 05:09:51', 3, 565, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7187, 5, '2016-08-11 05:10:05', 3, 549, 22.7999992, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7189, 5, '2016-08-11 05:10:19', 3, 509, 22.7999992, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7191, 5, '2016-08-11 05:10:34', 5, 540, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7193, 5, '2016-08-11 05:10:48', 3, 499, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7195, 5, '2016-08-11 05:11:02', 3, 538, 22.7999992, 42.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7197, 5, '2016-08-11 05:11:16', 3, 524, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7199, 5, '2016-08-11 05:11:38', 3, 488, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7219, 5, '2016-08-11 05:13:55', 32, 509, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7221, 5, '2016-08-11 05:14:09', 32, 540, 22.7999992, 42.7999992, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7223, 5, '2016-08-11 05:14:24', 32, 531, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7225, 5, '2016-08-11 05:14:30', 32, 488, 22.7999992, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7227, 5, '2016-08-11 05:14:46', 32, 513, 22.7999992, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7229, 5, '2016-08-11 05:15:06', 32, 552, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7231, 5, '2016-08-11 05:15:17', 32, 524, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7233, 5, '2016-08-11 05:15:28', 33, 552, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7235, 5, '2016-08-11 05:15:50', 34, 501, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7237, 5, '2016-08-11 05:16:04', 33, 540, 22.7999992, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7239, 5, '2016-08-11 05:16:18', 34, 567, 22.7999992, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7241, 5, '2016-08-11 05:16:33', 34, 542, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7243, 5, '2016-08-11 05:16:47', 33, 549, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7245, 5, '2016-08-11 05:17:02', 33, 540, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7247, 5, '2016-08-11 05:17:16', 33, 526, 22.7999992, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7257, 5, '2016-08-11 05:18:28', 34, 545, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7259, 5, '2016-08-11 05:18:42', 34, 531, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7261, 5, '2016-08-11 05:18:56', 34, 554, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7263, 5, '2016-08-11 05:19:10', 34, 567, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7265, 5, '2016-08-11 05:19:25', 33, 515, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7267, 5, '2016-08-11 05:19:46', 33, 522, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7269, 5, '2016-08-11 05:19:55', 35, 552, 22.7999992, 42.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7271, 5, '2016-08-11 05:20:08', 35, 524, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7273, 5, '2016-08-11 05:20:22', 35, 531, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7275, 5, '2016-08-11 05:20:44', 35, 545, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6888, 5, '2016-08-11 04:34:41', 1, 545, 22.7000008, 42.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6890, 5, '2016-08-11 04:34:49', 1, 572, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6892, 5, '2016-08-11 04:35:07', 1, 574, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6894, 5, '2016-08-11 04:35:22', 1, 509, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6896, 5, '2016-08-11 04:35:38', 1, 520, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6898, 5, '2016-08-11 04:35:51', 1, 556, 22.7000008, 42.7000008, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6900, 5, '2016-08-11 04:36:05', 1, 554, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6908, 5, '2016-08-11 04:37:03', 0, 517, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6910, 5, '2016-08-11 04:37:17', 1, 515, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6912, 5, '2016-08-11 04:37:31', 0, 538, 22.7000008, 42.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6914, 5, '2016-08-11 04:37:45', 0, 520, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6916, 5, '2016-08-11 04:38:00', 0, 536, 22.7000008, 42.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6958, 5, '2016-08-11 04:43:06', 0, 574, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6960, 5, '2016-08-11 04:43:16', 0, 515, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6962, 5, '2016-08-11 04:43:31', 1, 492, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6964, 5, '2016-08-11 04:43:46', 1, 511, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6966, 5, '2016-08-11 04:43:54', 1, 556, 22.7000008, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6968, 5, '2016-08-11 04:44:13', 1, 540, 22.7000008, 42.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6970, 5, '2016-08-11 04:44:32', 0, 538, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6996, 5, '2016-08-11 04:47:20', 1, 549, 22.7000008, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6998, 5, '2016-08-11 04:47:29', 1, 509, 22.7000008, 42.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7004, 5, '2016-08-11 04:48:18', 1, 547, 22.7000008, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7006, 5, '2016-08-11 04:48:32', 1, 533, 22.7000008, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7008, 5, '2016-08-11 04:48:47', 1, 558, 22.7000008, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7010, 5, '2016-08-11 04:49:00', 1, 538, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7012, 5, '2016-08-11 04:49:22', 1, 533, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7014, 5, '2016-08-11 04:49:34', 1, 556, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7016, 5, '2016-08-11 04:49:44', 1, 522, 22.7999992, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7018, 5, '2016-08-11 04:49:58', 1, 563, 22.7000008, 42.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7020, 5, '2016-08-11 04:50:12', 1, 540, 22.7999992, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7022, 5, '2016-08-11 04:50:27', 1, 574, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7024, 5, '2016-08-11 04:50:42', 1, 529, 22.7000008, 42.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7026, 5, '2016-08-11 04:50:56', 1, 531, 22.7999992, 42.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7028, 5, '2016-08-11 04:51:17', 0, 509, 22.7999992, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7030, 5, '2016-08-11 04:51:33', 0, 552, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7060, 5, '2016-08-11 04:54:59', 2, 533, 22.7000008, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7062, 5, '2016-08-11 04:55:15', 2, 536, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7064, 5, '2016-08-11 04:55:29', 2, 531, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7066, 5, '2016-08-11 04:55:43', 2, 567, 22.7999992, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7068, 5, '2016-08-11 04:55:58', 2, 526, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7070, 5, '2016-08-11 04:56:12', 1, 547, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7072, 5, '2016-08-11 04:56:26', 2, 509, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7074, 5, '2016-08-11 04:56:40', 1, 549, 22.7999992, 42.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7076, 5, '2016-08-11 04:56:56', 1, 542, 22.7999992, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7078, 5, '2016-08-11 04:57:09', 1, 531, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7080, 5, '2016-08-11 04:57:31', 2, 522, 22.7999992, 42.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7082, 5, '2016-08-11 04:57:48', 2, 524, 22.7999992, 42.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7084, 5, '2016-08-11 04:58:01', 1, 538, 22.7999992, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7086, 5, '2016-08-11 04:58:13', 1, 536, 22.7999992, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7088, 3, '2016-08-11 04:58:22', 17, 591, 21.7000008, 46, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7090, 5, '2016-08-11 04:58:35', 2, 536, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7092, 5, '2016-08-11 04:58:49', 2, 538, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7094, 5, '2016-08-11 04:59:04', 1, 567, 22.7999992, 42.7000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7096, 5, '2016-08-11 04:59:18', 1, 511, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7098, 5, '2016-08-11 04:59:33', 1, 572, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7100, 5, '2016-08-11 04:59:48', 1, 511, 22.7999992, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7102, 5, '2016-08-11 05:00:01', 1, 529, 22.7999992, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7104, 2, '2016-08-11 05:00:08', 4, 505, 22.6000004, 43.4000015, 4914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7106, 5, '2016-08-11 05:00:16', 1, 554, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7108, 5, '2016-08-11 05:00:31', 2, 549, 22.7999992, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7110, 5, '2016-08-11 05:00:45', 2, 542, 22.7999992, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7112, 5, '2016-08-11 05:00:59', 2, 579, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7120, 5, '2016-08-11 05:01:57', 2, 545, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7122, 5, '2016-08-11 05:02:11', 2, 547, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7124, 5, '2016-08-11 05:02:26', 2, 542, 22.7999992, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7126, 5, '2016-08-11 05:02:39', 2, 570, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7128, 5, '2016-08-11 05:02:54', 2, 511, 22.7999992, 42.7999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7130, 5, '2016-08-11 05:03:08', 2, 545, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7132, 5, '2016-08-11 05:03:29', 2, 524, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7134, 5, '2016-08-11 05:03:45', 2, 552, 22.7999992, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7136, 5, '2016-08-11 05:03:59', 2, 529, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7158, 5, '2016-08-11 05:06:37', 3, 567, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7160, 5, '2016-08-11 05:06:51', 3, 522, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7162, 5, '2016-08-11 05:07:05', 3, 536, 22.7999992, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7164, 5, '2016-08-11 05:07:20', 3, 531, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7166, 5, '2016-08-11 05:07:41', 3, 579, 22.7999992, 42.7999992, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7168, 5, '2016-08-11 05:07:56', 3, 503, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7170, 5, '2016-08-11 05:08:10', 3, 542, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7172, 5, '2016-08-11 05:08:25', 3, 593, 22.7999992, 42.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7174, 0, '2016-08-11 05:08:32', 3, 534, 21.8999996, 46, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7176, 5, '2016-08-11 05:08:46', 3, 552, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7178, 5, '2016-08-11 05:09:00', 3, 574, 22.7999992, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7180, 5, '2016-08-11 05:09:15', 3, 561, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7182, 5, '2016-08-11 05:09:29', 3, 524, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7184, 5, '2016-08-11 05:09:43', 3, 549, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7186, 5, '2016-08-11 05:09:58', 3, 524, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7188, 5, '2016-08-11 05:10:13', 3, 552, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7190, 5, '2016-08-11 05:10:27', 3, 515, 22.7999992, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7194, 5, '2016-08-11 05:10:55', 3, 533, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7196, 5, '2016-08-11 05:11:05', 3, 570, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7198, 5, '2016-08-11 05:11:24', 3, 520, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7200, 5, '2016-08-11 05:11:46', 3, 558, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7202, 5, '2016-08-11 05:12:00', 3, 515, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7204, 5, '2016-08-11 05:12:15', 16, 538, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7206, 5, '2016-08-11 05:12:31', 32, 547, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7208, 5, '2016-08-11 05:12:42', 32, 484, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7210, 5, '2016-08-11 05:12:57', 32, 588, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7212, 5, '2016-08-11 05:13:11', 32, 515, 22.7999992, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7214, 5, '2016-08-11 05:13:26', 32, 522, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7216, 3, '2016-08-11 05:13:34', 67, 597, 21.7000008, 46, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7232, 2, '2016-08-11 05:15:21', 24, 472, 22.7000008, 43.4000015, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7234, 5, '2016-08-11 05:15:42', 32, 540, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7236, 5, '2016-08-11 05:15:56', 34, 513, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7238, 5, '2016-08-11 05:16:11', 33, 577, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7240, 5, '2016-08-11 05:16:26', 34, 531, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7254, 5, '2016-08-11 05:18:06', 33, 515, 22.7999992, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7256, 5, '2016-08-11 05:18:20', 33, 533, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6891, 5, '2016-08-11 04:35:01', 1, 540, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6893, 5, '2016-08-11 04:35:15', 1, 540, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6895, 5, '2016-08-11 04:35:29', 1, 572, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6897, 5, '2016-08-11 04:35:43', 1, 583, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6899, 5, '2016-08-11 04:35:58', 1, 526, 22.7000008, 42.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6901, 5, '2016-08-11 04:36:13', 1, 533, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6919, 5, '2016-08-11 04:38:15', 0, 574, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6921, 5, '2016-08-11 04:38:28', 0, 515, 22.7000008, 42.7000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6923, 5, '2016-08-11 04:38:44', 0, 540, 22.7000008, 42.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6925, 5, '2016-08-11 04:38:58', 0, 545, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6927, 5, '2016-08-11 04:39:11', 1, 513, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6929, 5, '2016-08-11 04:39:26', 0, 507, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6931, 5, '2016-08-11 04:39:41', 0, 529, 22.7999992, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6933, 5, '2016-08-11 04:39:55', 0, 552, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6941, 5, '2016-08-11 04:40:53', 0, 545, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6943, 5, '2016-08-11 04:41:14', 0, 524, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6945, 5, '2016-08-11 04:41:29', 0, 529, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6947, 5, '2016-08-11 04:41:43', 1, 549, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6949, 5, '2016-08-11 04:41:56', 0, 531, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6951, 5, '2016-08-11 04:42:11', 1, 552, 22.7000008, 42.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6953, 5, '2016-08-11 04:42:26', 1, 522, 22.7000008, 42.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6955, 5, '2016-08-11 04:42:40', 1, 536, 22.7000008, 42.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6957, 5, '2016-08-11 04:42:55', 1, 515, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6959, 3, '2016-08-11 04:43:11', 3, 581, 21.7000008, 46, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6961, 5, '2016-08-11 04:43:24', 1, 515, 22.7000008, 42.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6963, 5, '2016-08-11 04:43:38', 1, 572, 22.7000008, 42.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6965, 5, '2016-08-11 04:43:52', 1, 522, 22.7000008, 42.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6967, 5, '2016-08-11 04:44:07', 1, 517, 22.7000008, 42.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6969, 5, '2016-08-11 04:44:20', 1, 522, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6971, 5, '2016-08-11 04:44:35', 1, 549, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6973, 5, '2016-08-11 04:44:50', 1, 529, 22.7999992, 42.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6975, 2, '2016-08-11 04:44:56', 2, 505, 22.3999996, 43.5, 4388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6977, 5, '2016-08-11 04:45:04', 1, 503, 22.7999992, 42.7000008, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6979, 5, '2016-08-11 04:45:18', 1, 531, 22.7000008, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6981, 5, '2016-08-11 04:45:33', 1, 538, 22.7000008, 42.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6989, 5, '2016-08-11 04:46:31', 1, 517, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6991, 5, '2016-08-11 04:46:46', 1, 554, 22.7000008, 42.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6993, 5, '2016-08-11 04:46:59', 1, 561, 22.7999992, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6995, 5, '2016-08-11 04:47:12', 1, 542, 22.7000008, 42.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6997, 5, '2016-08-11 04:47:28', 1, 524, 22.7000008, 42.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6999, 5, '2016-08-11 04:47:42', 1, 538, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7001, 5, '2016-08-11 04:47:56', 1, 511, 22.7000008, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7031, 5, '2016-08-11 04:51:38', 1, 499, 22.7000008, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7033, 5, '2016-08-11 04:51:54', 0, 524, 22.7000008, 42.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7035, 5, '2016-08-11 04:52:08', 0, 561, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7037, 5, '2016-08-11 04:52:22', 0, 542, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7039, 5, '2016-08-11 04:52:36', 0, 556, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7041, 5, '2016-08-11 04:52:52', 0, 522, 22.7000008, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7043, 5, '2016-08-11 04:53:05', 0, 531, 22.7000008, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7045, 5, '2016-08-11 04:53:17', 2, 505, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7047, 5, '2016-08-11 04:53:26', 2, 526, 22.7999992, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7049, 5, '2016-08-11 04:53:42', 2, 552, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7051, 5, '2016-08-11 04:53:55', 2, 540, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7053, 5, '2016-08-11 04:54:11', 0, 547, 22.7999992, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7055, 5, '2016-08-11 04:54:25', 2, 540, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7057, 5, '2016-08-11 04:54:38', 2, 547, 22.7000008, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7087, 5, '2016-08-11 04:58:17', 1, 567, 22.7999992, 42.7999992, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7089, 5, '2016-08-11 04:58:28', 2, 565, 22.7000008, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7091, 5, '2016-08-11 04:58:43', 1, 549, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7093, 5, '2016-08-11 04:58:57', 2, 513, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7095, 5, '2016-08-11 04:59:11', 1, 558, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7097, 5, '2016-08-11 04:59:26', 1, 488, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7099, 5, '2016-08-11 04:59:40', 1, 511, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7101, 5, '2016-08-11 04:59:56', 1, 505, 22.7999992, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7103, 5, '2016-08-11 05:00:06', 1, 526, 22.7999992, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7105, 2, '2016-08-11 05:00:11', 4, 505, 22.6000004, 43.4000015, 4914);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7107, 5, '2016-08-11 05:00:23', 1, 531, 22.7999992, 42.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7109, 5, '2016-08-11 05:00:38', 2, 531, 22.7999992, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7111, 5, '2016-08-11 05:00:52', 2, 565, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7113, 5, '2016-08-11 05:01:06', 2, 522, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7129, 5, '2016-08-11 05:03:02', 2, 531, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7131, 5, '2016-08-11 05:03:15', 2, 558, 22.7999992, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7133, 5, '2016-08-11 05:03:38', 2, 540, 22.7999992, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7135, 5, '2016-08-11 05:03:51', 2, 529, 22.7999992, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7137, 5, '2016-08-11 05:04:06', 2, 511, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7201, 5, '2016-08-11 05:11:52', 3, 549, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7203, 5, '2016-08-11 05:12:06', 5, 520, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7205, 5, '2016-08-11 05:12:21', 33, 517, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7207, 5, '2016-08-11 05:12:35', 32, 536, 22.7999992, 42.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7209, 5, '2016-08-11 05:12:51', 32, 554, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7211, 5, '2016-08-11 05:13:05', 34, 520, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7213, 5, '2016-08-11 05:13:18', 33, 561, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7215, 5, '2016-08-11 05:13:28', 32, 513, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7217, 5, '2016-08-11 05:13:41', 34, 522, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7249, 5, '2016-08-11 05:17:31', 33, 520, 22.7999992, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7251, 5, '2016-08-11 05:17:44', 33, 524, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7253, 5, '2016-08-11 05:17:59', 33, 522, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7255, 5, '2016-08-11 05:18:13', 33, 515, 22.7999992, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7285, 5, '2016-08-11 05:21:57', 35, 533, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7287, 5, '2016-08-11 05:22:10', 34, 570, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7289, 5, '2016-08-11 05:22:24', 34, 478, 22.7999992, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7291, 5, '2016-08-11 05:22:46', 34, 554, 22.7999992, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7293, 5, '2016-08-11 05:23:00', 35, 507, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7295, 5, '2016-08-11 05:23:16', 34, 540, 22.7999992, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7297, 5, '2016-08-11 05:23:30', 34, 515, 22.7999992, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7299, 5, '2016-08-11 05:23:38', 34, 515, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7301, 5, '2016-08-11 05:23:52', 34, 503, 22.7999992, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7303, 5, '2016-08-11 05:24:05', 34, 554, 22.7999992, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7311, 5, '2016-08-11 05:25:03', 34, 509, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7313, 5, '2016-08-11 05:25:18', 34, 529, 22.7999992, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7315, 5, '2016-08-11 05:25:32', 34, 517, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7317, 5, '2016-08-11 05:25:46', 34, 552, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7319, 5, '2016-08-11 05:26:00', 34, 531, 22.7999992, 42.7999992, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7321, 5, '2016-08-11 05:26:14', 34, 503, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7323, 5, '2016-08-11 05:26:29', 34, 540, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7325, 5, '2016-08-11 05:26:44', 34, 563, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7327, 5, '2016-08-11 05:26:59', 34, 522, 22.7999992, 42.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6902, 5, '2016-08-11 04:36:19', 1, 526, 22.7000008, 42.7000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6904, 5, '2016-08-11 04:36:34', 0, 558, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6906, 5, '2016-08-11 04:36:48', 0, 511, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6918, 0, '2016-08-11 04:38:07', 0, 519, 21.7999992, 46, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6920, 5, '2016-08-11 04:38:21', 0, 540, 22.7000008, 42.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6922, 5, '2016-08-11 04:38:36', 0, 515, 22.7000008, 42.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6924, 5, '2016-08-11 04:38:50', 0, 554, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6926, 5, '2016-08-11 04:39:05', 0, 536, 22.7000008, 42.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6928, 5, '2016-08-11 04:39:20', 1, 572, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6930, 5, '2016-08-11 04:39:33', 0, 540, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6932, 5, '2016-08-11 04:39:48', 0, 529, 22.7000008, 42.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6934, 5, '2016-08-11 04:40:03', 0, 563, 22.7000008, 42.7000008, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6936, 5, '2016-08-11 04:40:17', 0, 538, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6938, 5, '2016-08-11 04:40:31', 0, 531, 22.7000008, 42.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6940, 5, '2016-08-11 04:40:45', 0, 529, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6942, 5, '2016-08-11 04:41:08', 0, 513, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6944, 5, '2016-08-11 04:41:21', 0, 565, 22.7000008, 42.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6946, 5, '2016-08-11 04:41:35', 1, 549, 22.7000008, 42.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6948, 5, '2016-08-11 04:41:51', 1, 533, 22.7000008, 42.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6950, 5, '2016-08-11 04:42:04', 0, 554, 22.7000008, 42.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6952, 5, '2016-08-11 04:42:19', 1, 545, 22.7000008, 42.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6954, 5, '2016-08-11 04:42:32', 1, 531, 22.7000008, 42.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6956, 5, '2016-08-11 04:42:49', 1, 531, 22.7000008, 42.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6972, 5, '2016-08-11 04:44:40', 1, 558, 22.7999992, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6974, 5, '2016-08-11 04:44:55', 1, 547, 22.7000008, 42.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6976, 2, '2016-08-11 04:44:57', 2, 505, 22.3999996, 43.5, 4388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6978, 5, '2016-08-11 04:45:10', 1, 538, 22.7000008, 42.7000008, 32913);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6980, 5, '2016-08-11 04:45:25', 1, 540, 22.7999992, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6982, 5, '2016-08-11 04:45:40', 1, 558, 22.7000008, 42.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6984, 5, '2016-08-11 04:45:54', 1, 522, 22.7000008, 42.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6986, 5, '2016-08-11 04:46:09', 1, 533, 22.7999992, 42.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6988, 5, '2016-08-11 04:46:22', 1, 552, 22.7000008, 42.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6990, 5, '2016-08-11 04:46:37', 1, 507, 22.7000008, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6992, 5, '2016-08-11 04:46:52', 1, 511, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (6994, 5, '2016-08-11 04:47:06', 1, 517, 22.7999992, 42.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7000, 5, '2016-08-11 04:47:48', 1, 579, 22.7000008, 42.7000008, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7002, 5, '2016-08-11 04:48:03', 1, 547, 22.7000008, 42.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7032, 5, '2016-08-11 04:51:46', 0, 515, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7034, 5, '2016-08-11 04:52:00', 0, 536, 22.7000008, 42.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7036, 5, '2016-08-11 04:52:14', 0, 517, 22.7000008, 42.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7038, 5, '2016-08-11 04:52:29', 0, 540, 22.7000008, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7040, 5, '2016-08-11 04:52:44', 0, 538, 22.7999992, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7042, 5, '2016-08-11 04:52:56', 0, 536, 22.7000008, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7044, 5, '2016-08-11 04:53:13', 0, 529, 22.7999992, 42.7999992, 31033);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7046, 0, '2016-08-11 04:53:20', 1, 536, 21.7999992, 46, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7048, 5, '2016-08-11 04:53:34', 2, 496, 22.7999992, 42.7999992, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7050, 5, '2016-08-11 04:53:47', 2, 513, 22.7000008, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7052, 5, '2016-08-11 04:54:02', 0, 511, 22.7000008, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7054, 5, '2016-08-11 04:54:17', 2, 529, 22.7000008, 42.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7056, 5, '2016-08-11 04:54:32', 2, 536, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7058, 5, '2016-08-11 04:54:43', 2, 545, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7114, 5, '2016-08-11 05:01:13', 1, 526, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7116, 5, '2016-08-11 05:01:27', 2, 524, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7118, 5, '2016-08-11 05:01:42', 2, 556, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7138, 5, '2016-08-11 05:04:13', 2, 507, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7140, 5, '2016-08-11 05:04:27', 2, 540, 22.7999992, 42.7999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7142, 5, '2016-08-11 05:04:41', 2, 552, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7144, 1, '2016-08-11 05:04:45', 16, 490, 21.5, 45.5999985, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7146, 5, '2016-08-11 05:04:59', 2, 522, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7148, 5, '2016-08-11 05:05:17', 1, 552, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7150, 5, '2016-08-11 05:05:39', 3, 538, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7152, 5, '2016-08-11 05:05:53', 3, 556, 22.7999992, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7154, 5, '2016-08-11 05:06:08', 3, 515, 22.7999992, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7156, 5, '2016-08-11 05:06:23', 3, 565, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7192, 5, '2016-08-11 05:10:40', 3, 579, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7218, 5, '2016-08-11 05:13:48', 34, 542, 22.7999992, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7220, 5, '2016-08-11 05:14:02', 34, 563, 22.7999992, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7222, 5, '2016-08-11 05:14:16', 32, 536, 22.7999992, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7224, 5, '2016-08-11 05:14:30', 32, 505, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7226, 5, '2016-08-11 05:14:44', 32, 563, 22.7999992, 42.7999992, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7228, 5, '2016-08-11 05:14:59', 32, 529, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7230, 5, '2016-08-11 05:15:09', 32, 499, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7242, 5, '2016-08-11 05:16:40', 34, 538, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7244, 5, '2016-08-11 05:16:55', 33, 552, 22.7999992, 42.7999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7246, 5, '2016-08-11 05:17:08', 33, 520, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7248, 5, '2016-08-11 05:17:23', 33, 505, 22.7999992, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7250, 5, '2016-08-11 05:17:38', 33, 517, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7252, 5, '2016-08-11 05:17:52', 33, 540, 22.7999992, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7276, 5, '2016-08-11 05:20:51', 34, 538, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7280, 5, '2016-08-11 05:21:20', 35, 531, 22.7999992, 42.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7292, 5, '2016-08-11 05:22:54', 35, 499, 22.7999992, 42.7999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7294, 5, '2016-08-11 05:23:08', 34, 503, 22.7999992, 42.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7296, 5, '2016-08-11 05:23:22', 34, 547, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7298, 5, '2016-08-11 05:23:32', 34, 531, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7300, 0, '2016-08-11 05:23:45', 7, 574, 21.8999996, 46, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7302, 5, '2016-08-11 05:23:58', 34, 538, 22.7999992, 42.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7304, 5, '2016-08-11 05:24:12', 34, 547, 22.7999992, 42.7999992, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7306, 5, '2016-08-11 05:24:27', 34, 567, 22.7999992, 42.7999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7308, 5, '2016-08-11 05:24:42', 34, 542, 22.7999992, 42.7999992, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7310, 5, '2016-08-11 05:24:48', 34, 547, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7312, 5, '2016-08-11 05:25:10', 34, 533, 22.7999992, 42.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7314, 5, '2016-08-11 05:25:19', 34, 517, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7316, 5, '2016-08-11 05:25:39', 34, 572, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7326, 5, '2016-08-11 05:26:50', 34, 515, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7328, 5, '2016-08-11 05:27:05', 34, 540, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7330, 5, '2016-08-11 05:27:19', 35, 531, 22.7999992, 42.7999992, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7332, 5, '2016-08-11 05:27:34', 34, 524, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7334, 5, '2016-08-11 05:27:48', 34, 522, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7336, 5, '2016-08-11 05:28:02', 35, 509, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7338, 5, '2016-08-11 05:28:16', 34, 505, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7340, 5, '2016-08-11 05:28:31', 35, 517, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7342, 5, '2016-08-11 05:28:38', 34, 513, 22.7999992, 42.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7344, 5, '2016-08-11 05:28:53', 34, 556, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7346, 5, '2016-08-11 05:29:07', 35, 565, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7348, 5, '2016-08-11 05:29:23', 34, 507, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7350, 5, '2016-08-11 05:29:35', 35, 524, 22.7999992, 42.7999992, 29574);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7352, 5, '2016-08-11 05:29:49', 34, 522, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7258, 5, '2016-08-11 05:18:34', 34, 567, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7260, 5, '2016-08-11 05:18:49', 34, 513, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7262, 5, '2016-08-11 05:19:04', 34, 517, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7264, 5, '2016-08-11 05:19:19', 33, 529, 22.7999992, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7266, 5, '2016-08-11 05:19:32', 33, 522, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7268, 5, '2016-08-11 05:19:54', 35, 520, 22.7999992, 42.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7270, 1, '2016-08-11 05:20:02', 54, 510, 21.5, 45.7000008, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7272, 5, '2016-08-11 05:20:09', 35, 561, 22.7999992, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7274, 5, '2016-08-11 05:20:36', 33, 554, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7278, 5, '2016-08-11 05:21:06', 35, 536, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7282, 5, '2016-08-11 05:21:34', 35, 522, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7284, 5, '2016-08-11 05:21:48', 35, 526, 22.7999992, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7286, 5, '2016-08-11 05:22:03', 34, 513, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7288, 5, '2016-08-11 05:22:18', 34, 563, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7290, 5, '2016-08-11 05:22:32', 34, 540, 22.7999992, 42.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7318, 5, '2016-08-11 05:25:53', 34, 570, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7320, 5, '2016-08-11 05:26:08', 34, 538, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7322, 5, '2016-08-11 05:26:22', 34, 574, 22.7999992, 42.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7324, 5, '2016-08-11 05:26:36', 34, 499, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7354, 5, '2016-08-11 05:30:06', 35, 556, 22.7999992, 42.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7356, 5, '2016-08-11 05:30:19', 35, 511, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7358, 5, '2016-08-11 05:30:28', 34, 552, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7360, 2, '2016-08-11 05:30:33', 33, 474, 22.7999992, 43.2999992, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7362, 5, '2016-08-11 05:30:47', 35, 507, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7364, 5, '2016-08-11 05:31:01', 35, 529, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7366, 5, '2016-08-11 05:31:16', 35, 549, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7368, 5, '2016-08-11 05:31:31', 35, 515, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7370, 5, '2016-08-11 05:31:45', 35, 554, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7372, 5, '2016-08-11 05:31:59', 35, 542, 22.7999992, 42.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7374, 5, '2016-08-11 05:32:13', 34, 542, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7376, 5, '2016-08-11 05:32:28', 35, 505, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7378, 5, '2016-08-11 05:32:44', 35, 547, 22.7999992, 42.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7380, 5, '2016-08-11 05:32:57', 35, 561, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7382, 5, '2016-08-11 05:33:11', 35, 606, 22.7999992, 42.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7384, 5, '2016-08-11 05:33:25', 35, 529, 22.7999992, 42.7999992, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7386, 5, '2016-08-11 05:33:39', 34, 556, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7388, 5, '2016-08-11 05:34:02', 34, 558, 22.7999992, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7390, 5, '2016-08-11 05:34:15', 35, 522, 22.7999992, 42.7999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7392, 5, '2016-08-11 05:34:30', 35, 531, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7394, 5, '2016-08-11 05:34:45', 35, 563, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7408, 5, '2016-08-11 05:36:17', 35, 540, 22.7999992, 42.7999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7410, 5, '2016-08-11 05:36:32', 34, 572, 22.7999992, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7412, 5, '2016-08-11 05:36:47', 34, 496, 22.7999992, 42.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7414, 5, '2016-08-11 05:37:02', 34, 538, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7416, 5, '2016-08-11 05:37:15', 34, 579, 22.7999992, 42.7999992, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7418, 5, '2016-08-11 05:37:29', 34, 538, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7420, 5, '2016-08-11 05:37:46', 34, 524, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7422, 5, '2016-08-11 05:37:59', 34, 526, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7424, 5, '2016-08-11 05:38:13', 34, 561, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7426, 5, '2016-08-11 05:38:26', 34, 572, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7428, 5, '2016-08-11 05:38:41', 36, 545, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7430, 0, '2016-08-11 05:38:51', 24, 512, 21.8999996, 46.0999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7432, 5, '2016-08-11 05:39:02', 36, 524, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7450, 5, '2016-08-11 05:41:13', 34, 558, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7452, 5, '2016-08-11 05:41:27', 34, 588, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7454, 5, '2016-08-11 05:41:41', 36, 507, 22.7999992, 42.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7456, 5, '2016-08-11 05:41:56', 34, 513, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7458, 5, '2016-08-11 05:42:17', 34, 501, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7460, 5, '2016-08-11 05:42:31', 34, 554, 22.7999992, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7462, 5, '2016-08-11 05:42:46', 35, 488, 22.7999992, 42.7999992, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7464, 5, '2016-08-11 05:43:01', 34, 494, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7486, 5, '2016-08-11 05:45:31', 34, 552, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7488, 5, '2016-08-11 05:45:40', 34, 529, 22.7999992, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7490, 5, '2016-08-11 05:45:53', 34, 542, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7492, 5, '2016-08-11 05:46:05', 34, 524, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7494, 5, '2016-08-11 05:46:22', 34, 565, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7504, 5, '2016-08-11 05:47:33', 36, 536, 22.7999992, 42.7999992, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7277, 5, '2016-08-11 05:20:59', 35, 524, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7279, 5, '2016-08-11 05:21:12', 35, 570, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7281, 5, '2016-08-11 05:21:27', 35, 515, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7283, 5, '2016-08-11 05:21:42', 35, 503, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7305, 5, '2016-08-11 05:24:20', 34, 513, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7307, 5, '2016-08-11 05:24:34', 34, 556, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7309, 5, '2016-08-11 05:24:48', 34, 515, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7339, 5, '2016-08-11 05:28:23', 35, 561, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7341, 5, '2016-08-11 05:28:38', 34, 542, 22.7999992, 42.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7343, 3, '2016-08-11 05:28:47', 70, 545, 21.7000008, 46, 8321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7345, 5, '2016-08-11 05:28:59', 34, 538, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7347, 5, '2016-08-11 05:29:13', 35, 517, 22.7999992, 42.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7349, 5, '2016-08-11 05:29:29', 35, 499, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7351, 5, '2016-08-11 05:29:43', 35, 515, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7353, 5, '2016-08-11 05:29:57', 35, 545, 22.7999992, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7355, 5, '2016-08-11 05:30:11', 35, 524, 22.7999992, 42.7999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7357, 5, '2016-08-11 05:30:26', 34, 588, 22.7999992, 42.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7359, 2, '2016-08-11 05:30:30', 33, 474, 22.7999992, 43.2999992, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7361, 5, '2016-08-11 05:30:41', 35, 540, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7363, 5, '2016-08-11 05:30:56', 35, 540, 22.7999992, 42.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7389, 5, '2016-08-11 05:34:09', 35, 515, 22.7999992, 42.7999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7391, 5, '2016-08-11 05:34:23', 35, 515, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7393, 5, '2016-08-11 05:34:38', 35, 524, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7395, 5, '2016-08-11 05:34:50', 35, 536, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7397, 5, '2016-08-11 05:35:06', 35, 556, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7399, 1, '2016-08-11 05:35:14', 64, 549, 21.6000004, 45.7000008, 2354);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7401, 5, '2016-08-11 05:35:27', 35, 540, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7403, 5, '2016-08-11 05:35:42', 35, 529, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7405, 5, '2016-08-11 05:35:57', 35, 563, 22.7999992, 42.7999992, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7407, 5, '2016-08-11 05:36:12', 35, 574, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7409, 5, '2016-08-11 05:36:25', 34, 499, 22.7999992, 42.7999992, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7411, 5, '2016-08-11 05:36:39', 34, 515, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7413, 5, '2016-08-11 05:36:53', 34, 542, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7415, 5, '2016-08-11 05:37:08', 34, 503, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7449, 5, '2016-08-11 05:41:05', 34, 545, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7451, 5, '2016-08-11 05:41:19', 34, 545, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7453, 5, '2016-08-11 05:41:33', 34, 540, 22.7999992, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7455, 5, '2016-08-11 05:41:50', 34, 524, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7457, 5, '2016-08-11 05:42:10', 34, 520, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7459, 5, '2016-08-11 05:42:26', 34, 565, 22.7999992, 42.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7461, 5, '2016-08-11 05:42:41', 35, 529, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7463, 5, '2016-08-11 05:42:53', 35, 529, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7465, 5, '2016-08-11 05:43:07', 35, 542, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7467, 5, '2016-08-11 05:43:22', 35, 545, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7469, 5, '2016-08-11 05:43:38', 35, 511, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7471, 5, '2016-08-11 05:43:50', 35, 524, 22.7999992, 42.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7473, 5, '2016-08-11 05:43:58', 34, 531, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7475, 5, '2016-08-11 05:44:13', 34, 574, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7491, 5, '2016-08-11 05:46:00', 34, 509, 22.7999992, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7493, 2, '2016-08-11 05:46:15', 48, 487, 22.8999996, 43.2000008, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7495, 5, '2016-08-11 05:46:28', 34, 540, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7497, 5, '2016-08-11 05:46:43', 34, 558, 22.7999992, 42.7999992, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7499, 5, '2016-08-11 05:46:58', 34, 565, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7501, 5, '2016-08-11 05:47:12', 34, 524, 22.7999992, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7503, 5, '2016-08-11 05:47:21', 36, 545, 22.7999992, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7505, 5, '2016-08-11 05:47:41', 36, 556, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7507, 5, '2016-08-11 05:47:55', 34, 545, 22.7999992, 42.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7509, 5, '2016-08-11 05:48:09', 34, 579, 22.7999992, 42.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7511, 5, '2016-08-11 05:48:23', 34, 536, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7329, 5, '2016-08-11 05:27:11', 34, 572, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7331, 5, '2016-08-11 05:27:26', 35, 547, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7333, 5, '2016-08-11 05:27:42', 34, 503, 22.7999992, 42.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7335, 5, '2016-08-11 05:27:55', 34, 561, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7337, 5, '2016-08-11 05:28:10', 35, 529, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7365, 5, '2016-08-11 05:31:09', 35, 549, 22.7999992, 42.7999992, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7367, 5, '2016-08-11 05:31:24', 35, 552, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7369, 5, '2016-08-11 05:31:38', 35, 533, 22.7999992, 42.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7371, 5, '2016-08-11 05:31:52', 35, 545, 22.7999992, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7373, 5, '2016-08-11 05:32:08', 34, 515, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7375, 5, '2016-08-11 05:32:21', 35, 505, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7377, 5, '2016-08-11 05:32:33', 34, 554, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7379, 5, '2016-08-11 05:32:49', 35, 552, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7381, 5, '2016-08-11 05:33:03', 35, 552, 22.7999992, 42.7999992, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7383, 5, '2016-08-11 05:33:19', 35, 572, 22.7999992, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7385, 5, '2016-08-11 05:33:33', 35, 526, 22.7999992, 42.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7387, 5, '2016-08-11 05:33:48', 34, 542, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7417, 5, '2016-08-11 05:37:23', 35, 533, 22.7999992, 42.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7419, 5, '2016-08-11 05:37:37', 34, 563, 22.7999992, 42.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7421, 5, '2016-08-11 05:37:50', 34, 545, 22.7999992, 42.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7423, 5, '2016-08-11 05:38:07', 34, 529, 22.7999992, 42.7999992, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7425, 5, '2016-08-11 05:38:17', 34, 520, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7427, 5, '2016-08-11 05:38:35', 34, 524, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7429, 5, '2016-08-11 05:38:49', 36, 538, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7431, 5, '2016-08-11 05:38:56', 36, 570, 22.7999992, 42.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7433, 5, '2016-08-11 05:39:11', 36, 503, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7435, 5, '2016-08-11 05:39:25', 35, 503, 22.7999992, 42.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7437, 5, '2016-08-11 05:39:38', 36, 570, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7439, 5, '2016-08-11 05:39:53', 36, 567, 22.7999992, 42.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7441, 5, '2016-08-11 05:40:08', 36, 579, 22.7999992, 42.7999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7443, 5, '2016-08-11 05:40:22', 34, 515, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7445, 5, '2016-08-11 05:40:38', 34, 549, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7447, 5, '2016-08-11 05:40:50', 34, 522, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7477, 5, '2016-08-11 05:44:28', 34, 542, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7479, 5, '2016-08-11 05:44:40', 34, 501, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7481, 5, '2016-08-11 05:44:52', 34, 531, 22.7999992, 42.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7483, 5, '2016-08-11 05:45:11', 34, 522, 22.7999992, 42.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7485, 5, '2016-08-11 05:45:24', 34, 538, 22.7999992, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7487, 5, '2016-08-11 05:45:38', 34, 507, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7489, 2, '2016-08-11 05:45:40', 48, 487, 22.8999996, 43.2000008, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7396, 5, '2016-08-11 05:34:59', 35, 531, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7398, 5, '2016-08-11 05:35:06', 34, 524, 22.7999992, 42.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7400, 5, '2016-08-11 05:35:21', 34, 545, 22.7999992, 42.7999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7402, 5, '2016-08-11 05:35:30', 35, 554, 22.7999992, 42.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7404, 5, '2016-08-11 05:35:48', 35, 524, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7406, 5, '2016-08-11 05:36:04', 35, 558, 22.7999992, 42.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7434, 5, '2016-08-11 05:39:17', 36, 547, 22.7999992, 42.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7436, 5, '2016-08-11 05:39:32', 35, 529, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7438, 5, '2016-08-11 05:39:46', 36, 517, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7440, 5, '2016-08-11 05:40:01', 34, 552, 22.7999992, 42.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7442, 5, '2016-08-11 05:40:14', 36, 526, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7444, 5, '2016-08-11 05:40:28', 34, 549, 22.7999992, 42.7999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7446, 5, '2016-08-11 05:40:44', 36, 540, 22.7999992, 42.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7448, 5, '2016-08-11 05:40:58', 34, 561, 22.7999992, 42.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7466, 5, '2016-08-11 05:43:15', 35, 486, 22.7999992, 42.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7468, 5, '2016-08-11 05:43:29', 35, 515, 22.7999992, 42.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7470, 5, '2016-08-11 05:43:43', 34, 503, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7472, 3, '2016-08-11 05:43:53', 88, 605, 21.7000008, 46, 1586);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7474, 5, '2016-08-11 05:44:05', 34, 538, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7476, 5, '2016-08-11 05:44:19', 34, 552, 22.7999992, 42.7999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7478, 5, '2016-08-11 05:44:34', 35, 515, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7480, 5, '2016-08-11 05:44:49', 34, 574, 22.7999992, 42.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7482, 5, '2016-08-11 05:45:03', 34, 547, 22.7999992, 42.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7484, 5, '2016-08-11 05:45:16', 34, 533, 22.7999992, 42.7999992, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7496, 5, '2016-08-11 05:46:36', 36, 531, 22.7999992, 42.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7498, 5, '2016-08-11 05:46:51', 34, 533, 22.7999992, 42.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7500, 5, '2016-08-11 05:47:05', 34, 529, 22.7999992, 42.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7502, 5, '2016-08-11 05:47:18', 36, 488, 22.7999992, 42.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7506, 5, '2016-08-11 05:47:48', 36, 552, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7508, 5, '2016-08-11 05:48:02', 34, 524, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7510, 5, '2016-08-11 05:48:17', 34, 526, 22.7999992, 42.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7512, 5, '2016-08-11 05:48:30', 34, 538, 22.7999992, 42.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7513, 5, '2016-08-11 05:48:38', 36, 545, 22.7999992, 42.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7514, 5, '2016-08-11 05:48:45', 36, 549, 22.7999992, 42.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7515, 5, '2016-08-11 05:48:53', 36, 538, 22.7999992, 42.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7516, 5, '2016-08-11 05:49:00', 35, 556, 22.7999992, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7517, 5, '2016-08-11 05:49:06', 35, 545, 22.7999992, 42.7999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7518, 5, '2016-08-11 05:49:14', 36, 552, 22.7999992, 42.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7519, 5, '2016-08-11 05:49:20', 36, 492, 22.7999992, 42.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7520, 5, '2016-08-11 05:49:28', 36, 511, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7521, 5, '2016-08-11 05:49:35', 35, 517, 22.7999992, 42.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7522, 5, '2016-08-11 05:49:42', 35, 529, 22.7999992, 42.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7523, 5, '2016-08-11 05:49:50', 35, 538, 22.7999992, 42.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7524, 5, '2016-08-11 05:49:57', 36, 552, 22.7999992, 42.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7525, 5, '2016-08-11 05:50:05', 36, 542, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7526, 5, '2016-08-11 05:50:12', 36, 549, 22.7999992, 42.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7527, 5, '2016-08-11 05:50:18', 36, 542, 22.7999992, 42.7999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7528, 1, '2016-08-11 05:50:18', 68, 568, 21.6000004, 45.7000008, 4246);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7529, 5, '2016-08-11 05:50:26', 36, 570, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7530, 5, '2016-08-11 05:50:33', 36, 538, 22.7999992, 42.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7531, 5, '2016-08-11 05:50:34', 36, 554, 22.7999992, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7532, 5, '2016-08-11 05:50:47', 36, 556, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7533, 5, '2016-08-11 05:50:55', 36, 505, 22.7999992, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7534, 5, '2016-08-11 05:51:02', 36, 542, 22.7999992, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7535, 5, '2016-08-11 05:51:09', 36, 496, 22.7999992, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7536, 5, '2016-08-11 05:51:16', 35, 538, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7537, 5, '2016-08-11 05:51:23', 35, 513, 22.7999992, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7538, 5, '2016-08-11 05:51:32', 35, 524, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7539, 5, '2016-08-11 05:51:37', 36, 529, 22.7999992, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7540, 5, '2016-08-11 05:51:44', 36, 496, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7541, 5, '2016-08-11 05:51:52', 36, 547, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7542, 5, '2016-08-11 05:52:00', 35, 538, 22.7999992, 42.9000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7543, 5, '2016-08-11 05:52:06', 35, 549, 22.7999992, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7544, 5, '2016-08-11 05:52:14', 35, 529, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7545, 5, '2016-08-11 05:52:20', 35, 540, 22.7999992, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7546, 5, '2016-08-11 05:52:28', 35, 511, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7547, 5, '2016-08-11 05:52:35', 35, 536, 22.7999992, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7548, 5, '2016-08-11 05:52:42', 35, 505, 22.7999992, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7549, 5, '2016-08-11 05:52:50', 35, 515, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7550, 5, '2016-08-11 05:52:56', 35, 513, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7551, 5, '2016-08-11 05:53:04', 37, 545, 22.7999992, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7552, 5, '2016-08-11 05:53:10', 37, 572, 22.7999992, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7553, 5, '2016-08-11 05:53:19', 37, 538, 22.7999992, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7554, 5, '2016-08-11 05:53:26', 49, 509, 22.7999992, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7555, 5, '2016-08-11 05:53:32', 50, 505, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7556, 5, '2016-08-11 05:53:40', 48, 509, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7557, 5, '2016-08-11 05:53:46', 50, 513, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7558, 5, '2016-08-11 05:53:54', 50, 565, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7559, 5, '2016-08-11 05:54:00', 49, 522, 22.7999992, 42.9000015, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7560, 0, '2016-08-11 05:54:02', 23, 551, 21.8999996, 45.9000015, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7561, 5, '2016-08-11 05:54:08', 49, 536, 22.7999992, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7562, 5, '2016-08-11 05:54:16', 50, 531, 22.7999992, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7563, 5, '2016-08-11 05:54:22', 40, 513, 22.7999992, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7564, 5, '2016-08-11 05:54:32', 48, 538, 22.7999992, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7565, 5, '2016-08-11 05:54:37', 48, 511, 22.7999992, 42.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7566, 5, '2016-08-11 05:54:44', 49, 540, 22.7999992, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7567, 5, '2016-08-11 05:54:52', 50, 542, 22.7999992, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7568, 5, '2016-08-11 05:54:54', 49, 529, 22.7999992, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7569, 5, '2016-08-11 05:55:07', 49, 496, 22.7999992, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7570, 5, '2016-08-11 05:55:14', 50, 533, 22.7999992, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7571, 5, '2016-08-11 05:55:20', 49, 492, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7572, 5, '2016-08-11 05:55:27', 39, 536, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7573, 5, '2016-08-11 05:55:34', 40, 554, 22.7999992, 42.9000015, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7574, 5, '2016-08-11 05:55:42', 50, 554, 22.7999992, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7575, 5, '2016-08-11 05:55:49', 50, 524, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7576, 5, '2016-08-11 05:55:50', 48, 517, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7577, 5, '2016-08-11 05:56:04', 51, 552, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7578, 5, '2016-08-11 05:56:10', 50, 542, 22.7999992, 42.9000015, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7579, 5, '2016-08-11 05:56:18', 49, 496, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7580, 5, '2016-08-11 05:56:24', 48, 554, 22.7999992, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7581, 5, '2016-08-11 05:56:26', 51, 531, 22.7999992, 42.9000015, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7582, 5, '2016-08-11 05:56:39', 41, 520, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7583, 5, '2016-08-11 05:56:46', 49, 549, 22.7999992, 42.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7584, 5, '2016-08-11 05:56:54', 48, 563, 22.7999992, 42.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7585, 5, '2016-08-11 05:57:03', 50, 529, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7586, 5, '2016-08-11 05:57:08', 49, 492, 22.7999992, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7587, 5, '2016-08-11 05:57:16', 49, 533, 22.7999992, 42.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7588, 5, '2016-08-11 05:57:23', 49, 549, 22.7999992, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7590, 5, '2016-08-11 05:57:36', 49, 531, 22.7999992, 42.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7592, 5, '2016-08-11 05:57:51', 40, 531, 22.7999992, 42.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7594, 5, '2016-08-11 05:58:07', 50, 505, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7596, 5, '2016-08-11 05:58:22', 51, 524, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7622, 2, '2016-08-11 06:01:20', 576, 503, 23.1000004, 43.0999985, 4114);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7624, 5, '2016-08-11 06:01:33', 49, 556, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7626, 5, '2016-08-11 06:01:47', 50, 515, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7634, 5, '2016-08-11 06:02:53', 52, 513, 22.7999992, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7636, 5, '2016-08-11 06:03:07', 51, 533, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7638, 5, '2016-08-11 06:03:22', 52, 538, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7640, 5, '2016-08-11 06:03:35', 52, 499, 22.7999992, 42.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7642, 5, '2016-08-11 06:03:50', 52, 509, 22.7999992, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7644, 5, '2016-08-11 06:04:07', 51, 520, 22.7999992, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7646, 5, '2016-08-11 06:04:23', 52, 565, 22.7999992, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7648, 5, '2016-08-11 06:04:34', 48, 556, 22.7999992, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7650, 5, '2016-08-11 06:04:47', 52, 516, 22.7999992, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7652, 5, '2016-08-11 06:04:56', 51, 533, 22.7999992, 42.9000015, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7666, 5, '2016-08-11 06:06:42', 52, 529, 22.7999992, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7668, 5, '2016-08-11 06:06:57', 49, 545, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7670, 5, '2016-08-11 06:07:10', 53, 529, 22.7999992, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7672, 5, '2016-08-11 06:07:25', 54, 494, 22.7999992, 42.9000015, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7674, 5, '2016-08-11 06:07:39', 52, 522, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7676, 5, '2016-08-11 06:07:54', 54, 524, 22.7999992, 42.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7678, 5, '2016-08-11 06:08:09', 51, 520, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7680, 5, '2016-08-11 06:08:23', 52, 517, 22.7999992, 42.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7690, 5, '2016-08-11 06:09:22', 54, 538, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7692, 5, '2016-08-11 06:09:35', 51, 545, 22.7999992, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7694, 5, '2016-08-11 06:09:49', 54, 522, 22.7999992, 42.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7696, 5, '2016-08-11 06:10:03', 52, 533, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7698, 5, '2016-08-11 06:10:19', 49, 549, 22.7999992, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7700, 5, '2016-08-11 06:10:32', 52, 513, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7708, 5, '2016-08-11 06:11:29', 49, 563, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7710, 5, '2016-08-11 06:11:44', 55, 570, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7712, 5, '2016-08-11 06:11:59', 54, 520, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7714, 5, '2016-08-11 06:12:13', 52, 531, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7716, 5, '2016-08-11 06:12:27', 53, 563, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7718, 5, '2016-08-11 06:12:41', 52, 529, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7722, 5, '2016-08-11 06:13:11', 52, 509, 22.7999992, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7724, 5, '2016-08-11 06:13:25', 52, 579, 22.7999992, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7726, 5, '2016-08-11 06:13:38', 49, 540, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7728, 5, '2016-08-11 06:13:53', 52, 513, 22.7999992, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7730, 5, '2016-08-11 06:14:08', 51, 524, 22.7999992, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7732, 3, '2016-08-11 06:14:15', 789, 614, 21.7000008, 46.0999985, 2340);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7734, 5, '2016-08-11 06:14:29', 51, 554, 22.7999992, 42.9000015, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7736, 5, '2016-08-11 06:14:44', 52, 501, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7744, 5, '2016-08-11 06:15:40', 52, 484, 22.7999992, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7746, 5, '2016-08-11 06:15:55', 49, 513, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7748, 5, '2016-08-11 06:16:10', 52, 549, 22.7999992, 42.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7750, 5, '2016-08-11 06:16:24', 50, 540, 22.7999992, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7752, 2, '2016-08-11 06:16:31', 68, 475, 23.1000004, 43, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7802, 5, '2016-08-11 06:22:24', 51, 518, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7804, 5, '2016-08-11 06:22:38', 52, 499, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7806, 5, '2016-08-11 06:22:53', 49, 561, 22.7999992, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7808, 5, '2016-08-11 06:23:07', 53, 549, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7810, 5, '2016-08-11 06:23:20', 53, 529, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7812, 5, '2016-08-11 06:23:35', 50, 561, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7814, 5, '2016-08-11 06:23:50', 53, 517, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7816, 5, '2016-08-11 06:24:04', 52, 558, 22.7999992, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7818, 5, '2016-08-11 06:24:17', 52, 570, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7820, 0, '2016-08-11 06:24:26', 24, 559, 21.7000008, 46.4000015, 8449);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7822, 5, '2016-08-11 06:24:40', 51, 556, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7824, 5, '2016-08-11 06:24:59', 54, 533, 22.7999992, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7826, 5, '2016-08-11 06:25:16', 52, 538, 22.7999992, 42.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7828, 5, '2016-08-11 06:25:29', 52, 536, 22.7999992, 42.9000015, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7830, 5, '2016-08-11 06:25:44', 53, 538, 22.7999992, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7832, 5, '2016-08-11 06:25:59', 53, 503, 22.7999992, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7834, 5, '2016-08-11 06:26:13', 50, 542, 22.7999992, 42.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7836, 5, '2016-08-11 06:26:27', 52, 513, 22.7999992, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7838, 5, '2016-08-11 06:26:37', 51, 509, 22.7999992, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7840, 5, '2016-08-11 06:26:56', 53, 503, 22.7999992, 43, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7842, 5, '2016-08-11 06:27:11', 54, 561, 22.7999992, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7844, 5, '2016-08-11 06:27:25', 49, 508, 22.7999992, 43, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7848, 5, '2016-08-11 06:27:54', 54, 538, 22.7999992, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7850, 5, '2016-08-11 06:28:07', 53, 542, 22.7999992, 43, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7852, 5, '2016-08-11 06:28:22', 54, 503, 22.7999992, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7854, 5, '2016-08-11 06:28:37', 53, 540, 22.7999992, 43, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7856, 5, '2016-08-11 06:28:51', 53, 536, 22.7999992, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7858, 5, '2016-08-11 06:29:06', 54, 536, 22.7999992, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7860, 5, '2016-08-11 06:29:19', 53, 520, 22.7999992, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7862, 3, '2016-08-11 06:29:24', 20, 580, 21.7999992, 46.0999985, 5120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7864, 5, '2016-08-11 06:29:35', 51, 517, 22.7999992, 43, 32885);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7866, 5, '2016-08-11 06:29:48', 55, 512, 22.7999992, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7868, 5, '2016-08-11 06:30:03', 53, 509, 22.7999992, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7870, 5, '2016-08-11 06:30:18', 54, 545, 22.7999992, 43, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7872, 5, '2016-08-11 06:30:31', 53, 561, 22.7999992, 43, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7874, 5, '2016-08-11 06:30:45', 50, 515, 22.7999992, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7904, 5, '2016-08-11 06:34:14', 50, 518, 22.7999992, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7906, 5, '2016-08-11 06:34:29', 56, 540, 22.7999992, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7908, 5, '2016-08-11 06:34:43', 55, 491, 22.7999992, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7910, 5, '2016-08-11 06:34:57', 53, 552, 22.7999992, 43, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7912, 5, '2016-08-11 06:35:11', 56, 524, 22.7999992, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7914, 5, '2016-08-11 06:35:28', 54, 497, 22.7999992, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7916, 5, '2016-08-11 06:35:38', 54, 570, 22.7999992, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7918, 5, '2016-08-11 06:35:50', 53, 552, 22.7999992, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7920, 5, '2016-08-11 06:36:02', 54, 531, 22.7999992, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7922, 5, '2016-08-11 06:36:16', 54, 545, 22.7999992, 43, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7924, 5, '2016-08-11 06:36:30', 51, 533, 22.7999992, 43, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7954, 5, '2016-08-11 06:40:06', 54, 507, 22.7999992, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7956, 5, '2016-08-11 06:40:21', 54, 543, 22.7999992, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7958, 5, '2016-08-11 06:40:34', 54, 515, 22.7999992, 43, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7974, 5, '2016-08-11 06:42:31', 53, 520, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7976, 5, '2016-08-11 06:42:44', 52, 545, 22.7999992, 43.0999985, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7978, 5, '2016-08-11 06:42:59', 54, 518, 22.7999992, 43.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7980, 5, '2016-08-11 06:43:20', 54, 509, 22.7999992, 43.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7982, 5, '2016-08-11 06:43:35', 55, 512, 22.7999992, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7984, 5, '2016-08-11 06:43:48', 55, 523, 22.7999992, 43.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7589, 5, '2016-08-11 05:57:29', 50, 561, 22.7999992, 42.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7591, 5, '2016-08-11 05:57:44', 39, 531, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7593, 5, '2016-08-11 05:57:58', 50, 522, 22.7999992, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7595, 5, '2016-08-11 05:58:12', 49, 536, 22.7999992, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7599, 5, '2016-08-11 05:58:42', 50, 499, 22.7999992, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7601, 5, '2016-08-11 05:58:56', 41, 517, 22.7999992, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7603, 3, '2016-08-11 05:59:03', 88, 542, 21.7000008, 45.9000015, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7605, 5, '2016-08-11 05:59:17', 50, 542, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7607, 5, '2016-08-11 05:59:32', 50, 533, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7609, 5, '2016-08-11 05:59:45', 51, 507, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7611, 5, '2016-08-11 06:00:00', 41, 556, 22.7999992, 42.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7613, 5, '2016-08-11 06:00:15', 51, 515, 22.7999992, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7615, 5, '2016-08-11 06:00:36', 50, 503, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7617, 5, '2016-08-11 06:00:51', 50, 529, 22.7999992, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7619, 5, '2016-08-11 06:01:06', 52, 524, 22.7999992, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7621, 5, '2016-08-11 06:01:15', 50, 526, 22.7999992, 42.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7623, 5, '2016-08-11 06:01:26', 50, 524, 22.7999992, 42.9000015, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7625, 5, '2016-08-11 06:01:41', 51, 517, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7651, 5, '2016-08-11 06:04:55', 54, 563, 22.7999992, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7653, 5, '2016-08-11 06:05:09', 53, 538, 22.7999992, 42.9000015, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7655, 5, '2016-08-11 06:05:23', 51, 531, 22.7999992, 42.9000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7657, 1, '2016-08-11 06:05:30', 84, 549, 21.6000004, 45.7000008, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7659, 5, '2016-08-11 06:05:45', 48, 492, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7661, 5, '2016-08-11 06:05:59', 51, 509, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7663, 5, '2016-08-11 06:06:13', 52, 538, 22.7999992, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7665, 5, '2016-08-11 06:06:27', 52, 533, 22.7999992, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7667, 5, '2016-08-11 06:06:49', 48, 511, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7669, 5, '2016-08-11 06:07:06', 52, 529, 22.7999992, 42.9000015, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7671, 5, '2016-08-11 06:07:18', 52, 522, 22.7999992, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7673, 5, '2016-08-11 06:07:34', 53, 509, 22.7999992, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7675, 5, '2016-08-11 06:07:48', 51, 515, 22.7999992, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7681, 5, '2016-08-11 06:08:29', 53, 494, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7683, 5, '2016-08-11 06:08:45', 52, 554, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7685, 5, '2016-08-11 06:08:59', 53, 524, 22.7999992, 42.9000015, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7687, 5, '2016-08-11 06:09:10', 50, 558, 22.7999992, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7689, 0, '2016-08-11 06:09:13', 277, 545, 21.7000008, 46.4000015, 4352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7691, 5, '2016-08-11 06:09:27', 54, 556, 22.7999992, 42.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7693, 5, '2016-08-11 06:09:42', 54, 515, 22.7999992, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7695, 5, '2016-08-11 06:09:56', 52, 552, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7697, 5, '2016-08-11 06:10:11', 55, 494, 22.7999992, 42.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7713, 5, '2016-08-11 06:12:05', 54, 520, 22.7999992, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7715, 5, '2016-08-11 06:12:20', 52, 505, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7717, 5, '2016-08-11 06:12:35', 48, 529, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7719, 5, '2016-08-11 06:12:49', 52, 509, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7721, 5, '2016-08-11 06:13:03', 52, 503, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7751, 5, '2016-08-11 06:16:26', 52, 522, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7753, 5, '2016-08-11 06:16:38', 51, 561, 22.7999992, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7755, 5, '2016-08-11 06:16:51', 50, 509, 22.7999992, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7757, 2, '2016-08-11 06:16:53', 68, 475, 23.1000004, 43, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7759, 5, '2016-08-11 06:17:08', 41, 515, 22.7999992, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7761, 5, '2016-08-11 06:17:22', 49, 515, 22.7999992, 42.9000015, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7763, 5, '2016-08-11 06:17:36', 50, 513, 22.7999992, 42.9000015, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7765, 5, '2016-08-11 06:17:51', 50, 554, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7767, 5, '2016-08-11 06:18:04', 50, 499, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7769, 5, '2016-08-11 06:18:18', 41, 507, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7771, 5, '2016-08-11 06:18:33', 51, 567, 22.7999992, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7773, 5, '2016-08-11 06:18:55', 52, 549, 22.7999992, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7775, 5, '2016-08-11 06:19:10', 50, 536, 22.7999992, 42.9000015, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7777, 5, '2016-08-11 06:19:24', 48, 572, 22.7999992, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7779, 5, '2016-08-11 06:19:38', 50, 507, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7781, 5, '2016-08-11 06:19:52', 50, 540, 22.7999992, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7783, 5, '2016-08-11 06:20:06', 51, 526, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7785, 5, '2016-08-11 06:20:22', 52, 511, 22.7999992, 42.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7829, 5, '2016-08-11 06:25:37', 53, 501, 22.7999992, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7831, 5, '2016-08-11 06:25:52', 52, 549, 22.7999992, 42.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7833, 5, '2016-08-11 06:26:05', 53, 549, 22.7999992, 42.9000015, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7835, 5, '2016-08-11 06:26:20', 52, 515, 22.7999992, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7837, 5, '2016-08-11 06:26:34', 52, 515, 22.7999992, 43, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7839, 5, '2016-08-11 06:26:49', 52, 495, 22.7999992, 43, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7841, 5, '2016-08-11 06:27:03', 53, 565, 22.7999992, 43, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7843, 5, '2016-08-11 06:27:17', 49, 523, 22.7999992, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7845, 5, '2016-08-11 06:27:32', 54, 507, 22.7999992, 43, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7847, 5, '2016-08-11 06:27:46', 52, 507, 22.7999992, 43, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7855, 5, '2016-08-11 06:28:43', 53, 503, 22.7999992, 43, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7857, 5, '2016-08-11 06:28:58', 53, 515, 22.7999992, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7859, 5, '2016-08-11 06:29:13', 54, 570, 22.7999992, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7861, 5, '2016-08-11 06:29:23', 55, 533, 22.7999992, 43, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7863, 3, '2016-08-11 06:29:27', 20, 580, 21.7999992, 46.0999985, 5120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7865, 5, '2016-08-11 06:29:41', 51, 536, 22.7999992, 43, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7867, 5, '2016-08-11 06:29:57', 55, 526, 22.7999992, 43, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7869, 5, '2016-08-11 06:30:09', 55, 554, 22.7999992, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7871, 5, '2016-08-11 06:30:25', 53, 515, 22.7999992, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7873, 5, '2016-08-11 06:30:39', 56, 549, 22.7999992, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7875, 5, '2016-08-11 06:30:53', 54, 536, 22.7999992, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7877, 5, '2016-08-11 06:31:15', 54, 536, 22.7999992, 43, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7879, 5, '2016-08-11 06:31:30', 54, 531, 22.7999992, 43, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7881, 5, '2016-08-11 06:31:45', 55, 508, 22.7999992, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7885, 2, '2016-08-11 06:32:02', 88, 471, 23.1000004, 42.9000015, 4370);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7887, 5, '2016-08-11 06:32:12', 56, 532, 22.7999992, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7889, 5, '2016-08-11 06:32:27', 55, 531, 22.7999992, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7891, 5, '2016-08-11 06:32:42', 53, 499, 22.7999992, 43, 29574);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7893, 5, '2016-08-11 06:32:56', 56, 508, 22.7999992, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7895, 5, '2016-08-11 06:33:09', 54, 547, 22.7999992, 43, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7897, 5, '2016-08-11 06:33:23', 54, 540, 22.7999992, 43, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7899, 5, '2016-08-11 06:33:38', 54, 532, 22.7999992, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7901, 5, '2016-08-11 06:33:53', 54, 556, 22.7999992, 43, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7903, 5, '2016-08-11 06:34:08', 52, 522, 22.7999992, 43, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7905, 5, '2016-08-11 06:34:21', 55, 513, 22.7999992, 43, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7907, 5, '2016-08-11 06:34:37', 53, 540, 22.7999992, 43, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7929, 5, '2016-08-11 06:37:13', 53, 499, 22.7999992, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7931, 5, '2016-08-11 06:37:28', 57, 567, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7935, 5, '2016-08-11 06:37:57', 53, 545, 22.7999992, 43, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7937, 5, '2016-08-11 06:38:11', 53, 511, 22.7999992, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7939, 5, '2016-08-11 06:38:25', 55, 495, 22.7999992, 43, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7941, 5, '2016-08-11 06:38:39', 53, 520, 22.7999992, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7943, 5, '2016-08-11 06:38:56', 55, 554, 22.7999992, 43, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7945, 5, '2016-08-11 06:39:09', 53, 512, 22.7999992, 43, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7597, 5, '2016-08-11 05:58:26', 51, 565, 22.7999992, 42.9000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7627, 5, '2016-08-11 06:01:56', 51, 531, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7629, 5, '2016-08-11 06:02:09', 52, 536, 22.7999992, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7631, 5, '2016-08-11 06:02:24', 41, 538, 22.7999992, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7633, 5, '2016-08-11 06:02:46', 51, 563, 22.7999992, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7635, 5, '2016-08-11 06:03:00', 52, 515, 22.7999992, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7637, 5, '2016-08-11 06:03:14', 51, 494, 22.7999992, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7639, 5, '2016-08-11 06:03:28', 48, 538, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7641, 5, '2016-08-11 06:03:43', 51, 507, 22.7999992, 42.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7643, 5, '2016-08-11 06:03:57', 52, 529, 22.7999992, 42.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7645, 5, '2016-08-11 06:04:11', 51, 558, 22.7999992, 42.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7647, 5, '2016-08-11 06:04:25', 52, 515, 22.7999992, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7649, 5, '2016-08-11 06:04:41', 48, 547, 22.7999992, 42.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7677, 5, '2016-08-11 06:08:01', 50, 490, 22.7999992, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7679, 5, '2016-08-11 06:08:15', 52, 552, 22.7999992, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7699, 5, '2016-08-11 06:10:24', 51, 499, 22.7999992, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7701, 5, '2016-08-11 06:10:39', 52, 517, 22.7999992, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7703, 5, '2016-08-11 06:10:54', 52, 554, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7705, 5, '2016-08-11 06:11:09', 53, 536, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7707, 5, '2016-08-11 06:11:23', 50, 507, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7709, 5, '2016-08-11 06:11:36', 54, 542, 22.7999992, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7711, 5, '2016-08-11 06:11:51', 51, 545, 22.7999992, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7723, 5, '2016-08-11 06:13:17', 51, 517, 22.7999992, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7725, 5, '2016-08-11 06:13:31', 52, 531, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7727, 5, '2016-08-11 06:13:46', 49, 540, 22.7999992, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7729, 5, '2016-08-11 06:14:01', 52, 556, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7731, 5, '2016-08-11 06:14:12', 53, 567, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7733, 5, '2016-08-11 06:14:23', 52, 515, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7735, 5, '2016-08-11 06:14:33', 51, 529, 22.7999992, 42.9000015, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7737, 5, '2016-08-11 06:14:50', 49, 508, 22.7999992, 42.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7739, 5, '2016-08-11 06:15:05', 51, 536, 22.7999992, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7741, 5, '2016-08-11 06:15:20', 51, 503, 22.7999992, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7743, 5, '2016-08-11 06:15:33', 50, 565, 22.7999992, 42.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7745, 5, '2016-08-11 06:15:48', 51, 526, 22.7999992, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7747, 5, '2016-08-11 06:16:03', 41, 511, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7749, 5, '2016-08-11 06:16:10', 51, 522, 22.7999992, 42.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7787, 5, '2016-08-11 06:20:36', 41, 526, 22.7999992, 42.9000015, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7789, 1, '2016-08-11 06:20:43', 86, 549, 21.6000004, 45.7999992, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7791, 5, '2016-08-11 06:21:04', 51, 533, 22.7999992, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7793, 5, '2016-08-11 06:21:18', 50, 492, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7795, 5, '2016-08-11 06:21:33', 52, 529, 22.7999992, 42.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7797, 5, '2016-08-11 06:21:48', 50, 516, 22.7999992, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7799, 5, '2016-08-11 06:22:02', 50, 547, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7801, 5, '2016-08-11 06:22:16', 50, 567, 22.7999992, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7803, 5, '2016-08-11 06:22:30', 53, 529, 22.7999992, 42.9000015, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7805, 5, '2016-08-11 06:22:44', 50, 510, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7807, 5, '2016-08-11 06:22:58', 52, 515, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7809, 5, '2016-08-11 06:23:14', 50, 513, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7811, 5, '2016-08-11 06:23:28', 52, 536, 22.7999992, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7813, 5, '2016-08-11 06:23:38', 51, 570, 22.7999992, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7815, 5, '2016-08-11 06:23:56', 49, 540, 22.7999992, 42.9000015, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7817, 5, '2016-08-11 06:24:11', 50, 526, 22.7999992, 42.9000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7819, 5, '2016-08-11 06:24:21', 51, 536, 22.7999992, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7821, 5, '2016-08-11 06:24:32', 52, 540, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7823, 5, '2016-08-11 06:24:47', 52, 574, 22.7999992, 42.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7825, 5, '2016-08-11 06:25:08', 48, 515, 22.7999992, 42.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7827, 5, '2016-08-11 06:25:23', 54, 524, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7849, 5, '2016-08-11 06:28:01', 55, 536, 22.7999992, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7851, 5, '2016-08-11 06:28:18', 53, 491, 22.7999992, 43, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7853, 5, '2016-08-11 06:28:30', 50, 507, 22.7999992, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7883, 5, '2016-08-11 06:31:57', 50, 552, 22.7999992, 43, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7909, 5, '2016-08-11 06:34:50', 54, 563, 22.7999992, 43, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7911, 5, '2016-08-11 06:35:00', 54, 540, 22.7999992, 43, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7913, 5, '2016-08-11 06:35:19', 50, 567, 22.7999992, 43, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7915, 5, '2016-08-11 06:35:33', 53, 507, 22.7999992, 43, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7917, 5, '2016-08-11 06:35:47', 55, 542, 22.7999992, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7919, 1, '2016-08-11 06:35:56', 128, 507, 21.6000004, 45.7999992, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7921, 5, '2016-08-11 06:36:09', 55, 484, 22.7999992, 43, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7923, 5, '2016-08-11 06:36:23', 53, 520, 22.7999992, 43, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7925, 5, '2016-08-11 06:36:37', 54, 545, 22.7999992, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7927, 5, '2016-08-11 06:36:59', 52, 538, 22.7999992, 43, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7933, 5, '2016-08-11 06:37:43', 54, 561, 22.7999992, 43, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7963, 5, '2016-08-11 06:41:12', 54, 529, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7965, 5, '2016-08-11 06:41:25', 53, 510, 22.7999992, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7967, 5, '2016-08-11 06:41:39', 55, 512, 22.7999992, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7969, 5, '2016-08-11 06:41:54', 53, 482, 22.7999992, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7971, 5, '2016-08-11 06:42:09', 51, 536, 22.7999992, 43.0999985, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7973, 5, '2016-08-11 06:42:23', 53, 534, 22.7999992, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7975, 5, '2016-08-11 06:42:36', 53, 532, 22.7999992, 43.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7977, 5, '2016-08-11 06:42:50', 53, 512, 22.7999992, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7979, 5, '2016-08-11 06:43:05', 54, 536, 22.7999992, 43.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7981, 5, '2016-08-11 06:43:27', 54, 516, 22.7999992, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7983, 5, '2016-08-11 06:43:43', 53, 549, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7985, 5, '2016-08-11 06:43:58', 55, 556, 22.7999992, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7987, 5, '2016-08-11 06:44:12', 54, 491, 22.7999992, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8011, 5, '2016-08-11 06:46:56', 56, 520, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8013, 5, '2016-08-11 06:47:10', 55, 556, 22.7999992, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8015, 2, '2016-08-11 06:47:25', 70, 480, 23.1000004, 43.2999992, 4160);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8017, 5, '2016-08-11 06:47:38', 57, 552, 22.7999992, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8019, 5, '2016-08-11 06:47:52', 53, 516, 22.7999992, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8021, 5, '2016-08-11 06:48:09', 64, 516, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8023, 5, '2016-08-11 06:48:22', 65, 515, 22.7999992, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8025, 5, '2016-08-11 06:48:37', 56, 491, 22.7999992, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8027, 5, '2016-08-11 06:48:50', 64, 554, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8029, 5, '2016-08-11 06:49:04', 55, 547, 22.7999992, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8031, 5, '2016-08-11 06:49:26', 56, 561, 22.7999992, 43.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8033, 5, '2016-08-11 06:49:40', 55, 524, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8035, 5, '2016-08-11 06:49:54', 57, 538, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8037, 5, '2016-08-11 06:50:10', 53, 543, 22.7999992, 43.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8045, 5, '2016-08-11 06:51:01', 64, 547, 22.7999992, 43.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8103, 5, '2016-08-11 06:58:10', 57, 525, 22.7999992, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8105, 5, '2016-08-11 06:58:25', 57, 534, 22.7999992, 43.0999985, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8107, 5, '2016-08-11 06:58:39', 64, 497, 22.7999992, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8109, 5, '2016-08-11 06:58:54', 64, 532, 22.7999992, 43.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8111, 5, '2016-08-11 06:59:07', 64, 561, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8113, 5, '2016-08-11 06:59:23', 64, 532, 22.7999992, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8143, 5, '2016-08-11 07:02:38', 65, 497, 22.7999992, 43.0999985, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7598, 5, '2016-08-11 05:58:33', 50, 520, 22.7999992, 42.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7600, 5, '2016-08-11 05:58:48', 53, 494, 22.7999992, 42.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7602, 5, '2016-08-11 05:59:01', 50, 520, 22.7999992, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7604, 5, '2016-08-11 05:59:10', 50, 524, 22.7999992, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7606, 5, '2016-08-11 05:59:24', 51, 515, 22.7999992, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7608, 5, '2016-08-11 05:59:35', 50, 545, 22.7999992, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7610, 5, '2016-08-11 05:59:54', 51, 567, 22.7999992, 42.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7612, 5, '2016-08-11 06:00:08', 41, 505, 22.7999992, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7614, 5, '2016-08-11 06:00:23', 51, 496, 22.7999992, 42.9000015, 31033);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7616, 5, '2016-08-11 06:00:44', 51, 538, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7618, 5, '2016-08-11 06:00:57', 50, 529, 22.7999992, 42.9000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7620, 5, '2016-08-11 06:01:12', 48, 492, 22.7999992, 42.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7628, 5, '2016-08-11 06:02:03', 52, 529, 22.7999992, 42.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7630, 5, '2016-08-11 06:02:17', 41, 467, 22.7999992, 42.9000015, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7632, 5, '2016-08-11 06:02:38', 51, 531, 22.7999992, 42.9000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7654, 5, '2016-08-11 06:05:17', 52, 515, 22.7999992, 42.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7656, 5, '2016-08-11 06:05:29', 51, 545, 22.7999992, 42.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7658, 5, '2016-08-11 06:05:37', 53, 531, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7660, 5, '2016-08-11 06:05:52', 51, 531, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7662, 5, '2016-08-11 06:06:00', 51, 581, 22.7999992, 42.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7664, 5, '2016-08-11 06:06:21', 51, 538, 22.7999992, 42.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7682, 5, '2016-08-11 06:08:35', 52, 517, 22.7999992, 42.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7684, 5, '2016-08-11 06:08:51', 53, 531, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7686, 5, '2016-08-11 06:09:07', 50, 554, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7688, 0, '2016-08-11 06:09:11', 277, 545, 21.7000008, 46.4000015, 4352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7702, 5, '2016-08-11 06:10:47', 53, 509, 22.7999992, 42.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7704, 5, '2016-08-11 06:11:01', 53, 529, 22.7999992, 42.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7706, 5, '2016-08-11 06:11:15', 54, 563, 22.7999992, 42.9000015, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7720, 5, '2016-08-11 06:12:56', 52, 522, 22.7999992, 42.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7738, 5, '2016-08-11 06:14:57', 51, 515, 22.7999992, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7740, 5, '2016-08-11 06:15:12', 50, 540, 22.7999992, 42.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7742, 5, '2016-08-11 06:15:26', 50, 538, 22.7999992, 42.9000015, 33031);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7754, 5, '2016-08-11 06:16:46', 49, 567, 22.7999992, 42.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7756, 2, '2016-08-11 06:16:51', 68, 475, 23.1000004, 43, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7758, 5, '2016-08-11 06:17:00', 53, 522, 22.7999992, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7760, 5, '2016-08-11 06:17:14', 49, 522, 22.7999992, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7762, 5, '2016-08-11 06:17:28', 50, 561, 22.7999992, 42.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7764, 5, '2016-08-11 06:17:43', 50, 516, 22.7999992, 42.9000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7766, 5, '2016-08-11 06:17:58', 51, 503, 22.7999992, 42.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7768, 5, '2016-08-11 06:18:12', 49, 524, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7770, 5, '2016-08-11 06:18:26', 50, 494, 22.7999992, 42.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7772, 5, '2016-08-11 06:18:40', 50, 581, 22.7999992, 42.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7774, 5, '2016-08-11 06:19:02', 49, 524, 22.7999992, 42.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7776, 5, '2016-08-11 06:19:16', 52, 522, 22.7999992, 42.9000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7778, 5, '2016-08-11 06:19:30', 49, 511, 22.7999992, 42.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7780, 5, '2016-08-11 06:19:45', 51, 520, 22.7999992, 42.9000015, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7782, 5, '2016-08-11 06:20:00', 50, 579, 22.7999992, 42.9000015, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7784, 5, '2016-08-11 06:20:14', 51, 563, 22.7999992, 42.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7786, 5, '2016-08-11 06:20:28', 50, 484, 22.7999992, 42.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7788, 5, '2016-08-11 06:20:39', 50, 540, 22.7999992, 42.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7790, 5, '2016-08-11 06:20:57', 52, 547, 22.7999992, 42.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7792, 5, '2016-08-11 06:21:11', 51, 556, 22.7999992, 42.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7794, 5, '2016-08-11 06:21:26', 50, 547, 22.7999992, 42.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7796, 5, '2016-08-11 06:21:40', 41, 497, 22.7999992, 42.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7798, 5, '2016-08-11 06:21:54', 51, 488, 22.7999992, 42.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7800, 5, '2016-08-11 06:22:09', 50, 520, 22.7999992, 42.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7846, 5, '2016-08-11 06:27:39', 55, 523, 22.7999992, 43, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7876, 5, '2016-08-11 06:31:07', 53, 545, 22.7999992, 43, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7878, 5, '2016-08-11 06:31:23', 53, 508, 22.7999992, 43, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7880, 5, '2016-08-11 06:31:36', 54, 517, 22.7999992, 43, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7882, 5, '2016-08-11 06:31:51', 52, 547, 22.7999992, 43, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7884, 5, '2016-08-11 06:32:01', 53, 508, 22.7999992, 43, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7886, 2, '2016-08-11 06:32:05', 88, 471, 23.1000004, 42.9000015, 4370);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7888, 5, '2016-08-11 06:32:20', 53, 542, 22.7999992, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7890, 5, '2016-08-11 06:32:33', 54, 509, 22.7999992, 43, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7892, 5, '2016-08-11 06:32:47', 53, 556, 22.7999992, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7894, 5, '2016-08-11 06:33:02', 51, 547, 22.7999992, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7896, 5, '2016-08-11 06:33:17', 53, 512, 22.7999992, 43, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7898, 5, '2016-08-11 06:33:31', 55, 547, 22.7999992, 43, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7900, 5, '2016-08-11 06:33:45', 54, 561, 22.7999992, 43, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7902, 5, '2016-08-11 06:34:00', 55, 511, 22.7999992, 43, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7926, 5, '2016-08-11 06:36:45', 55, 497, 22.7999992, 43, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7928, 5, '2016-08-11 06:37:08', 55, 552, 22.7999992, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7930, 5, '2016-08-11 06:37:21', 54, 516, 22.7999992, 43, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7932, 5, '2016-08-11 06:37:35', 51, 561, 22.7999992, 43, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7934, 5, '2016-08-11 06:37:51', 53, 525, 22.7999992, 43, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7936, 5, '2016-08-11 06:38:04', 54, 536, 22.7999992, 43.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7938, 5, '2016-08-11 06:38:19', 54, 520, 22.7999992, 43, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7940, 5, '2016-08-11 06:38:33', 55, 520, 22.7999992, 43.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7942, 5, '2016-08-11 06:38:46', 51, 545, 22.7999992, 43, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7944, 5, '2016-08-11 06:39:01', 56, 511, 22.7999992, 43, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7946, 5, '2016-08-11 06:39:16', 55, 529, 22.7999992, 43, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7948, 5, '2016-08-11 06:39:30', 54, 545, 22.7999992, 43, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7950, 0, '2016-08-11 06:39:37', 35, 525, 21.7999992, 46.2999992, 12297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7952, 5, '2016-08-11 06:39:52', 51, 586, 22.7999992, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7960, 5, '2016-08-11 06:40:49', 55, 531, 22.7999992, 43.0999985, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7962, 5, '2016-08-11 06:41:04', 50, 543, 22.7999992, 43.0999985, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7964, 5, '2016-08-11 06:41:18', 56, 499, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7966, 5, '2016-08-11 06:41:34', 55, 549, 22.7999992, 43.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7968, 5, '2016-08-11 06:41:46', 53, 533, 22.7999992, 43.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7970, 5, '2016-08-11 06:42:00', 56, 516, 22.7999992, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7972, 5, '2016-08-11 06:42:15', 54, 510, 22.7999992, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7996, 5, '2016-08-11 06:45:03', 54, 529, 22.7999992, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7998, 5, '2016-08-11 06:45:22', 56, 549, 22.7999992, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8000, 5, '2016-08-11 06:45:36', 52, 552, 22.7999992, 43.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8002, 5, '2016-08-11 06:45:52', 57, 501, 22.7999992, 43.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8004, 5, '2016-08-11 06:46:05', 64, 515, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8006, 5, '2016-08-11 06:46:20', 54, 525, 22.7999992, 43.0999985, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8008, 5, '2016-08-11 06:46:35', 64, 554, 22.7999992, 43.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8042, 5, '2016-08-11 06:50:45', 57, 510, 22.7999992, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8044, 5, '2016-08-11 06:51:00', 56, 503, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8046, 1, '2016-08-11 06:51:08', 102, 563, 21.6000004, 45.9000015, 5751);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8048, 5, '2016-08-11 06:51:28', 55, 516, 22.7999992, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8050, 5, '2016-08-11 06:51:42', 53, 538, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8052, 5, '2016-08-11 06:51:57', 55, 511, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8054, 5, '2016-08-11 06:52:12', 56, 520, 22.7999992, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8056, 5, '2016-08-11 06:52:27', 52, 558, 22.7999992, 43.0999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7947, 5, '2016-08-11 06:39:22', 55, 522, 22.7999992, 43, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7949, 5, '2016-08-11 06:39:32', 54, 531, 22.7999992, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7951, 5, '2016-08-11 06:39:45', 56, 505, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7953, 5, '2016-08-11 06:39:58', 54, 532, 22.7999992, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7955, 5, '2016-08-11 06:40:14', 54, 532, 22.7999992, 43, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7957, 5, '2016-08-11 06:40:28', 54, 540, 22.7999992, 43, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7959, 5, '2016-08-11 06:40:41', 54, 556, 22.7999992, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7961, 5, '2016-08-11 06:40:56', 54, 561, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7989, 5, '2016-08-11 06:44:25', 50, 543, 22.7999992, 43.0999985, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7991, 5, '2016-08-11 06:44:33', 54, 488, 22.7999992, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7993, 5, '2016-08-11 06:44:47', 55, 512, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7995, 5, '2016-08-11 06:45:00', 54, 505, 22.7999992, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7997, 5, '2016-08-11 06:45:15', 55, 497, 22.7999992, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7999, 5, '2016-08-11 06:45:30', 55, 524, 22.7999992, 43.0999985, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8001, 5, '2016-08-11 06:45:43', 55, 536, 22.7999992, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8003, 5, '2016-08-11 06:46:00', 55, 529, 22.7999992, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8005, 5, '2016-08-11 06:46:12', 57, 510, 22.7999992, 43.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8007, 5, '2016-08-11 06:46:27', 55, 516, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8009, 5, '2016-08-11 06:46:40', 52, 525, 22.7999992, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8039, 5, '2016-08-11 06:50:25', 64, 514, 22.7999992, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8041, 5, '2016-08-11 06:50:38', 57, 510, 22.7999992, 43.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8043, 5, '2016-08-11 06:50:50', 54, 523, 22.7999992, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8047, 5, '2016-08-11 06:51:14', 52, 577, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8049, 5, '2016-08-11 06:51:36', 55, 508, 22.7999992, 43.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8051, 5, '2016-08-11 06:51:52', 56, 516, 22.7999992, 43.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8053, 5, '2016-08-11 06:52:04', 56, 523, 22.7999992, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8055, 5, '2016-08-11 06:52:18', 54, 516, 22.7999992, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8057, 5, '2016-08-11 06:52:37', 56, 556, 22.7999992, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8059, 5, '2016-08-11 06:52:48', 55, 520, 22.7999992, 43.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8061, 5, '2016-08-11 06:53:03', 56, 540, 22.7999992, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8063, 5, '2016-08-11 06:53:15', 56, 501, 22.7999992, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8065, 5, '2016-08-11 06:53:39', 55, 547, 22.7999992, 43.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8068, 5, '2016-08-11 06:54:00', 54, 531, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8070, 5, '2016-08-11 06:54:14', 56, 523, 22.7999992, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8072, 5, '2016-08-11 06:54:27', 57, 540, 22.7999992, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8074, 5, '2016-08-11 06:54:42', 52, 516, 22.7999992, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8076, 0, '2016-08-11 06:54:50', 25, 514, 21.8999996, 47, 4388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8078, 5, '2016-08-11 06:55:03', 54, 563, 22.7999992, 43.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8080, 5, '2016-08-11 06:55:18', 56, 552, 22.7999992, 43.0999985, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8082, 5, '2016-08-11 06:55:40', 55, 549, 22.7999992, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8084, 5, '2016-08-11 06:55:54', 64, 520, 22.7999992, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8112, 5, '2016-08-11 06:59:15', 54, 536, 22.7999992, 43.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8114, 5, '2016-08-11 06:59:29', 66, 529, 22.7999992, 43.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8116, 5, '2016-08-11 06:59:45', 66, 516, 22.7999992, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8119, 3, '2016-08-11 06:59:52', 152, 591, 21.7999992, 46.9000015, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8121, 5, '2016-08-11 07:00:05', 57, 516, 22.7999992, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8123, 5, '2016-08-11 07:00:20', 55, 516, 22.7999992, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8125, 5, '2016-08-11 07:00:33', 57, 538, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8127, 5, '2016-08-11 07:00:48', 55, 503, 22.7999992, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8129, 5, '2016-08-11 07:01:03', 57, 529, 22.7999992, 43.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8131, 5, '2016-08-11 07:01:18', 64, 525, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8133, 5, '2016-08-11 07:01:31', 56, 545, 22.7999992, 43.0999985, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8135, 5, '2016-08-11 07:01:53', 57, 549, 22.7999992, 43.0999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8137, 5, '2016-08-11 07:02:07', 65, 516, 22.7999992, 43.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8139, 5, '2016-08-11 07:02:21', 57, 520, 22.7999992, 43.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8141, 2, '2016-08-11 07:02:30', 627, 484, 23, 44, 5394);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8149, 5, '2016-08-11 07:03:27', 57, 508, 22.7999992, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8151, 5, '2016-08-11 07:03:47', 57, 525, 22.7999992, 43.0999985, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8155, 5, '2016-08-11 07:04:17', 66, 532, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8157, 5, '2016-08-11 07:04:31', 57, 512, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8159, 5, '2016-08-11 07:04:45', 66, 508, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8161, 5, '2016-08-11 07:05:00', 65, 570, 22.7999992, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8183, 5, '2016-08-11 07:07:45', 66, 552, 22.7999992, 43.0999985, 29496);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8185, 5, '2016-08-11 07:07:59', 67, 554, 22.7999992, 43.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8187, 5, '2016-08-11 07:08:13', 67, 491, 22.7999992, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8189, 5, '2016-08-11 07:08:28', 67, 525, 22.7999992, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8191, 5, '2016-08-11 07:08:42', 68, 508, 22.7999992, 43.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8193, 5, '2016-08-11 07:08:57', 70, 523, 22.7999992, 43.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8195, 5, '2016-08-11 07:09:11', 67, 545, 22.7999992, 43.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8197, 5, '2016-08-11 07:09:25', 64, 514, 22.7999992, 43.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8205, 5, '2016-08-11 07:10:16', 69, 536, 22.7999992, 43.2999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8207, 5, '2016-08-11 07:10:30', 68, 532, 22.7999992, 43.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8209, 5, '2016-08-11 07:10:45', 68, 538, 22.7999992, 43.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8211, 5, '2016-08-11 07:10:59', 70, 529, 22.7999992, 43.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8213, 5, '2016-08-11 07:11:13', 72, 508, 22.7999992, 43.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8215, 5, '2016-08-11 07:11:28', 70, 525, 22.7999992, 43.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8217, 5, '2016-08-11 07:11:38', 65, 516, 22.7999992, 43.5, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8219, 5, '2016-08-11 07:11:56', 69, 556, 22.7999992, 43.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8225, 5, '2016-08-11 07:12:40', 71, 493, 22.7999992, 43.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8227, 5, '2016-08-11 07:12:54', 67, 523, 22.7999992, 44, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8229, 5, '2016-08-11 07:13:08', 71, 534, 22.7999992, 44.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8231, 5, '2016-08-11 07:13:22', 72, 538, 22.7999992, 44.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8233, 5, '2016-08-11 07:13:36', 69, 525, 22.7999992, 44.2000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8235, 5, '2016-08-11 07:13:59', 72, 532, 22.7999992, 44.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8237, 5, '2016-08-11 07:14:12', 69, 525, 22.7999992, 44.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8239, 5, '2016-08-11 07:14:27', 70, 497, 22.7999992, 44.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8241, 5, '2016-08-11 07:14:41', 71, 558, 22.7999992, 44.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8243, 5, '2016-08-11 07:14:55', 72, 516, 22.7999992, 44.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8263, 5, '2016-08-11 07:17:19', 73, 516, 22.7999992, 45, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8265, 5, '2016-08-11 07:17:34', 73, 505, 22.7999992, 45, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8267, 2, '2016-08-11 07:17:35', 643, 492, 23, 44.5999985, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8269, 5, '2016-08-11 07:17:48', 73, 495, 22.7999992, 45, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8271, 5, '2016-08-11 07:18:02', 71, 514, 22.7999992, 45.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8273, 5, '2016-08-11 07:18:23', 80, 510, 22.7999992, 45.2000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8275, 5, '2016-08-11 07:18:38', 72, 556, 22.7999992, 45.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8277, 5, '2016-08-11 07:18:53', 72, 567, 22.7999992, 45.2000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8279, 5, '2016-08-11 07:19:07', 71, 491, 22.7999992, 45.2999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8281, 5, '2016-08-11 07:19:22', 72, 529, 22.7999992, 45.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8295, 5, '2016-08-11 07:21:02', 71, 505, 22.7999992, 45.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8297, 5, '2016-08-11 07:21:16', 69, 507, 22.7999992, 45.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8299, 1, '2016-08-11 07:21:24', 2, 510, 21.6000004, 46.2000008, 9267);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8301, 5, '2016-08-11 07:21:37', 72, 536, 22.7999992, 45.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8303, 5, '2016-08-11 07:21:52', 71, 538, 22.7999992, 45.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8305, 5, '2016-08-11 07:22:13', 81, 511, 22.7999992, 45.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8307, 5, '2016-08-11 07:22:29', 73, 517, 22.7999992, 45.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8309, 5, '2016-08-11 07:22:43', 71, 561, 22.7999992, 45.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8311, 5, '2016-08-11 07:23:04', 80, 558, 22.7999992, 45.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7986, 5, '2016-08-11 06:44:03', 53, 572, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7988, 5, '2016-08-11 06:44:18', 56, 527, 22.7999992, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7990, 5, '2016-08-11 06:44:32', 52, 533, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7992, 3, '2016-08-11 06:44:38', 150, 562, 21.7999992, 46.2000008, 9473);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (7994, 5, '2016-08-11 06:44:54', 54, 505, 22.7999992, 43.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8010, 5, '2016-08-11 06:46:48', 54, 554, 22.7999992, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8012, 5, '2016-08-11 06:47:02', 55, 512, 22.7999992, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8014, 5, '2016-08-11 06:47:13', 55, 545, 22.7999992, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8016, 5, '2016-08-11 06:47:31', 57, 520, 22.7999992, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8018, 5, '2016-08-11 06:47:47', 55, 532, 22.7999992, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8020, 5, '2016-08-11 06:48:00', 56, 561, 22.7999992, 43.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8022, 5, '2016-08-11 06:48:14', 55, 529, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8024, 5, '2016-08-11 06:48:28', 57, 543, 22.7999992, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8026, 5, '2016-08-11 06:48:43', 56, 538, 22.7999992, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8028, 5, '2016-08-11 06:48:58', 52, 538, 22.7999992, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8030, 5, '2016-08-11 06:49:12', 55, 540, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8032, 5, '2016-08-11 06:49:34', 56, 545, 22.7999992, 43.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8034, 5, '2016-08-11 06:49:50', 57, 503, 22.7999992, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8036, 5, '2016-08-11 06:50:03', 55, 552, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8038, 5, '2016-08-11 06:50:16', 55, 510, 22.7999992, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8040, 5, '2016-08-11 06:50:33', 55, 529, 22.7999992, 43.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8058, 5, '2016-08-11 06:52:40', 57, 538, 22.7999992, 43.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8060, 5, '2016-08-11 06:52:54', 57, 549, 22.7999992, 43.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8062, 5, '2016-08-11 06:53:10', 54, 518, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8064, 5, '2016-08-11 06:53:30', 64, 516, 22.7999992, 43.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8066, 5, '2016-08-11 06:53:39', 55, 520, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8067, 5, '2016-08-11 06:53:53', 56, 547, 22.7999992, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8069, 5, '2016-08-11 06:54:06', 55, 522, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8071, 5, '2016-08-11 06:54:22', 55, 549, 22.7999992, 43.0999985, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8073, 5, '2016-08-11 06:54:35', 54, 533, 22.7999992, 43.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8075, 5, '2016-08-11 06:54:43', 56, 536, 22.7999992, 43.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8077, 5, '2016-08-11 06:54:57', 57, 577, 22.7999992, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8079, 5, '2016-08-11 06:55:04', 57, 514, 22.7999992, 43.0999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8081, 5, '2016-08-11 06:55:26', 55, 516, 22.7999992, 43.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8083, 5, '2016-08-11 06:55:40', 53, 538, 22.7999992, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8085, 5, '2016-08-11 06:56:01', 55, 542, 22.7999992, 43.0999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8087, 5, '2016-08-11 06:56:16', 54, 523, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8089, 5, '2016-08-11 06:56:29', 57, 540, 22.7999992, 43.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8091, 5, '2016-08-11 06:56:44', 64, 499, 22.7999992, 43.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8093, 5, '2016-08-11 06:56:59', 54, 512, 22.7999992, 43.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8095, 5, '2016-08-11 06:57:13', 65, 572, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8097, 5, '2016-08-11 06:57:27', 64, 556, 22.7999992, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8099, 5, '2016-08-11 06:57:41', 57, 497, 22.7999992, 43.0999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8101, 5, '2016-08-11 06:57:55', 65, 520, 22.7999992, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8115, 5, '2016-08-11 06:59:37', 57, 554, 22.7999992, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8117, 5, '2016-08-11 06:59:45', 65, 529, 22.7999992, 43.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8118, 3, '2016-08-11 06:59:45', 152, 591, 21.7999992, 46.9000015, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8120, 5, '2016-08-11 06:59:54', 57, 525, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8122, 5, '2016-08-11 07:00:13', 67, 523, 22.7999992, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8144, 5, '2016-08-11 07:02:51', 57, 556, 22.7999992, 43.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8146, 5, '2016-08-11 07:03:05', 56, 518, 22.7999992, 43.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8148, 5, '2016-08-11 07:03:19', 57, 508, 22.7999992, 43.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8150, 5, '2016-08-11 07:03:34', 64, 534, 22.7999992, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8152, 5, '2016-08-11 07:03:55', 57, 518, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8154, 5, '2016-08-11 07:04:09', 64, 510, 22.7999992, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8156, 5, '2016-08-11 07:04:24', 64, 495, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8158, 5, '2016-08-11 07:04:38', 65, 525, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8168, 5, '2016-08-11 07:06:05', 55, 547, 22.7999992, 43.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8170, 5, '2016-08-11 07:06:11', 67, 552, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8172, 5, '2016-08-11 07:06:26', 65, 518, 22.7999992, 43.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8174, 5, '2016-08-11 07:06:40', 67, 534, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8176, 5, '2016-08-11 07:06:55', 65, 563, 22.7999992, 43.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8178, 5, '2016-08-11 07:07:08', 56, 501, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8180, 5, '2016-08-11 07:07:23', 65, 536, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8182, 5, '2016-08-11 07:07:38', 65, 552, 22.7999992, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8184, 5, '2016-08-11 07:07:52', 66, 534, 22.7999992, 43.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8186, 5, '2016-08-11 07:08:07', 67, 503, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8188, 5, '2016-08-11 07:08:20', 65, 545, 22.7999992, 43.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8190, 5, '2016-08-11 07:08:35', 69, 514, 22.7999992, 43.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8192, 5, '2016-08-11 07:08:49', 68, 527, 22.7999992, 43.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8194, 5, '2016-08-11 07:08:58', 67, 482, 22.7999992, 43.2000008, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8214, 5, '2016-08-11 07:11:21', 67, 543, 22.7999992, 43.2999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8216, 5, '2016-08-11 07:11:34', 71, 536, 22.7999992, 43.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8218, 5, '2016-08-11 07:11:49', 70, 514, 22.7999992, 43.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8220, 5, '2016-08-11 07:12:03', 69, 536, 22.7999992, 43.5999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8222, 5, '2016-08-11 07:12:18', 69, 565, 22.7999992, 43.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8224, 5, '2016-08-11 07:12:32', 70, 516, 22.7999992, 43.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8226, 5, '2016-08-11 07:12:46', 69, 543, 22.7999992, 44, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8228, 5, '2016-08-11 07:13:00', 69, 567, 22.7999992, 44, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8230, 5, '2016-08-11 07:13:15', 71, 512, 22.7999992, 44.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8232, 5, '2016-08-11 07:13:30', 72, 503, 22.7999992, 44.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8234, 5, '2016-08-11 07:13:44', 69, 540, 22.7999992, 44.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8236, 5, '2016-08-11 07:14:06', 71, 516, 22.7999992, 44.2999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8238, 5, '2016-08-11 07:14:20', 71, 558, 22.7999992, 44.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8240, 5, '2016-08-11 07:14:34', 72, 558, 22.7999992, 44.4000015, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8248, 5, '2016-08-11 07:15:24', 80, 505, 22.7999992, 44.5999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8250, 5, '2016-08-11 07:15:38', 72, 499, 22.7999992, 44.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8252, 5, '2016-08-11 07:15:53', 71, 538, 22.7999992, 44.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8254, 5, '2016-08-11 07:16:08', 80, 583, 22.7999992, 44.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8256, 5, '2016-08-11 07:16:29', 72, 520, 22.7999992, 44.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8258, 5, '2016-08-11 07:16:44', 70, 488, 22.7999992, 44.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8260, 5, '2016-08-11 07:16:58', 72, 495, 22.7999992, 44.9000015, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8262, 5, '2016-08-11 07:17:10', 80, 547, 22.7999992, 44.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8264, 5, '2016-08-11 07:17:26', 69, 549, 22.7999992, 45, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8266, 5, '2016-08-11 07:17:34', 80, 488, 22.7999992, 45, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8268, 2, '2016-08-11 07:17:41', 643, 492, 23, 44.5999985, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8270, 5, '2016-08-11 07:18:02', 80, 532, 22.7999992, 45, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8272, 5, '2016-08-11 07:18:17', 72, 520, 22.7999992, 45.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8274, 5, '2016-08-11 07:18:31', 69, 554, 22.7999992, 45.2000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8296, 5, '2016-08-11 07:21:09', 72, 538, 22.7999992, 45.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8298, 5, '2016-08-11 07:21:23', 71, 524, 22.7999992, 45.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8300, 5, '2016-08-11 07:21:31', 71, 540, 22.7999992, 45.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8312, 5, '2016-08-11 07:23:04', 68, 554, 22.7999992, 45.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8313, 5, '2016-08-11 07:23:12', 72, 558, 22.7999992, 45.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8315, 5, '2016-08-11 07:23:25', 73, 540, 22.7999992, 45.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8086, 5, '2016-08-11 06:56:08', 56, 558, 22.7999992, 43.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8088, 5, '2016-08-11 06:56:23', 57, 520, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8090, 5, '2016-08-11 06:56:37', 57, 554, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8092, 5, '2016-08-11 06:56:50', 56, 527, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8094, 5, '2016-08-11 06:57:05', 56, 529, 22.7999992, 43.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8096, 5, '2016-08-11 06:57:19', 56, 547, 22.7999992, 43.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8098, 5, '2016-08-11 06:57:35', 64, 552, 22.7999992, 43.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8100, 5, '2016-08-11 06:57:49', 57, 520, 22.7999992, 43.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8102, 5, '2016-08-11 06:58:04', 54, 536, 22.7999992, 43.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8104, 5, '2016-08-11 06:58:17', 57, 565, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8106, 5, '2016-08-11 06:58:31', 57, 554, 22.7999992, 43.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8108, 5, '2016-08-11 06:58:46', 57, 554, 22.7999992, 43.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8110, 5, '2016-08-11 06:59:01', 66, 516, 22.7999992, 43.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8124, 5, '2016-08-11 07:00:27', 65, 572, 22.7999992, 43.0999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8126, 5, '2016-08-11 07:00:42', 57, 520, 22.7999992, 43.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8128, 5, '2016-08-11 07:00:55', 56, 505, 22.7999992, 43.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8130, 5, '2016-08-11 07:01:09', 64, 536, 22.7999992, 43.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8132, 5, '2016-08-11 07:01:24', 57, 561, 22.7999992, 43.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8134, 5, '2016-08-11 07:01:45', 57, 558, 22.7999992, 43.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8136, 5, '2016-08-11 07:02:01', 64, 499, 22.7999992, 43.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8138, 5, '2016-08-11 07:02:15', 57, 552, 22.7999992, 43.0999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8140, 5, '2016-08-11 07:02:24', 65, 547, 22.7999992, 43.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8142, 5, '2016-08-11 07:02:36', 54, 538, 22.7999992, 43.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8160, 5, '2016-08-11 07:04:53', 54, 554, 22.7999992, 43.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8162, 5, '2016-08-11 07:05:06', 57, 567, 22.7999992, 43.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8164, 5, '2016-08-11 07:05:28', 64, 529, 22.7999992, 43.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8166, 5, '2016-08-11 07:05:50', 65, 533, 22.7999992, 43.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8196, 5, '2016-08-11 07:09:18', 69, 552, 22.7999992, 43.2000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8198, 5, '2016-08-11 07:09:32', 68, 536, 22.7999992, 43.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8200, 5, '2016-08-11 07:09:47', 68, 527, 22.7999992, 43.2000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8202, 0, '2016-08-11 07:09:55', 51, 539, 21.7999992, 47.7999992, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8204, 5, '2016-08-11 07:10:09', 69, 514, 22.7999992, 43.2000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8206, 5, '2016-08-11 07:10:23', 69, 540, 22.7999992, 43.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8208, 5, '2016-08-11 07:10:37', 66, 538, 22.7999992, 43.2999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8210, 5, '2016-08-11 07:10:51', 70, 534, 22.7999992, 43.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8212, 5, '2016-08-11 07:11:06', 71, 549, 22.7999992, 43.2999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8242, 5, '2016-08-11 07:14:48', 72, 523, 22.7999992, 44.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8244, 3, '2016-08-11 07:14:56', 49, 587, 21.7999992, 47.5999985, 4118);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8246, 5, '2016-08-11 07:15:07', 68, 567, 22.7999992, 44.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8276, 5, '2016-08-11 07:18:46', 71, 517, 22.7999992, 45.2000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8278, 5, '2016-08-11 07:19:01', 69, 509, 22.7999992, 45.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8280, 5, '2016-08-11 07:19:14', 72, 493, 22.7999992, 45.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8282, 5, '2016-08-11 07:19:29', 73, 501, 22.7999992, 45.4000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8284, 5, '2016-08-11 07:19:43', 69, 549, 22.7999992, 45.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8286, 5, '2016-08-11 07:19:59', 73, 529, 22.7999992, 45.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8288, 5, '2016-08-11 07:20:12', 73, 507, 22.7999992, 45.5, 29250);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8290, 5, '2016-08-11 07:20:26', 70, 501, 22.7999992, 45.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8292, 5, '2016-08-11 07:20:40', 80, 526, 22.7999992, 45.5, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8294, 5, '2016-08-11 07:20:55', 70, 533, 22.7999992, 45.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8302, 5, '2016-08-11 07:21:46', 80, 542, 22.7999992, 45.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8304, 5, '2016-08-11 07:22:07', 69, 503, 22.7999992, 45.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8306, 5, '2016-08-11 07:22:29', 72, 494, 22.7999992, 45.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8308, 5, '2016-08-11 07:22:35', 80, 552, 22.7999992, 45.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8310, 5, '2016-08-11 07:22:50', 72, 556, 22.7999992, 45.9000015, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8145, 5, '2016-08-11 07:02:57', 57, 518, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8147, 5, '2016-08-11 07:03:12', 57, 552, 22.7999992, 43.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8153, 5, '2016-08-11 07:04:02', 65, 532, 22.7999992, 43.0999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8163, 5, '2016-08-11 07:05:21', 56, 514, 22.7999992, 43.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8165, 5, '2016-08-11 07:05:35', 65, 570, 22.7999992, 43.2000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8167, 5, '2016-08-11 07:05:56', 64, 512, 22.7999992, 43.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8169, 5, '2016-08-11 07:06:11', 65, 518, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8171, 1, '2016-08-11 07:06:19', 116, 535, 21.6000004, 46, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8173, 5, '2016-08-11 07:06:32', 66, 512, 22.7999992, 43.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8175, 5, '2016-08-11 07:06:47', 65, 512, 22.7999992, 43.0999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8177, 5, '2016-08-11 07:07:00', 67, 554, 22.7999992, 43.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8179, 5, '2016-08-11 07:07:16', 67, 549, 22.7999992, 43.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8181, 5, '2016-08-11 07:07:30', 66, 572, 22.7999992, 43.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8199, 5, '2016-08-11 07:09:40', 68, 529, 22.7999992, 43.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8201, 5, '2016-08-11 07:09:54', 67, 532, 22.7999992, 43.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8203, 5, '2016-08-11 07:10:01', 68, 510, 22.7999992, 43.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8221, 5, '2016-08-11 07:12:10', 67, 549, 22.7999992, 43.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8223, 5, '2016-08-11 07:12:25', 70, 536, 22.7999992, 43.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8245, 5, '2016-08-11 07:15:03', 70, 482, 22.7999992, 44.5999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8247, 5, '2016-08-11 07:15:18', 71, 554, 22.7999992, 44.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8249, 5, '2016-08-11 07:15:31', 71, 516, 22.7999992, 44.5999985, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8251, 5, '2016-08-11 07:15:46', 73, 523, 22.7999992, 44.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8253, 5, '2016-08-11 07:16:00', 71, 556, 22.7999992, 44.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8255, 5, '2016-08-11 07:16:14', 69, 552, 22.7999992, 44.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8257, 5, '2016-08-11 07:16:36', 72, 518, 22.7999992, 44.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8259, 5, '2016-08-11 07:16:50', 73, 510, 22.7999992, 44.9000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8261, 5, '2016-08-11 07:17:05', 72, 512, 22.7999992, 44.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8283, 5, '2016-08-11 07:19:36', 71, 563, 22.7999992, 45.4000015, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8285, 5, '2016-08-11 07:19:50', 71, 533, 22.7999992, 45.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8287, 5, '2016-08-11 07:20:04', 71, 499, 22.7999992, 45.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8289, 5, '2016-08-11 07:20:19', 80, 515, 22.7999992, 45.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8291, 5, '2016-08-11 07:20:34', 71, 513, 22.7999992, 45.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8293, 5, '2016-08-11 07:20:48', 69, 542, 22.7999992, 45.5, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8314, 5, '2016-08-11 07:23:19', 73, 505, 22.7999992, 45.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8316, 5, '2016-08-11 07:23:33', 69, 515, 22.7999992, 45.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8317, 5, '2016-08-11 07:23:40', 81, 526, 22.7999992, 45.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8318, 5, '2016-08-11 07:23:47', 73, 549, 22.7999992, 46, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8319, 5, '2016-08-11 07:23:54', 80, 529, 22.7999992, 46, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8320, 5, '2016-08-11 07:24:02', 81, 490, 22.7999992, 46, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8321, 5, '2016-08-11 07:24:09', 73, 545, 22.7999992, 46, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8322, 5, '2016-08-11 07:24:15', 71, 526, 22.7999992, 46, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8323, 5, '2016-08-11 07:24:23', 81, 520, 22.7999992, 46, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8324, 5, '2016-08-11 07:24:30', 83, 570, 22.7999992, 46.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8325, 5, '2016-08-11 07:24:38', 81, 486, 22.7999992, 46.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8326, 5, '2016-08-11 07:24:45', 82, 533, 22.7999992, 46.0999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8327, 5, '2016-08-11 07:24:51', 83, 540, 22.7999992, 46.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8328, 5, '2016-08-11 07:25:00', 81, 492, 22.7999992, 46.0999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8329, 5, '2016-08-11 07:25:04', 81, 577, 22.7999992, 46.0999985, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8330, 0, '2016-08-11 07:25:07', 64, 539, 21.7999992, 48.4000015, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8331, 5, '2016-08-11 07:25:09', 83, 540, 22.7999992, 46.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8332, 5, '2016-08-11 07:25:21', 72, 524, 22.7999992, 46.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8333, 5, '2016-08-11 07:25:27', 82, 511, 22.7999992, 46.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8334, 5, '2016-08-11 07:25:35', 80, 547, 22.7999992, 46.2000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8335, 5, '2016-08-11 07:25:42', 81, 515, 22.7000008, 46.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8336, 5, '2016-08-11 07:25:49', 80, 574, 22.7000008, 46.2999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8337, 5, '2016-08-11 07:25:56', 82, 540, 22.7000008, 46.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8338, 5, '2016-08-11 07:26:11', 82, 565, 22.7000008, 46.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8339, 5, '2016-08-11 07:26:18', 83, 520, 22.7000008, 46.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8340, 5, '2016-08-11 07:26:25', 82, 511, 22.7000008, 46.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8341, 5, '2016-08-11 07:26:33', 73, 531, 22.7000008, 46.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8342, 5, '2016-08-11 07:26:39', 81, 526, 22.7000008, 46.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8343, 5, '2016-08-11 07:26:47', 84, 556, 22.7000008, 46.4000015, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8344, 5, '2016-08-11 07:26:54', 81, 520, 22.7000008, 46.4000015, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8345, 5, '2016-08-11 07:27:02', 83, 536, 22.7000008, 46.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8346, 5, '2016-08-11 07:27:06', 83, 576, 22.7000008, 46.4000015, 29524);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8347, 5, '2016-08-11 07:27:15', 81, 556, 22.7000008, 46.4000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8348, 5, '2016-08-11 07:27:20', 82, 556, 22.7000008, 46.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8349, 5, '2016-08-11 07:27:30', 82, 515, 22.7000008, 46.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8350, 5, '2016-08-11 07:27:38', 72, 524, 22.7000008, 46.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8351, 5, '2016-08-11 07:27:45', 81, 540, 22.7000008, 46.5, 32807);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8352, 5, '2016-08-11 07:27:51', 81, 545, 22.7000008, 46.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8353, 5, '2016-08-11 07:27:58', 81, 565, 22.7000008, 46.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8354, 5, '2016-08-11 07:28:06', 81, 511, 22.7000008, 46.5, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8355, 5, '2016-08-11 07:28:13', 81, 524, 22.7000008, 46.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8356, 5, '2016-08-11 07:28:21', 81, 574, 22.7000008, 46.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8357, 5, '2016-08-11 07:28:27', 81, 529, 22.7000008, 46.5999985, 29712);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8358, 5, '2016-08-11 07:28:35', 82, 536, 22.7000008, 46.5999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8359, 5, '2016-08-11 07:28:41', 81, 517, 22.7000008, 46.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8360, 5, '2016-08-11 07:28:49', 73, 554, 22.7000008, 46.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8361, 5, '2016-08-11 07:28:56', 83, 540, 22.7000008, 46.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8362, 5, '2016-08-11 07:29:03', 84, 524, 22.7000008, 46.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8363, 5, '2016-08-11 07:29:11', 82, 552, 22.7000008, 46.5999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8364, 5, '2016-08-11 07:29:17', 83, 536, 22.7000008, 46.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8365, 5, '2016-08-11 07:29:26', 84, 576, 22.7000008, 46.5999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8366, 5, '2016-08-11 07:29:32', 80, 556, 22.7000008, 46.5999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8367, 5, '2016-08-11 07:29:39', 81, 540, 22.7000008, 46.7000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8368, 5, '2016-08-11 07:29:40', 84, 504, 22.7000008, 46.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8369, 5, '2016-08-11 07:29:53', 72, 507, 22.7000008, 46.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8370, 5, '2016-08-11 07:30:04', 82, 515, 22.7000008, 46.7000008, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8371, 5, '2016-08-11 07:30:05', 80, 511, 22.7000008, 46.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8372, 3, '2016-08-11 07:30:06', 82, 598, 21.7999992, 48.2999992, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8373, 3, '2016-08-11 07:30:08', 82, 598, 21.7999992, 48.2999992, 4096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8374, 5, '2016-08-11 07:30:15', 81, 529, 22.7000008, 46.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8375, 5, '2016-08-11 07:30:30', 72, 569, 22.7000008, 46.7999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8376, 5, '2016-08-11 07:30:37', 80, 533, 22.7000008, 46.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8377, 5, '2016-08-11 07:30:43', 80, 554, 22.7000008, 46.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8378, 5, '2016-08-11 07:30:51', 81, 522, 22.7000008, 46.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8379, 5, '2016-08-11 07:30:58', 80, 492, 22.7000008, 46.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8380, 5, '2016-08-11 07:31:06', 72, 529, 22.7000008, 46.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8381, 5, '2016-08-11 07:31:13', 82, 552, 22.7000008, 46.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8382, 5, '2016-08-11 07:31:20', 82, 496, 22.7000008, 46.7999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8383, 5, '2016-08-11 07:31:27', 82, 552, 22.7000008, 46.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8384, 5, '2016-08-11 07:31:34', 82, 542, 22.7000008, 46.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8385, 5, '2016-08-11 07:31:41', 82, 556, 22.6000004, 46.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8386, 5, '2016-08-11 07:31:49', 82, 547, 22.7000008, 46.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8387, 5, '2016-08-11 07:31:55', 80, 542, 22.6000004, 46.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8388, 5, '2016-08-11 07:32:04', 83, 549, 22.6000004, 46.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8389, 5, '2016-08-11 07:32:17', 73, 531, 22.6000004, 47, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8390, 5, '2016-08-11 07:32:26', 81, 490, 22.6000004, 47, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8391, 5, '2016-08-11 07:32:32', 83, 531, 22.6000004, 47, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8392, 5, '2016-08-11 07:32:38', 81, 513, 22.6000004, 47, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8393, 5, '2016-08-11 07:32:45', 83, 565, 22.6000004, 47, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8394, 2, '2016-08-11 07:32:46', 518, 494, 22.8999996, 45.0999985, 4886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8395, 5, '2016-08-11 07:32:53', 82, 515, 22.6000004, 47, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8396, 5, '2016-08-11 07:33:00', 82, 552, 22.6000004, 47.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8397, 5, '2016-08-11 07:33:07', 83, 549, 22.6000004, 47.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8398, 5, '2016-08-11 07:33:15', 81, 571, 22.6000004, 47.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8399, 5, '2016-08-11 07:33:22', 73, 494, 22.6000004, 47.0999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8400, 5, '2016-08-11 07:33:28', 82, 513, 22.6000004, 47.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8401, 5, '2016-08-11 07:33:36', 85, 549, 22.6000004, 47.0999985, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8402, 5, '2016-08-11 07:33:43', 82, 492, 22.6000004, 47.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8403, 5, '2016-08-11 07:33:51', 83, 551, 22.6000004, 47.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8404, 5, '2016-08-11 07:33:57', 83, 515, 22.6000004, 47.0999985, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8405, 5, '2016-08-11 07:34:05', 81, 528, 22.6000004, 47.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8406, 5, '2016-08-11 07:34:19', 82, 513, 22.6000004, 47.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8407, 5, '2016-08-11 07:34:27', 72, 562, 22.6000004, 47.0999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8408, 5, '2016-08-11 07:34:33', 80, 526, 22.6000004, 47.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8409, 5, '2016-08-11 07:34:43', 80, 560, 22.6000004, 47.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8410, 5, '2016-08-11 07:34:49', 80, 542, 22.6000004, 47.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8411, 5, '2016-08-11 07:34:55', 73, 546, 22.6000004, 47.2000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8412, 5, '2016-08-11 07:35:03', 80, 535, 22.6000004, 47.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8413, 5, '2016-08-11 07:35:09', 80, 546, 22.6000004, 47.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8414, 5, '2016-08-11 07:35:11', 80, 528, 22.6000004, 47.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8415, 5, '2016-08-11 07:35:24', 80, 537, 22.6000004, 47.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8416, 5, '2016-08-11 07:35:31', 72, 544, 22.6000004, 47.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8417, 5, '2016-08-11 07:35:38', 69, 546, 22.6000004, 47.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8418, 5, '2016-08-11 07:35:45', 80, 531, 22.6000004, 47.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8419, 5, '2016-08-11 07:35:53', 81, 519, 22.6000004, 47.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8420, 5, '2016-08-11 07:36:00', 73, 562, 22.6000004, 47.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8421, 5, '2016-08-11 07:36:07', 80, 539, 22.6000004, 47.2999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8422, 5, '2016-08-11 07:36:11', 80, 576, 22.6000004, 47.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8424, 5, '2016-08-11 07:36:33', 73, 531, 22.6000004, 47.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8426, 5, '2016-08-11 07:36:43', 69, 578, 22.6000004, 47.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8428, 5, '2016-08-11 07:36:57', 71, 533, 22.6000004, 47.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8430, 5, '2016-08-11 07:37:12', 71, 557, 22.6000004, 47.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8462, 5, '2016-08-11 07:40:56', 83, 548, 22.5, 47.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8464, 5, '2016-08-11 07:41:08', 84, 542, 22.5, 47.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8466, 5, '2016-08-11 07:41:24', 80, 539, 22.5, 47.7000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8468, 5, '2016-08-11 07:41:38', 83, 513, 22.5, 47.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8470, 5, '2016-08-11 07:41:52', 84, 507, 22.5, 47.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8472, 5, '2016-08-11 07:42:07', 84, 535, 22.5, 47.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8474, 5, '2016-08-11 07:42:21', 84, 531, 22.5, 47.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8476, 5, '2016-08-11 07:42:42', 86, 524, 22.5, 47.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8478, 5, '2016-08-11 07:42:56', 85, 517, 22.5, 47.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8480, 5, '2016-08-11 07:43:11', 85, 532, 22.5, 47.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8482, 5, '2016-08-11 07:43:27', 87, 533, 22.5, 47.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8484, 5, '2016-08-11 07:43:41', 83, 576, 22.5, 47.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8486, 5, '2016-08-11 07:43:54', 86, 530, 22.5, 47.7999992, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8488, 5, '2016-08-11 07:44:09', 85, 519, 22.5, 47.9000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8506, 5, '2016-08-11 07:46:19', 86, 530, 22.5, 48, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8508, 5, '2016-08-11 07:46:33', 86, 539, 22.5, 48.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8510, 5, '2016-08-11 07:46:46', 89, 568, 22.5, 48.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8512, 5, '2016-08-11 07:47:01', 85, 541, 22.5, 48.0999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8514, 5, '2016-08-11 07:47:15', 89, 537, 22.5, 48.0999985, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8516, 5, '2016-08-11 07:47:30', 89, 530, 22.5, 48.0999985, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8518, 5, '2016-08-11 07:47:40', 87, 532, 22.5, 48.0999985, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8520, 5, '2016-08-11 07:47:57', 96, 508, 22.5, 48.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8522, 5, '2016-08-11 07:48:05', 85, 532, 22.5, 48.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8524, 5, '2016-08-11 07:48:20', 87, 506, 22.5, 48.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8526, 5, '2016-08-11 07:48:41', 87, 541, 22.5, 48.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8528, 5, '2016-08-11 07:48:56', 89, 553, 22.5, 48.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8530, 5, '2016-08-11 07:49:10', 88, 512, 22.5, 48.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8532, 5, '2016-08-11 07:49:24', 88, 508, 22.5, 48.2999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8546, 5, '2016-08-11 07:51:12', 89, 541, 22.5, 48.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8548, 5, '2016-08-11 07:51:26', 88, 557, 22.5, 48.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8550, 5, '2016-08-11 07:51:41', 96, 528, 22.5, 48.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8580, 5, '2016-08-11 07:55:09', 88, 519, 22.3999996, 48.7000008, 30979);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8582, 5, '2016-08-11 07:55:23', 86, 535, 22.3999996, 48.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8584, 0, '2016-08-11 07:55:31', 82, 521, 21.7999992, 49.5, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8586, 5, '2016-08-11 07:55:45', 88, 551, 22.3999996, 48.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8588, 5, '2016-08-11 07:55:59', 87, 521, 22.3999996, 48.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8590, 5, '2016-08-11 07:56:14', 89, 548, 22.3999996, 48.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8592, 5, '2016-08-11 07:56:27', 88, 523, 22.3999996, 48.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8594, 5, '2016-08-11 07:56:43', 96, 514, 22.3999996, 48.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8596, 5, '2016-08-11 07:57:00', 87, 519, 22.3999996, 48.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8598, 5, '2016-08-11 07:57:12', 85, 555, 22.3999996, 48.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8600, 5, '2016-08-11 07:57:26', 87, 541, 22.3999996, 48.7999992, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8626, 3, '2016-08-11 08:00:34', 897, 575, 21.7999992, 49.2000008, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8628, 5, '2016-08-11 08:00:52', 97, 527, 22.2999992, 49, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8630, 5, '2016-08-11 08:01:01', 96, 541, 22.2999992, 49, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8632, 5, '2016-08-11 08:01:14', 97, 525, 22.2999992, 49, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8634, 5, '2016-08-11 08:01:29', 89, 565, 22.2999992, 49, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8668, 5, '2016-08-11 08:05:27', 101, 584, 22.2999992, 49.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8670, 5, '2016-08-11 08:05:40', 100, 518, 22.2999992, 49.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8672, 5, '2016-08-11 08:05:55', 100, 525, 22.2999992, 49.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8674, 5, '2016-08-11 08:06:10', 102, 575, 22.2999992, 49.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8676, 5, '2016-08-11 08:06:24', 99, 547, 22.2999992, 49.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8678, 5, '2016-08-11 08:06:39', 102, 527, 22.2999992, 49.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8680, 5, '2016-08-11 08:06:52', 103, 523, 22.2999992, 49.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8682, 1, '2016-08-11 08:07:07', 356, 561, 21.7000008, 47.2000008, 2450);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8712, 5, '2016-08-11 08:10:37', 104, 534, 22.2000008, 49.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8714, 5, '2016-08-11 08:10:50', 100, 576, 22.2000008, 49.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8716, 5, '2016-08-11 08:11:11', 102, 532, 22.2000008, 49.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8718, 5, '2016-08-11 08:11:26', 104, 541, 22.2000008, 49.5, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8720, 0, '2016-08-11 08:11:32', 272, 639, 21.8999996, 50.5999985, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8722, 5, '2016-08-11 08:11:48', 105, 534, 22.2000008, 49.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8724, 5, '2016-08-11 08:12:02', 102, 521, 22.2000008, 49.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8726, 5, '2016-08-11 08:12:16', 113, 550, 22.2000008, 49.5999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8728, 5, '2016-08-11 08:12:27', 105, 552, 22.2000008, 49.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8730, 5, '2016-08-11 08:12:44', 105, 567, 22.2000008, 49.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8758, 5, '2016-08-11 08:15:58', 117, 576, 22.2000008, 49.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8760, 5, '2016-08-11 08:16:13', 116, 518, 22.2000008, 49.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8788, 5, '2016-08-11 08:19:33', 116, 511, 22.2000008, 50, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8790, 5, '2016-08-11 08:19:48', 118, 534, 22.1000004, 50, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8792, 5, '2016-08-11 08:20:03', 114, 494, 22.1000004, 50, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8794, 5, '2016-08-11 08:20:18', 117, 503, 22.1000004, 50, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8796, 5, '2016-08-11 08:20:32', 116, 561, 22.1000004, 50, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8798, 5, '2016-08-11 08:20:45', 117, 534, 22.1000004, 50, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8800, 5, '2016-08-11 08:21:00', 115, 529, 22.1000004, 50, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8802, 5, '2016-08-11 08:21:16', 116, 531, 22.1000004, 50, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8804, 5, '2016-08-11 08:21:29', 115, 540, 22.1000004, 50, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8806, 5, '2016-08-11 08:21:46', 117, 545, 22.1000004, 50.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8808, 5, '2016-08-11 08:21:58', 115, 550, 22.1000004, 50.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8810, 5, '2016-08-11 08:22:06', 105, 543, 22.1000004, 50.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8812, 5, '2016-08-11 08:22:20', 105, 565, 22.1000004, 50.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8814, 5, '2016-08-11 08:22:34', 114, 534, 22.1000004, 50.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8816, 5, '2016-08-11 08:22:47', 113, 529, 22.1000004, 50.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8818, 5, '2016-08-11 08:23:02', 113, 515, 22.1000004, 50.2000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8820, 5, '2016-08-11 08:23:17', 113, 509, 22.1000004, 50.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8822, 5, '2016-08-11 08:23:31', 114, 531, 22.1000004, 50.2000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8824, 5, '2016-08-11 08:23:44', 113, 499, 22.1000004, 50.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8826, 5, '2016-08-11 08:23:59', 114, 550, 22.1000004, 50.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8846, 5, '2016-08-11 08:26:30', 112, 545, 22.1000004, 50.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8858, 5, '2016-08-11 08:27:57', 103, 527, 22.1000004, 50.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8860, 5, '2016-08-11 08:28:11', 113, 497, 22.1000004, 50.4000015, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8862, 5, '2016-08-11 08:28:25', 105, 501, 22.1000004, 50.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8864, 5, '2016-08-11 08:28:39', 105, 511, 22.1000004, 50.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8866, 5, '2016-08-11 08:28:56', 113, 513, 22.1000004, 50.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8868, 5, '2016-08-11 08:29:09', 104, 538, 22.1000004, 50.4000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8870, 5, '2016-08-11 08:29:23', 113, 511, 22.1000004, 50.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8872, 5, '2016-08-11 08:29:37', 103, 561, 22.1000004, 50.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8880, 5, '2016-08-11 08:30:35', 103, 556, 22.1000004, 50.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8882, 5, '2016-08-11 08:30:49', 103, 536, 22.1000004, 50.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8884, 5, '2016-08-11 08:31:03', 104, 524, 22.1000004, 50.5, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8886, 5, '2016-08-11 08:31:18', 101, 509, 22.1000004, 50.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8888, 5, '2016-08-11 08:31:39', 103, 527, 22.1000004, 50.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8890, 5, '2016-08-11 08:31:53', 103, 527, 22.1000004, 50.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8423, 5, '2016-08-11 07:36:29', 72, 504, 22.6000004, 47.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8425, 1, '2016-08-11 07:36:36', 38, 561, 21.7000008, 46.7000008, 1814);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8427, 5, '2016-08-11 07:36:51', 70, 562, 22.6000004, 47.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8429, 5, '2016-08-11 07:37:04', 73, 542, 22.6000004, 47.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8431, 5, '2016-08-11 07:37:18', 71, 511, 22.6000004, 47.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8435, 5, '2016-08-11 07:37:48', 73, 519, 22.6000004, 47.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8437, 5, '2016-08-11 07:38:01', 80, 513, 22.5, 47.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8439, 5, '2016-08-11 07:38:16', 73, 560, 22.5, 47.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8441, 5, '2016-08-11 07:38:31', 82, 535, 22.5, 47.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8443, 5, '2016-08-11 07:38:41', 80, 542, 22.5, 47.5, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8445, 5, '2016-08-11 07:39:00', 71, 517, 22.5, 47.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8447, 5, '2016-08-11 07:39:14', 72, 551, 22.5, 47.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8449, 5, '2016-08-11 07:39:28', 80, 533, 22.5, 47.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8451, 5, '2016-08-11 07:39:44', 81, 528, 22.5, 47.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8453, 5, '2016-08-11 07:39:58', 82, 507, 22.5, 47.5, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8455, 5, '2016-08-11 07:40:11', 72, 546, 22.5, 47.5, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8457, 0, '2016-08-11 07:40:19', 64, 519, 21.7999992, 49, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8459, 5, '2016-08-11 07:40:32', 82, 528, 22.5, 47.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8517, 5, '2016-08-11 07:47:37', 96, 553, 22.5, 48.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8519, 5, '2016-08-11 07:47:51', 88, 535, 22.5, 48.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8521, 2, '2016-08-11 07:47:59', 537, 476, 22.8999996, 45.0999985, 4626);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8523, 5, '2016-08-11 07:48:12', 85, 510, 22.5, 48.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8525, 5, '2016-08-11 07:48:27', 88, 519, 22.5, 48.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8527, 5, '2016-08-11 07:48:48', 88, 530, 22.5, 48.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8529, 5, '2016-08-11 07:49:03', 96, 530, 22.5, 48.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8531, 5, '2016-08-11 07:49:17', 86, 512, 22.5, 48.2999992, 32857);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8533, 5, '2016-08-11 07:49:32', 97, 516, 22.5, 48.2999992, 26932);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8535, 5, '2016-08-11 07:49:45', 97, 493, 22.5, 48.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8537, 5, '2016-08-11 07:50:00', 88, 548, 22.5, 48.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8539, 5, '2016-08-11 07:50:14', 96, 530, 22.5, 48.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8541, 5, '2016-08-11 07:50:31', 85, 546, 22.5, 48.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8571, 5, '2016-08-11 07:54:04', 96, 532, 22.3999996, 48.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8573, 5, '2016-08-11 07:54:18', 88, 584, 22.3999996, 48.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8575, 5, '2016-08-11 07:54:33', 88, 553, 22.3999996, 48.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8577, 5, '2016-08-11 07:54:48', 97, 521, 22.3999996, 48.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8579, 5, '2016-08-11 07:55:01', 86, 495, 22.3999996, 48.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8581, 5, '2016-08-11 07:55:14', 88, 555, 22.3999996, 48.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8583, 5, '2016-08-11 07:55:27', 88, 519, 22.3999996, 48.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8585, 5, '2016-08-11 07:55:38', 88, 514, 22.3999996, 48.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8587, 5, '2016-08-11 07:55:53', 89, 528, 22.3999996, 48.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8589, 5, '2016-08-11 07:56:07', 84, 539, 22.3999996, 48.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8591, 5, '2016-08-11 07:56:21', 97, 498, 22.3999996, 48.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8593, 5, '2016-08-11 07:56:36', 89, 544, 22.3999996, 48.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8595, 5, '2016-08-11 07:56:49', 87, 535, 22.3999996, 48.7999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8597, 5, '2016-08-11 07:57:04', 96, 528, 22.3999996, 48.7000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8627, 5, '2016-08-11 08:00:39', 87, 570, 22.2999992, 49, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8629, 5, '2016-08-11 08:00:53', 97, 552, 22.2999992, 49, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8631, 5, '2016-08-11 08:01:09', 97, 476, 22.2999992, 49, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8633, 5, '2016-08-11 08:01:24', 96, 547, 22.2999992, 49, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8635, 5, '2016-08-11 08:01:37', 98, 527, 22.2999992, 49, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8637, 5, '2016-08-11 08:01:58', 89, 545, 22.2999992, 49.0999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8639, 5, '2016-08-11 08:02:13', 89, 534, 22.2999992, 49.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8641, 5, '2016-08-11 08:02:27', 96, 532, 22.2999992, 49.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8643, 5, '2016-08-11 08:02:41', 98, 572, 22.2999992, 49.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8645, 5, '2016-08-11 08:02:56', 88, 521, 22.2999992, 49.0999985, 29186);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8647, 5, '2016-08-11 08:03:06', 99, 532, 22.2999992, 49.0999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8649, 2, '2016-08-11 08:03:10', 833, 488, 23, 45.0999985, 4616);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8651, 5, '2016-08-11 08:03:22', 99, 554, 22.2999992, 49.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8653, 5, '2016-08-11 08:03:39', 96, 538, 22.2999992, 49.0999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8655, 5, '2016-08-11 08:03:53', 98, 543, 22.2999992, 49.2000008, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8657, 5, '2016-08-11 08:04:07', 87, 499, 22.2999992, 49.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8659, 5, '2016-08-11 08:04:22', 98, 543, 22.2999992, 49.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8689, 5, '2016-08-11 08:07:57', 105, 552, 22.2999992, 49.4000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8691, 5, '2016-08-11 08:08:12', 103, 523, 22.2999992, 49.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8693, 5, '2016-08-11 08:08:26', 105, 516, 22.2999992, 49.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8695, 5, '2016-08-11 08:08:40', 100, 521, 22.2999992, 49.2999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8697, 5, '2016-08-11 08:08:54', 104, 521, 22.2999992, 49.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8699, 5, '2016-08-11 08:09:09', 104, 554, 22.2999992, 49.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8701, 5, '2016-08-11 08:09:23', 104, 541, 22.2000008, 49.4000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8703, 5, '2016-08-11 08:09:38', 103, 521, 22.2999992, 49.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8705, 5, '2016-08-11 08:09:52', 103, 556, 22.2000008, 49.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8707, 5, '2016-08-11 08:10:06', 104, 556, 22.2000008, 49.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8709, 5, '2016-08-11 08:10:20', 104, 527, 22.2000008, 49.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8713, 0, '2016-08-11 08:10:42', 272, 639, 21.8999996, 50.5999985, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8715, 5, '2016-08-11 08:10:56', 100, 489, 22.2000008, 49.5, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8717, 5, '2016-08-11 08:11:18', 101, 563, 22.2000008, 49.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8719, 5, '2016-08-11 08:11:26', 104, 559, 22.2000008, 49.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8721, 5, '2016-08-11 08:11:40', 104, 532, 22.2000008, 49.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8723, 5, '2016-08-11 08:11:54', 104, 545, 22.2000008, 49.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8725, 5, '2016-08-11 08:12:08', 104, 506, 22.2000008, 49.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8727, 5, '2016-08-11 08:12:22', 112, 512, 22.2000008, 49.5999985, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8729, 5, '2016-08-11 08:12:38', 113, 523, 22.2000008, 49.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8731, 5, '2016-08-11 08:12:52', 105, 554, 22.2000008, 49.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8733, 5, '2016-08-11 08:13:07', 103, 572, 22.2000008, 49.5999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8735, 5, '2016-08-11 08:13:20', 104, 554, 22.2000008, 49.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8737, 5, '2016-08-11 08:13:34', 105, 547, 22.2000008, 49.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8739, 5, '2016-08-11 08:13:49', 114, 547, 22.2000008, 49.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8741, 5, '2016-08-11 08:14:04', 116, 503, 22.2000008, 49.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8743, 5, '2016-08-11 08:14:18', 112, 541, 22.2000008, 49.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8787, 5, '2016-08-11 08:19:26', 118, 547, 22.2000008, 50, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8789, 5, '2016-08-11 08:19:41', 117, 511, 22.2000008, 50, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8791, 5, '2016-08-11 08:19:56', 115, 554, 22.1000004, 50, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8793, 5, '2016-08-11 08:20:10', 115, 558, 22.1000004, 50, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8795, 5, '2016-08-11 08:20:24', 115, 550, 22.1000004, 50, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8797, 5, '2016-08-11 08:20:39', 116, 534, 22.1000004, 50, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8813, 5, '2016-08-11 08:22:26', 105, 524, 22.1000004, 50.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8815, 5, '2016-08-11 08:22:41', 112, 536, 22.1000004, 50.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8817, 5, '2016-08-11 08:22:55', 113, 501, 22.1000004, 50.2000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8819, 5, '2016-08-11 08:23:10', 114, 550, 22.1000004, 50.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8821, 5, '2016-08-11 08:23:23', 104, 511, 22.1000004, 50.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8823, 5, '2016-08-11 08:23:38', 115, 515, 22.1000004, 50.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8829, 5, '2016-08-11 08:24:21', 113, 587, 22.1000004, 50.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8831, 5, '2016-08-11 08:24:35', 103, 550, 22.1000004, 50.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8849, 0, '2016-08-11 08:26:45', 306, 695, 22.1000004, 51.4000015, 2198);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8857, 5, '2016-08-11 08:27:49', 105, 522, 22.1000004, 50.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8859, 5, '2016-08-11 08:28:03', 105, 563, 22.1000004, 50.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8893, 5, '2016-08-11 08:32:15', 105, 513, 22.1000004, 50.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8432, 5, '2016-08-11 07:37:26', 72, 515, 22.6000004, 47.4000015, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8434, 5, '2016-08-11 07:37:41', 80, 513, 22.6000004, 47.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8436, 5, '2016-08-11 07:37:54', 70, 537, 22.5, 47.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8438, 5, '2016-08-11 07:38:09', 82, 539, 22.5, 47.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8440, 5, '2016-08-11 07:38:24', 81, 544, 22.5, 47.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8442, 5, '2016-08-11 07:38:38', 73, 494, 22.5, 47.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8444, 5, '2016-08-11 07:38:52', 81, 571, 22.5, 47.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8446, 5, '2016-08-11 07:39:07', 72, 528, 22.5, 47.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8448, 5, '2016-08-11 07:39:21', 80, 557, 22.5, 47.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8450, 5, '2016-08-11 07:39:36', 80, 517, 22.5, 47.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8452, 5, '2016-08-11 07:39:50', 81, 522, 22.5, 47.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8454, 5, '2016-08-11 07:40:04', 80, 548, 22.5, 47.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8456, 5, '2016-08-11 07:40:16', 82, 528, 22.5, 47.5, 32913);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8458, 5, '2016-08-11 07:40:26', 84, 555, 22.5, 47.5, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8460, 5, '2016-08-11 07:40:40', 83, 578, 22.5, 47.5999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8490, 5, '2016-08-11 07:44:22', 87, 541, 22.5, 47.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8492, 5, '2016-08-11 07:44:44', 82, 500, 22.5, 48, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8494, 5, '2016-08-11 07:44:59', 89, 535, 22.5, 48, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8496, 5, '2016-08-11 07:45:13', 89, 541, 22.5, 48, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8498, 3, '2016-08-11 07:45:21', 321, 562, 21.7999992, 48.7999992, 2400);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8500, 5, '2016-08-11 07:45:34', 87, 560, 22.5, 48, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8502, 5, '2016-08-11 07:45:48', 84, 544, 22.5, 48, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8504, 5, '2016-08-11 07:46:03', 87, 521, 22.5, 48, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8534, 5, '2016-08-11 07:49:38', 96, 535, 22.5, 48.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8536, 5, '2016-08-11 07:49:54', 97, 537, 22.5, 48.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8538, 5, '2016-08-11 07:50:07', 89, 546, 22.5, 48.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8540, 5, '2016-08-11 07:50:23', 85, 537, 22.5, 48.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8542, 5, '2016-08-11 07:50:44', 87, 541, 22.5, 48.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8544, 5, '2016-08-11 07:50:58', 89, 485, 22.5, 48.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8552, 1, '2016-08-11 07:51:50', 289, 532, 21.7000008, 47, 10263);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8554, 5, '2016-08-11 07:52:02', 96, 523, 22.3999996, 48.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8556, 5, '2016-08-11 07:52:17', 88, 532, 22.3999996, 48.4000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8558, 5, '2016-08-11 07:52:33', 96, 523, 22.3999996, 48.5, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8560, 5, '2016-08-11 07:52:46', 87, 510, 22.3999996, 48.5, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8562, 5, '2016-08-11 07:52:59', 89, 525, 22.3999996, 48.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8564, 5, '2016-08-11 07:53:14', 88, 535, 22.3999996, 48.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8566, 5, '2016-08-11 07:53:29', 89, 557, 22.3999996, 48.5, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8568, 5, '2016-08-11 07:53:43', 88, 548, 22.3999996, 48.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8570, 5, '2016-08-11 07:53:58', 96, 508, 22.3999996, 48.5999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8572, 5, '2016-08-11 07:54:12', 96, 537, 22.3999996, 48.5999985, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8574, 5, '2016-08-11 07:54:25', 96, 532, 22.3999996, 48.5999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8576, 5, '2016-08-11 07:54:41', 89, 532, 22.3999996, 48.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8578, 5, '2016-08-11 07:54:54', 85, 537, 22.3999996, 48.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8602, 5, '2016-08-11 07:57:39', 86, 495, 22.3999996, 48.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8604, 5, '2016-08-11 07:57:55', 88, 536, 22.3999996, 48.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8606, 5, '2016-08-11 07:58:11', 96, 518, 22.3999996, 48.9000015, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8608, 5, '2016-08-11 07:58:23', 85, 527, 22.3999996, 48.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8610, 5, '2016-08-11 07:58:40', 96, 519, 22.3999996, 48.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8612, 5, '2016-08-11 07:58:59', 89, 545, 22.3999996, 48.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8614, 5, '2016-08-11 07:59:13', 89, 521, 22.3999996, 48.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8616, 5, '2016-08-11 07:59:28', 87, 514, 22.2999992, 48.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8618, 5, '2016-08-11 07:59:43', 89, 539, 22.2999992, 48.9000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8620, 5, '2016-08-11 07:59:58', 89, 550, 22.2999992, 48.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8622, 5, '2016-08-11 08:00:11', 88, 532, 22.2999992, 48.9000015, 28962);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8624, 5, '2016-08-11 08:00:27', 96, 530, 22.2999992, 48.9000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8636, 5, '2016-08-11 08:01:51', 87, 523, 22.2999992, 49, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8638, 5, '2016-08-11 08:02:06', 89, 541, 22.2999992, 49.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8640, 5, '2016-08-11 08:02:19', 96, 556, 22.2999992, 49.0999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8642, 5, '2016-08-11 08:02:34', 96, 512, 22.2999992, 49.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8644, 5, '2016-08-11 08:02:49', 96, 538, 22.2999992, 49.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8646, 5, '2016-08-11 08:03:03', 98, 523, 22.2999992, 49.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8648, 2, '2016-08-11 08:03:07', 833, 488, 23, 45.0999985, 4616);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8650, 5, '2016-08-11 08:03:17', 99, 534, 22.2999992, 49.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8652, 5, '2016-08-11 08:03:31', 99, 550, 22.2999992, 49.0999985, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8654, 5, '2016-08-11 08:03:46', 96, 538, 22.2999992, 49.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8656, 5, '2016-08-11 08:04:01', 88, 586, 22.2999992, 49.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8658, 5, '2016-08-11 08:04:15', 96, 547, 22.2999992, 49.2000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8660, 5, '2016-08-11 08:04:28', 96, 508, 22.2999992, 49.2000008, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8662, 5, '2016-08-11 08:04:43', 97, 512, 22.2999992, 49.2000008, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8664, 5, '2016-08-11 08:04:58', 99, 556, 22.2999992, 49.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8666, 5, '2016-08-11 08:05:12', 89, 512, 22.2999992, 49.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8684, 5, '2016-08-11 08:07:21', 103, 572, 22.2999992, 49.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8686, 5, '2016-08-11 08:07:36', 104, 550, 22.2999992, 49.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8688, 5, '2016-08-11 08:07:50', 105, 538, 22.2999992, 49.2999992, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8690, 5, '2016-08-11 08:07:57', 113, 545, 22.2999992, 49.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8692, 5, '2016-08-11 08:08:18', 104, 568, 22.2999992, 49.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8694, 5, '2016-08-11 08:08:33', 101, 547, 22.2999992, 49.4000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8696, 5, '2016-08-11 08:08:48', 103, 541, 22.2999992, 49.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8698, 5, '2016-08-11 08:09:02', 102, 482, 22.2999992, 49.4000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8700, 5, '2016-08-11 08:09:17', 104, 508, 22.2999992, 49.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8702, 5, '2016-08-11 08:09:30', 105, 577, 22.2000008, 49.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8704, 5, '2016-08-11 08:09:45', 101, 577, 22.2999992, 49.4000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8706, 5, '2016-08-11 08:10:00', 104, 512, 22.2000008, 49.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8708, 5, '2016-08-11 08:10:14', 103, 556, 22.2000008, 49.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8710, 5, '2016-08-11 08:10:28', 102, 547, 22.2000008, 49.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8732, 5, '2016-08-11 08:12:59', 113, 545, 22.2000008, 49.5999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8734, 5, '2016-08-11 08:13:14', 103, 556, 22.2000008, 49.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8736, 5, '2016-08-11 08:13:29', 102, 474, 22.2000008, 49.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8738, 5, '2016-08-11 08:13:42', 103, 521, 22.2000008, 49.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8740, 5, '2016-08-11 08:13:56', 114, 497, 22.2000008, 49.7000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8742, 5, '2016-08-11 08:14:11', 115, 514, 22.2000008, 49.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8744, 5, '2016-08-11 08:14:25', 116, 523, 22.2000008, 49.7000008, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8746, 5, '2016-08-11 08:14:39', 116, 541, 22.2000008, 49.7000008, 33063);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8748, 5, '2016-08-11 08:14:54', 117, 554, 22.2000008, 49.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8750, 5, '2016-08-11 08:15:08', 116, 563, 22.2000008, 49.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8752, 5, '2016-08-11 08:15:17', 113, 536, 22.2000008, 49.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8754, 5, '2016-08-11 08:15:37', 114, 534, 22.2000008, 49.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8756, 3, '2016-08-11 08:15:44', 1040, 676, 21.8999996, 50.2000008, 1554);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8762, 5, '2016-08-11 08:16:28', 116, 550, 22.2000008, 49.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8764, 5, '2016-08-11 08:16:42', 116, 541, 22.2000008, 49.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8766, 5, '2016-08-11 08:16:55', 117, 518, 22.2000008, 49.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8768, 5, '2016-08-11 08:17:10', 118, 556, 22.2000008, 49.9000015, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8770, 5, '2016-08-11 08:17:24', 117, 507, 22.2000008, 49.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8772, 5, '2016-08-11 08:17:39', 112, 578, 22.2000008, 49.9000015, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8774, 5, '2016-08-11 08:17:54', 114, 520, 22.2000008, 49.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8776, 5, '2016-08-11 08:18:08', 114, 561, 22.2000008, 49.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8778, 5, '2016-08-11 08:18:18', 116, 565, 22.2000008, 49.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8433, 5, '2016-08-11 07:37:30', 72, 496, 22.6000004, 47.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8461, 5, '2016-08-11 07:40:48', 83, 544, 22.5, 47.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8463, 5, '2016-08-11 07:41:01', 83, 513, 22.5, 47.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8465, 5, '2016-08-11 07:41:17', 80, 531, 22.5, 47.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8467, 5, '2016-08-11 07:41:30', 82, 513, 22.5, 47.7000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8469, 5, '2016-08-11 07:41:44', 82, 555, 22.5, 47.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8471, 5, '2016-08-11 07:41:58', 85, 546, 22.5, 47.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8473, 5, '2016-08-11 07:42:13', 85, 517, 22.5, 47.7000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8475, 5, '2016-08-11 07:42:34', 81, 551, 22.5, 47.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8477, 5, '2016-08-11 07:42:50', 86, 500, 22.5, 47.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8479, 5, '2016-08-11 07:43:04', 87, 533, 22.5, 47.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8481, 5, '2016-08-11 07:43:18', 86, 551, 22.5, 47.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8483, 5, '2016-08-11 07:43:32', 83, 481, 22.5, 47.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8485, 5, '2016-08-11 07:43:47', 83, 526, 22.5, 47.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8487, 5, '2016-08-11 07:44:01', 84, 514, 22.5, 47.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8489, 5, '2016-08-11 07:44:16', 85, 510, 22.5, 47.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8491, 5, '2016-08-11 07:44:37', 88, 514, 22.5, 47.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8493, 5, '2016-08-11 07:44:53', 86, 546, 22.5, 48, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8495, 5, '2016-08-11 07:45:05', 88, 528, 22.5, 48, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8497, 5, '2016-08-11 07:45:21', 89, 528, 22.5, 48, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8499, 5, '2016-08-11 07:45:28', 86, 530, 22.5, 48, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8501, 5, '2016-08-11 07:45:42', 88, 541, 22.5, 48, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8503, 5, '2016-08-11 07:45:56', 85, 544, 22.5, 48, 33081);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8505, 5, '2016-08-11 07:46:10', 87, 519, 22.5, 48, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8507, 5, '2016-08-11 07:46:26', 86, 525, 22.5, 48, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8509, 5, '2016-08-11 07:46:39', 88, 600, 22.5, 48.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8511, 5, '2016-08-11 07:46:54', 87, 548, 22.5, 48.0999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8513, 5, '2016-08-11 07:47:08', 87, 537, 22.5, 48.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8515, 5, '2016-08-11 07:47:22', 89, 512, 22.5, 48.0999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8543, 5, '2016-08-11 07:50:50', 87, 532, 22.5, 48.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8545, 5, '2016-08-11 07:51:05', 89, 491, 22.5, 48.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8547, 5, '2016-08-11 07:51:19', 96, 555, 22.5, 48.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8549, 5, '2016-08-11 07:51:34', 86, 512, 22.5, 48.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8551, 5, '2016-08-11 07:51:44', 97, 502, 22.3999996, 48.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8553, 5, '2016-08-11 07:51:56', 89, 516, 22.3999996, 48.4000015, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8555, 5, '2016-08-11 07:52:10', 97, 502, 22.3999996, 48.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8557, 5, '2016-08-11 07:52:24', 89, 523, 22.3999996, 48.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8559, 5, '2016-08-11 07:52:38', 86, 528, 22.3999996, 48.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8561, 5, '2016-08-11 07:52:54', 88, 516, 22.3999996, 48.5, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8563, 5, '2016-08-11 07:53:08', 87, 535, 22.3999996, 48.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8565, 5, '2016-08-11 07:53:24', 89, 553, 22.3999996, 48.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8567, 5, '2016-08-11 07:53:36', 96, 523, 22.3999996, 48.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8569, 5, '2016-08-11 07:53:49', 86, 516, 22.3999996, 48.5999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8599, 5, '2016-08-11 07:57:18', 85, 516, 22.3999996, 48.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8601, 5, '2016-08-11 07:57:33', 88, 537, 22.3999996, 48.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8603, 5, '2016-08-11 07:57:48', 88, 559, 22.3999996, 48.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8605, 5, '2016-08-11 07:58:02', 88, 532, 22.3999996, 48.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8607, 5, '2016-08-11 07:58:17', 87, 541, 22.3999996, 48.9000015, 30983);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8609, 5, '2016-08-11 07:58:31', 89, 547, 22.3999996, 48.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8611, 5, '2016-08-11 07:58:51', 89, 539, 22.3999996, 48.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8613, 5, '2016-08-11 07:59:06', 89, 552, 22.3999996, 48.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8615, 5, '2016-08-11 07:59:21', 97, 554, 22.3999996, 48.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8617, 5, '2016-08-11 07:59:35', 88, 536, 22.2999992, 48.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8619, 5, '2016-08-11 07:59:49', 96, 516, 22.2999992, 48.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8621, 5, '2016-08-11 08:00:04', 96, 523, 22.2999992, 48.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8623, 5, '2016-08-11 08:00:18', 89, 536, 22.2999992, 48.9000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8625, 5, '2016-08-11 08:00:29', 89, 527, 22.2999992, 49, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8661, 5, '2016-08-11 08:04:36', 97, 538, 22.2999992, 49.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8663, 5, '2016-08-11 08:04:51', 97, 521, 22.2999992, 49.2000008, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8665, 5, '2016-08-11 08:05:04', 97, 577, 22.2999992, 49.2000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8667, 5, '2016-08-11 08:05:16', 100, 561, 22.2999992, 49.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8669, 5, '2016-08-11 08:05:34', 99, 512, 22.2999992, 49.2999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8671, 5, '2016-08-11 08:05:43', 102, 538, 22.2999992, 49.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8673, 5, '2016-08-11 08:06:02', 100, 579, 22.2999992, 49.2999992, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8675, 5, '2016-08-11 08:06:16', 99, 568, 22.2999992, 49.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8677, 5, '2016-08-11 08:06:30', 101, 521, 22.2999992, 49.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8679, 5, '2016-08-11 08:06:45', 102, 550, 22.2999992, 49.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8681, 5, '2016-08-11 08:06:55', 102, 521, 22.2999992, 49.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8683, 5, '2016-08-11 08:07:14', 104, 552, 22.2999992, 49.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8685, 5, '2016-08-11 08:07:28', 100, 554, 22.2999992, 49.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8687, 5, '2016-08-11 08:07:42', 112, 552, 22.2999992, 49.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8711, 5, '2016-08-11 08:10:35', 103, 534, 22.2000008, 49.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8745, 5, '2016-08-11 08:14:33', 115, 523, 22.2000008, 49.7000008, 32885);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8747, 5, '2016-08-11 08:14:43', 115, 545, 22.2000008, 49.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8749, 5, '2016-08-11 08:15:01', 116, 541, 22.2000008, 49.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8751, 5, '2016-08-11 08:15:16', 117, 514, 22.2000008, 49.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8753, 5, '2016-08-11 08:15:30', 113, 484, 22.2000008, 49.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8755, 5, '2016-08-11 08:15:39', 117, 550, 22.2000008, 49.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8757, 5, '2016-08-11 08:15:51', 115, 530, 22.2000008, 49.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8759, 5, '2016-08-11 08:16:06', 116, 527, 22.2000008, 49.7999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8761, 5, '2016-08-11 08:16:20', 117, 587, 22.2000008, 49.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8763, 5, '2016-08-11 08:16:35', 113, 521, 22.2000008, 49.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8765, 5, '2016-08-11 08:16:51', 118, 534, 22.2000008, 49.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8767, 5, '2016-08-11 08:17:03', 115, 545, 22.2000008, 49.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8769, 5, '2016-08-11 08:17:17', 116, 567, 22.2000008, 49.9000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8771, 5, '2016-08-11 08:17:31', 117, 563, 22.2000008, 49.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8773, 5, '2016-08-11 08:17:46', 114, 534, 22.2000008, 49.9000015, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8775, 5, '2016-08-11 08:18:00', 116, 520, 22.2000008, 49.9000015, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8777, 5, '2016-08-11 08:18:15', 116, 552, 22.2000008, 49.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8779, 2, '2016-08-11 08:18:22', 1430, 524, 23.2000008, 45.4000015, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8781, 5, '2016-08-11 08:18:36', 118, 527, 22.2000008, 49.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8783, 5, '2016-08-11 08:18:52', 113, 540, 22.2000008, 50, 31061);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8785, 5, '2016-08-11 08:19:06', 119, 543, 22.2000008, 50, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8799, 5, '2016-08-11 08:20:53', 117, 550, 22.1000004, 50, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8801, 5, '2016-08-11 08:21:08', 113, 538, 22.1000004, 50, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8803, 5, '2016-08-11 08:21:21', 117, 552, 22.1000004, 50, 29784);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8805, 5, '2016-08-11 08:21:31', 116, 561, 22.1000004, 50.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8807, 5, '2016-08-11 08:21:49', 114, 520, 22.1000004, 50.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8809, 5, '2016-08-11 08:22:05', 115, 538, 22.1000004, 50.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8811, 1, '2016-08-11 08:22:12', 308, 551, 21.7999992, 47.5999985, 4704);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8825, 5, '2016-08-11 08:23:53', 112, 547, 22.1000004, 50.2000008, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8827, 5, '2016-08-11 08:24:08', 113, 520, 22.1000004, 50.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8833, 5, '2016-08-11 08:24:50', 114, 536, 22.1000004, 50.2999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8835, 5, '2016-08-11 08:25:04', 105, 576, 22.1000004, 50.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8837, 5, '2016-08-11 08:25:20', 112, 488, 22.1000004, 50.2999992, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8839, 5, '2016-08-11 08:25:40', 103, 515, 22.1000004, 50.2999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8841, 5, '2016-08-11 08:25:55', 113, 529, 22.1000004, 50.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8780, 5, '2016-08-11 08:18:30', 116, 540, 22.2000008, 49.9000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8782, 5, '2016-08-11 08:18:47', 117, 515, 22.2000008, 50, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8784, 5, '2016-08-11 08:18:58', 117, 536, 22.2000008, 50, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8786, 5, '2016-08-11 08:19:23', 117, 552, 22.2000008, 50, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8828, 5, '2016-08-11 08:24:14', 113, 552, 22.1000004, 50.2999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8830, 5, '2016-08-11 08:24:28', 103, 543, 22.1000004, 50.2999992, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8832, 5, '2016-08-11 08:24:43', 105, 587, 22.1000004, 50.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8834, 5, '2016-08-11 08:24:57', 103, 550, 22.1000004, 50.2999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8836, 5, '2016-08-11 08:25:11', 112, 552, 22.1000004, 50.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8838, 5, '2016-08-11 08:25:33', 105, 507, 22.1000004, 50.2999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8840, 5, '2016-08-11 08:25:47', 113, 552, 22.1000004, 50.2999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8842, 5, '2016-08-11 08:26:01', 114, 552, 22.1000004, 50.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8844, 5, '2016-08-11 08:26:16', 113, 552, 22.1000004, 50.2999992, 29328);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8848, 5, '2016-08-11 08:26:37', 103, 540, 22.1000004, 50.2999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8850, 5, '2016-08-11 08:26:59', 103, 547, 22.1000004, 50.4000015, 31033);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8852, 5, '2016-08-11 08:27:14', 103, 515, 22.1000004, 50.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8854, 5, '2016-08-11 08:27:27', 112, 576, 22.1000004, 50.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8856, 5, '2016-08-11 08:27:43', 113, 527, 22.1000004, 50.4000015, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8874, 5, '2016-08-11 08:29:51', 103, 529, 22.1000004, 50.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8876, 5, '2016-08-11 08:30:13', 104, 558, 22.1000004, 50.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8878, 5, '2016-08-11 08:30:27', 105, 545, 22.1000004, 50.5, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8908, 5, '2016-08-11 08:33:53', 105, 515, 22, 50.5999985, 30979);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8910, 2, '2016-08-11 08:33:55', 869, 548, 23.2999992, 45.2999992, 13584);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8912, 5, '2016-08-11 08:34:10', 103, 544, 22, 50.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8914, 5, '2016-08-11 08:34:25', 105, 527, 22, 50.5999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8916, 5, '2016-08-11 08:34:39', 103, 490, 22, 50.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8918, 5, '2016-08-11 08:34:53', 104, 522, 22, 50.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8924, 5, '2016-08-11 08:35:44', 112, 503, 22, 50.5999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8926, 5, '2016-08-11 08:35:58', 103, 580, 22, 50.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8928, 5, '2016-08-11 08:36:12', 113, 515, 22, 50.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8930, 5, '2016-08-11 08:36:27', 105, 526, 22, 50.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8932, 5, '2016-08-11 08:36:40', 112, 562, 22, 50.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8936, 5, '2016-08-11 08:37:10', 104, 505, 22, 50.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8938, 5, '2016-08-11 08:37:16', 113, 553, 22, 50.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8942, 5, '2016-08-11 08:37:45', 104, 509, 22, 50.7000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8944, 5, '2016-08-11 08:38:01', 114, 567, 22, 50.7000008, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8950, 5, '2016-08-11 08:38:42', 112, 531, 22, 50.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8952, 5, '2016-08-11 08:38:57', 114, 517, 22, 50.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8954, 5, '2016-08-11 08:39:12', 112, 507, 22, 50.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8958, 5, '2016-08-11 08:39:39', 115, 553, 22, 50.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8960, 5, '2016-08-11 08:39:54', 117, 531, 22, 50.7999992, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8974, 5, '2016-08-11 08:41:42', 112, 494, 22, 50.9000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8976, 0, '2016-08-11 08:41:49', 296, 727, 22.2000008, 50.2999992, 4448);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8978, 5, '2016-08-11 08:41:52', 117, 529, 22, 50.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8980, 5, '2016-08-11 08:42:12', 117, 533, 22, 50.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8982, 5, '2016-08-11 08:42:28', 116, 555, 22, 50.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8986, 5, '2016-08-11 08:42:54', 113, 540, 22, 50.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8988, 5, '2016-08-11 08:43:08', 112, 540, 22, 50.9000015, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8990, 5, '2016-08-11 08:43:23', 115, 567, 22, 50.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8992, 5, '2016-08-11 08:43:38', 118, 535, 22, 51, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8994, 5, '2016-08-11 08:43:52', 114, 511, 22, 51, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8996, 5, '2016-08-11 08:44:06', 119, 533, 22, 51, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8998, 5, '2016-08-11 08:44:20', 118, 555, 22, 51, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9000, 5, '2016-08-11 08:44:35', 118, 522, 22, 51, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9002, 5, '2016-08-11 08:44:49', 130, 551, 22, 51, 29574);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9004, 5, '2016-08-11 08:45:02', 120, 537, 22, 51, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9006, 5, '2016-08-11 08:45:21', 130, 531, 22, 51, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9008, 5, '2016-08-11 08:45:32', 131, 567, 22, 51, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9010, 5, '2016-08-11 08:45:46', 131, 526, 22, 51.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9012, 5, '2016-08-11 08:46:00', 133, 540, 22, 51.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9042, 5, '2016-08-11 08:49:22', 151, 529, 22, 51.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9044, 5, '2016-08-11 08:49:36', 146, 567, 21.8999996, 51.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9046, 5, '2016-08-11 08:49:54', 148, 542, 21.8999996, 51.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9048, 5, '2016-08-11 08:50:12', 151, 517, 21.8999996, 51.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9050, 5, '2016-08-11 08:50:27', 150, 524, 21.8999996, 51.2000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9052, 5, '2016-08-11 08:50:42', 144, 517, 21.8999996, 51.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9068, 1, '2016-08-11 08:52:32', 633, 657, 22, 48.2000008, 4242);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9070, 5, '2016-08-11 08:52:44', 148, 574, 21.8999996, 51.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9072, 5, '2016-08-11 08:52:55', 137, 551, 21.8999996, 51.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9074, 5, '2016-08-11 08:53:12', 148, 529, 21.8999996, 51.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9076, 5, '2016-08-11 08:53:27', 147, 505, 21.8999996, 51.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9078, 5, '2016-08-11 08:53:41', 145, 546, 21.8999996, 51.2999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9080, 5, '2016-08-11 08:53:58', 137, 517, 21.8999996, 51.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9082, 5, '2016-08-11 08:54:18', 136, 553, 21.8999996, 51.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9098, 5, '2016-08-11 08:56:05', 134, 535, 21.8999996, 51.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9100, 5, '2016-08-11 08:56:26', 129, 522, 21.8999996, 51.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9102, 5, '2016-08-11 08:56:40', 135, 531, 21.8999996, 51.5, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9104, 5, '2016-08-11 08:56:55', 133, 517, 21.8999996, 51.5, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9106, 0, '2016-08-11 08:57:02', 292, 801, 21.7999992, 50.7999992, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9108, 5, '2016-08-11 08:57:17', 134, 526, 21.8999996, 51.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9110, 5, '2016-08-11 08:57:31', 130, 546, 21.8999996, 51.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9112, 5, '2016-08-11 08:57:45', 132, 531, 21.8999996, 51.5, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9114, 5, '2016-08-11 08:58:07', 134, 557, 21.8999996, 51.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9116, 5, '2016-08-11 08:58:23', 130, 531, 21.8999996, 51.5999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9118, 5, '2016-08-11 08:58:30', 121, 551, 21.8999996, 51.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9120, 5, '2016-08-11 08:58:48', 128, 511, 21.8999996, 51.5999985, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9122, 5, '2016-08-11 08:59:13', 129, 517, 21.8999996, 51.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9124, 5, '2016-08-11 08:59:25', 121, 505, 21.8999996, 51.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9154, 5, '2016-08-11 09:03:04', 116, 531, 21.8999996, 51.7999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9156, 5, '2016-08-11 09:03:15', 113, 544, 21.8999996, 51.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9158, 5, '2016-08-11 09:03:28', 114, 560, 21.8999996, 51.7999992, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9160, 5, '2016-08-11 09:03:44', 113, 553, 21.8999996, 51.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9166, 2, '2016-08-11 09:04:17', 1400, 556, 23.7000008, 45.2999992, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9174, 5, '2016-08-11 09:05:10', 112, 522, 21.8999996, 51.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9176, 5, '2016-08-11 09:05:25', 102, 513, 21.8999996, 51.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9178, 5, '2016-08-11 09:05:35', 102, 560, 21.8999996, 51.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9180, 5, '2016-08-11 09:05:53', 103, 544, 21.8999996, 51.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9182, 5, '2016-08-11 09:06:14', 105, 524, 21.8999996, 51.9000015, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9190, 5, '2016-08-11 09:07:13', 116, 537, 21.8999996, 52, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9192, 5, '2016-08-11 09:07:26', 117, 540, 21.8999996, 52, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9194, 5, '2016-08-11 09:07:38', 115, 573, 21.8999996, 52, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9196, 5, '2016-08-11 09:07:42', 115, 533, 21.8999996, 52, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8843, 5, '2016-08-11 08:26:09', 112, 531, 22.1000004, 50.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8845, 5, '2016-08-11 08:26:24', 105, 565, 22.1000004, 50.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8847, 5, '2016-08-11 08:26:37', 113, 531, 22.1000004, 50.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8851, 5, '2016-08-11 08:27:07', 112, 536, 22.1000004, 50.4000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8853, 5, '2016-08-11 08:27:20', 112, 538, 22.1000004, 50.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8855, 5, '2016-08-11 08:27:35', 112, 536, 22.1000004, 50.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8861, 5, '2016-08-11 08:28:17', 113, 505, 22.1000004, 50.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8863, 5, '2016-08-11 08:28:33', 114, 545, 22.1000004, 50.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8865, 5, '2016-08-11 08:28:47', 105, 529, 22.1000004, 50.4000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8867, 5, '2016-08-11 08:29:01', 103, 538, 22.1000004, 50.4000015, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8869, 5, '2016-08-11 08:29:15', 104, 478, 22.1000004, 50.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8871, 5, '2016-08-11 08:29:29', 101, 567, 22.1000004, 50.4000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8873, 5, '2016-08-11 08:29:47', 105, 486, 22.1000004, 50.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8875, 5, '2016-08-11 08:29:59', 113, 497, 22.1000004, 50.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8877, 5, '2016-08-11 08:30:20', 104, 543, 22.1000004, 50.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8879, 5, '2016-08-11 08:30:35', 112, 520, 22.1000004, 50.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8881, 5, '2016-08-11 08:30:48', 105, 515, 22.1000004, 50.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8883, 3, '2016-08-11 08:30:57', 1315, 712, 22.2000008, 50.7000008, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8885, 5, '2016-08-11 08:31:11', 105, 550, 22.1000004, 50.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8887, 5, '2016-08-11 08:31:32', 102, 543, 22.1000004, 50.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8889, 5, '2016-08-11 08:31:49', 103, 494, 22.1000004, 50.5, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8891, 5, '2016-08-11 08:32:01', 103, 543, 22.1000004, 50.5999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8905, 2, '2016-08-11 08:33:34', 869, 548, 23.2999992, 45.2999992, 13584);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8907, 5, '2016-08-11 08:33:51', 103, 543, 22, 50.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8909, 2, '2016-08-11 08:33:54', 869, 548, 23.2999992, 45.2999992, 13584);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8911, 5, '2016-08-11 08:34:04', 102, 547, 22, 50.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8913, 5, '2016-08-11 08:34:17', 103, 542, 22, 50.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8915, 5, '2016-08-11 08:34:31', 104, 531, 22, 50.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8917, 5, '2016-08-11 08:34:46', 101, 552, 22, 50.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8919, 5, '2016-08-11 08:35:01', 112, 585, 22, 50.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8921, 5, '2016-08-11 08:35:15', 104, 552, 22, 50.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8929, 5, '2016-08-11 08:36:19', 104, 517, 22, 50.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8931, 5, '2016-08-11 08:36:33', 112, 515, 22, 50.7000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8933, 5, '2016-08-11 08:36:48', 113, 513, 22, 50.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8935, 5, '2016-08-11 08:37:03', 100, 551, 22, 50.7000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8937, 5, '2016-08-11 08:37:16', 112, 558, 22, 50.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8939, 1, '2016-08-11 08:37:25', 372, 594, 21.8999996, 47.9000015, 2368);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8941, 5, '2016-08-11 08:37:39', 113, 535, 22, 50.7000008, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8943, 5, '2016-08-11 08:37:52', 112, 542, 22, 50.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8945, 5, '2016-08-11 08:38:07', 103, 520, 22, 50.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8947, 5, '2016-08-11 08:38:22', 105, 520, 22, 50.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8973, 5, '2016-08-11 08:41:29', 116, 537, 22, 50.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8979, 5, '2016-08-11 08:42:05', 116, 520, 22, 50.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8981, 5, '2016-08-11 08:42:18', 116, 553, 22, 50.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8983, 5, '2016-08-11 08:42:32', 118, 497, 22, 50.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8985, 5, '2016-08-11 08:42:48', 112, 540, 22, 50.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8987, 5, '2016-08-11 08:42:56', 116, 546, 22, 50.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8989, 5, '2016-08-11 08:43:17', 115, 531, 22, 50.9000015, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8991, 5, '2016-08-11 08:43:30', 115, 540, 22, 50.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8993, 5, '2016-08-11 08:43:44', 116, 522, 22, 51, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8995, 5, '2016-08-11 08:43:59', 117, 513, 22, 51, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8997, 5, '2016-08-11 08:44:14', 120, 537, 22, 51, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8999, 5, '2016-08-11 08:44:29', 120, 517, 22, 51, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9013, 3, '2016-08-11 08:46:02', 1331, 815, 22.2999992, 49.2999992, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9015, 5, '2016-08-11 08:46:16', 135, 513, 22, 51.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9017, 5, '2016-08-11 08:46:30', 136, 546, 22, 51.0999985, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9035, 5, '2016-08-11 08:48:43', 147, 526, 22, 51.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9037, 5, '2016-08-11 08:49:01', 137, 560, 21.8999996, 51.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9039, 2, '2016-08-11 08:49:05', 1313, 534, 23.5, 45.2000008, 5641);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9041, 5, '2016-08-11 08:49:17', 149, 531, 21.8999996, 51.2000008, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9043, 5, '2016-08-11 08:49:30', 147, 540, 21.8999996, 51.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9045, 5, '2016-08-11 08:49:51', 148, 501, 21.8999996, 51.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9047, 5, '2016-08-11 08:50:06', 150, 517, 21.8999996, 51.2000008, 30979);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9049, 5, '2016-08-11 08:50:20', 147, 549, 21.8999996, 51.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9057, 5, '2016-08-11 08:51:17', 150, 551, 21.8999996, 51.2999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9059, 5, '2016-08-11 08:51:32', 149, 537, 21.8999996, 51.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9061, 5, '2016-08-11 08:51:47', 145, 517, 21.8999996, 51.2999992, 29762);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9063, 5, '2016-08-11 08:52:00', 146, 533, 21.8999996, 51.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9065, 5, '2016-08-11 08:52:15', 146, 546, 21.8999996, 51.2999992, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9067, 5, '2016-08-11 08:52:28', 147, 529, 21.8999996, 51.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9075, 5, '2016-08-11 08:53:19', 148, 546, 21.8999996, 51.2999992, 30983);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9077, 5, '2016-08-11 08:53:33', 150, 540, 21.8999996, 51.2999992, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9079, 5, '2016-08-11 08:53:56', 147, 535, 21.8999996, 51.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9081, 5, '2016-08-11 08:54:10', 135, 560, 21.8999996, 51.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9083, 5, '2016-08-11 08:54:24', 144, 520, 21.8999996, 51.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9085, 5, '2016-08-11 08:54:38', 137, 529, 21.8999996, 51.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9087, 5, '2016-08-11 08:54:53', 137, 511, 21.8999996, 51.4000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9089, 5, '2016-08-11 08:55:02', 136, 502, 21.8999996, 51.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9105, 5, '2016-08-11 08:56:59', 133, 542, 21.8999996, 51.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9107, 5, '2016-08-11 08:57:08', 133, 520, 21.8999996, 51.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9111, 5, '2016-08-11 08:57:37', 133, 531, 21.8999996, 51.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9113, 5, '2016-08-11 08:57:47', 133, 537, 21.8999996, 51.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9115, 5, '2016-08-11 08:58:07', 129, 557, 21.8999996, 51.5999985, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9117, 5, '2016-08-11 08:58:28', 131, 533, 21.8999996, 51.5999985, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9119, 5, '2016-08-11 08:58:41', 120, 520, 21.8999996, 51.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9139, 5, '2016-08-11 09:01:11', 117, 544, 21.8999996, 51.7000008, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9141, 5, '2016-08-11 09:01:21', 116, 517, 21.8999996, 51.7000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9143, 5, '2016-08-11 09:01:35', 117, 526, 21.8999996, 51.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9155, 5, '2016-08-11 09:03:08', 112, 513, 21.8999996, 51.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9163, 5, '2016-08-11 09:04:05', 116, 535, 21.8999996, 51.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9169, 5, '2016-08-11 09:04:31', 112, 589, 21.8999996, 51.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9171, 5, '2016-08-11 09:04:49', 112, 496, 21.8999996, 51.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9173, 5, '2016-08-11 09:05:03', 104, 531, 21.8999996, 51.7999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9175, 5, '2016-08-11 09:05:17', 113, 515, 21.8999996, 51.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9181, 5, '2016-08-11 09:06:08', 104, 575, 21.8999996, 51.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9185, 5, '2016-08-11 09:06:37', 103, 555, 21.8999996, 52, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9187, 5, '2016-08-11 09:06:50', 112, 537, 21.8999996, 52, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9191, 5, '2016-08-11 09:07:20', 116, 522, 21.8999996, 52, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9193, 5, '2016-08-11 09:07:34', 119, 542, 21.8999996, 52, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9195, 1, '2016-08-11 09:07:40', 306, 846, 22.1000004, 48.7999992, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9197, 5, '2016-08-11 09:07:55', 118, 513, 21.8999996, 52, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9199, 5, '2016-08-11 09:08:16', 120, 511, 21.8999996, 52, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8892, 5, '2016-08-11 08:32:09', 102, 543, 22.1000004, 50.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8894, 5, '2016-08-11 08:32:23', 103, 540, 22, 50.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8896, 5, '2016-08-11 08:32:37', 103, 543, 22.1000004, 50.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8898, 5, '2016-08-11 08:32:45', 104, 513, 22.1000004, 50.5999985, 29524);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8900, 5, '2016-08-11 08:33:05', 104, 511, 22.1000004, 50.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8902, 5, '2016-08-11 08:33:20', 104, 547, 22, 50.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8904, 2, '2016-08-11 08:33:30', 869, 548, 23.2999992, 45.2999992, 13584);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8906, 5, '2016-08-11 08:33:41', 100, 556, 22, 50.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8920, 5, '2016-08-11 08:35:07', 105, 563, 22, 50.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8922, 5, '2016-08-11 08:35:21', 112, 518, 22, 50.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8934, 5, '2016-08-11 08:36:55', 104, 509, 22, 50.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8940, 5, '2016-08-11 08:37:31', 105, 537, 22, 50.7000008, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8946, 5, '2016-08-11 08:38:15', 104, 517, 22, 50.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8948, 5, '2016-08-11 08:38:27', 113, 560, 22, 50.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8956, 5, '2016-08-11 08:39:26', 114, 509, 22, 50.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8962, 5, '2016-08-11 08:40:09', 115, 526, 22, 50.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8964, 5, '2016-08-11 08:40:23', 105, 509, 22, 50.7999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8966, 5, '2016-08-11 08:40:37', 114, 522, 22, 50.7999992, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8968, 5, '2016-08-11 08:40:49', 113, 567, 22, 50.7999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8970, 5, '2016-08-11 08:41:06', 115, 513, 22, 50.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8972, 5, '2016-08-11 08:41:21', 114, 524, 22, 50.9000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8984, 5, '2016-08-11 08:42:40', 112, 522, 22, 50.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9014, 5, '2016-08-11 08:46:06', 131, 515, 22, 51.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9016, 5, '2016-08-11 08:46:22', 135, 488, 22, 51.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9018, 5, '2016-08-11 08:46:37', 135, 546, 22, 51.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9020, 5, '2016-08-11 08:46:52', 134, 531, 22, 51.0999985, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9022, 5, '2016-08-11 08:47:06', 144, 488, 22, 51.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9024, 5, '2016-08-11 08:47:20', 135, 555, 22, 51.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9026, 5, '2016-08-11 08:47:35', 144, 544, 22, 51.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9028, 5, '2016-08-11 08:47:56', 145, 531, 22, 51.0999985, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9030, 5, '2016-08-11 08:48:10', 146, 529, 22, 51.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9032, 5, '2016-08-11 08:48:25', 135, 497, 22, 51.0999985, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9034, 5, '2016-08-11 08:48:37', 147, 535, 22, 51.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9036, 5, '2016-08-11 08:48:54', 145, 562, 22, 51.2000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9038, 5, '2016-08-11 08:49:04', 145, 542, 22, 51.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9040, 2, '2016-08-11 08:49:08', 1313, 534, 23.5, 45.2000008, 5641);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9054, 5, '2016-08-11 08:50:58', 147, 555, 21.8999996, 51.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9056, 5, '2016-08-11 08:51:11', 148, 537, 21.8999996, 51.2000008, 28816);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9058, 5, '2016-08-11 08:51:24', 147, 522, 21.8999996, 51.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9060, 5, '2016-08-11 08:51:38', 151, 522, 21.8999996, 51.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9062, 5, '2016-08-11 08:51:52', 145, 529, 21.8999996, 51.2999992, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9064, 5, '2016-08-11 08:52:08', 148, 524, 21.8999996, 51.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9066, 5, '2016-08-11 08:52:21', 148, 560, 21.8999996, 51.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9084, 5, '2016-08-11 08:54:31', 136, 531, 21.8999996, 51.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9086, 5, '2016-08-11 08:54:46', 136, 535, 21.8999996, 51.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9088, 5, '2016-08-11 08:54:59', 144, 546, 21.8999996, 51.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9090, 5, '2016-08-11 08:55:14', 132, 526, 21.8999996, 51.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9092, 5, '2016-08-11 08:55:25', 135, 594, 21.8999996, 51.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9094, 5, '2016-08-11 08:55:43', 133, 544, 21.8999996, 51.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9096, 5, '2016-08-11 08:55:57', 133, 549, 21.8999996, 51.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9126, 5, '2016-08-11 08:59:39', 121, 544, 21.8999996, 51.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9128, 5, '2016-08-11 08:59:54', 129, 591, 21.8999996, 51.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9130, 5, '2016-08-11 09:00:09', 119, 537, 21.8999996, 51.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9132, 5, '2016-08-11 09:00:18', 121, 513, 21.8999996, 51.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9134, 5, '2016-08-11 09:00:37', 120, 564, 21.8999996, 51.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9136, 5, '2016-08-11 09:00:51', 116, 551, 21.8999996, 51.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9138, 5, '2016-08-11 09:01:07', 118, 502, 21.8999996, 51.7000008, 29520);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9140, 3, '2016-08-11 09:01:13', 1377, 845, 22.1000004, 49.7999992, 13122);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9142, 5, '2016-08-11 09:01:22', 118, 555, 21.8999996, 51.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9144, 5, '2016-08-11 09:01:42', 117, 526, 21.8999996, 51.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9146, 5, '2016-08-11 09:02:04', 116, 535, 21.8999996, 51.7000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9148, 5, '2016-08-11 09:02:19', 115, 531, 21.8999996, 51.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9150, 5, '2016-08-11 09:02:25', 115, 522, 21.8999996, 51.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9152, 5, '2016-08-11 09:02:49', 115, 513, 21.8999996, 51.7999992, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9162, 5, '2016-08-11 09:03:59', 114, 511, 21.8999996, 51.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9164, 5, '2016-08-11 09:04:13', 113, 560, 21.8999996, 51.7999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9168, 5, '2016-08-11 09:04:27', 114, 522, 21.8999996, 51.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9170, 5, '2016-08-11 09:04:41', 114, 533, 21.8999996, 51.7999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9172, 5, '2016-08-11 09:04:55', 114, 529, 21.8999996, 51.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9184, 5, '2016-08-11 09:06:29', 105, 517, 21.8999996, 52, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9186, 5, '2016-08-11 09:06:38', 112, 555, 21.8999996, 52, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9188, 5, '2016-08-11 09:06:51', 114, 557, 21.8999996, 52, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9198, 5, '2016-08-11 09:08:10', 120, 533, 21.8999996, 52, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8895, 5, '2016-08-11 08:32:29', 99, 543, 22.1000004, 50.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8897, 5, '2016-08-11 08:32:44', 104, 567, 22.1000004, 50.5999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8899, 5, '2016-08-11 08:32:58', 102, 534, 22, 50.5999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8901, 5, '2016-08-11 08:33:13', 102, 552, 22.1000004, 50.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8903, 5, '2016-08-11 08:33:28', 104, 538, 22, 50.5999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8923, 5, '2016-08-11 08:35:36', 104, 499, 22, 50.5999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8925, 5, '2016-08-11 08:35:51', 102, 524, 22, 50.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8927, 5, '2016-08-11 08:36:04', 104, 544, 22, 50.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8949, 5, '2016-08-11 08:38:28', 105, 509, 22, 50.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8951, 5, '2016-08-11 08:38:50', 113, 549, 22, 50.7000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8953, 5, '2016-08-11 08:39:04', 114, 560, 22, 50.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8955, 5, '2016-08-11 08:39:19', 105, 542, 22, 50.7999992, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8957, 5, '2016-08-11 08:39:33', 114, 526, 22, 50.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8959, 5, '2016-08-11 08:39:46', 113, 526, 22, 50.7999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8961, 5, '2016-08-11 08:40:02', 113, 509, 22, 50.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8963, 5, '2016-08-11 08:40:16', 113, 537, 22, 50.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8965, 5, '2016-08-11 08:40:30', 112, 540, 22, 50.7999992, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8967, 5, '2016-08-11 08:40:46', 114, 540, 22, 50.7999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8969, 5, '2016-08-11 08:40:59', 114, 535, 22, 50.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8971, 5, '2016-08-11 08:41:14', 115, 513, 22, 50.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8975, 5, '2016-08-11 08:41:46', 113, 544, 22, 50.9000015, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (8977, 0, '2016-08-11 08:41:50', 296, 727, 22.2000008, 50.2999992, 4448);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9001, 5, '2016-08-11 08:44:42', 120, 513, 22, 51, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9003, 5, '2016-08-11 08:44:56', 120, 505, 22, 51, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9005, 5, '2016-08-11 08:45:10', 121, 542, 22, 51, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9007, 5, '2016-08-11 08:45:23', 128, 553, 22, 51, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9009, 5, '2016-08-11 08:45:40', 132, 522, 22, 51, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9011, 5, '2016-08-11 08:45:54', 129, 564, 22, 51.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9019, 5, '2016-08-11 08:46:44', 136, 511, 22, 51.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9021, 5, '2016-08-11 08:46:58', 136, 537, 22, 51.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9023, 5, '2016-08-11 08:47:09', 134, 524, 22, 51.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9025, 5, '2016-08-11 08:47:28', 134, 546, 22, 51.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9027, 5, '2016-08-11 08:47:49', 136, 501, 22, 51.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9029, 5, '2016-08-11 08:48:04', 145, 553, 22, 51.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9031, 5, '2016-08-11 08:48:12', 145, 520, 21.8999996, 51.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9033, 5, '2016-08-11 08:48:31', 146, 542, 21.8999996, 51.2000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9051, 5, '2016-08-11 08:50:35', 150, 540, 21.8999996, 51.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9053, 5, '2016-08-11 08:50:46', 149, 511, 21.8999996, 51.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9055, 5, '2016-08-11 08:51:03', 149, 517, 21.8999996, 51.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9069, 5, '2016-08-11 08:52:36', 146, 515, 21.8999996, 51.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9071, 5, '2016-08-11 08:52:51', 145, 513, 21.8999996, 51.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9073, 5, '2016-08-11 08:53:05', 149, 507, 21.8999996, 51.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9091, 5, '2016-08-11 08:55:21', 136, 535, 21.8999996, 51.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9093, 5, '2016-08-11 08:55:35', 136, 544, 21.8999996, 51.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9095, 5, '2016-08-11 08:55:49', 136, 529, 21.8999996, 51.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9097, 5, '2016-08-11 08:56:05', 131, 526, 21.8999996, 51.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9099, 5, '2016-08-11 08:56:21', 120, 511, 21.8999996, 51.5, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9101, 5, '2016-08-11 08:56:33', 132, 542, 21.8999996, 51.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9103, 5, '2016-08-11 08:56:47', 133, 533, 21.8999996, 51.5, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9109, 5, '2016-08-11 08:57:23', 134, 515, 21.8999996, 51.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9121, 5, '2016-08-11 08:59:04', 120, 522, 21.8999996, 51.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9123, 5, '2016-08-11 08:59:15', 129, 507, 21.8999996, 51.5999985, 32913);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9125, 5, '2016-08-11 08:59:33', 128, 544, 21.8999996, 51.5999985, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9127, 5, '2016-08-11 08:59:47', 117, 531, 21.8999996, 51.5999985, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9129, 5, '2016-08-11 09:00:01', 120, 544, 21.8999996, 51.5999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9131, 5, '2016-08-11 09:00:15', 120, 544, 21.8999996, 51.5999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9133, 5, '2016-08-11 09:00:30', 120, 542, 21.8999996, 51.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9135, 5, '2016-08-11 09:00:45', 121, 542, 21.8999996, 51.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9137, 5, '2016-08-11 09:01:00', 117, 544, 21.8999996, 51.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9145, 5, '2016-08-11 09:01:49', 118, 544, 21.8999996, 51.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9147, 5, '2016-08-11 09:02:11', 118, 553, 21.8999996, 51.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9149, 5, '2016-08-11 09:02:25', 117, 544, 21.8999996, 51.7999992, 29712);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9151, 5, '2016-08-11 09:02:40', 118, 551, 21.8999996, 51.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9153, 5, '2016-08-11 09:02:53', 116, 544, 21.8999996, 51.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9157, 5, '2016-08-11 09:03:23', 114, 509, 21.8999996, 51.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9159, 5, '2016-08-11 09:03:37', 112, 542, 21.8999996, 51.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9161, 5, '2016-08-11 09:03:51', 112, 515, 21.8999996, 51.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9165, 5, '2016-08-11 09:04:15', 104, 526, 21.8999996, 51.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9167, 2, '2016-08-11 09:04:20', 1400, 556, 23.7000008, 45.2999992, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9177, 5, '2016-08-11 09:05:26', 101, 566, 21.8999996, 51.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9179, 5, '2016-08-11 09:05:46', 112, 520, 21.8999996, 51.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9183, 5, '2016-08-11 09:06:22', 112, 522, 21.8999996, 51.9000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9189, 5, '2016-08-11 09:07:04', 114, 544, 21.8999996, 52, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9200, 5, '2016-08-11 09:08:25', 121, 540, 21.8999996, 52, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9201, 5, '2016-08-11 09:08:31', 128, 533, 21.8999996, 52, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9202, 5, '2016-08-11 09:08:39', 130, 515, 21.8999996, 52, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9203, 5, '2016-08-11 09:08:45', 121, 513, 21.8999996, 52, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9204, 5, '2016-08-11 09:08:48', 120, 515, 21.8999996, 52, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9205, 5, '2016-08-11 09:08:58', 130, 535, 21.8999996, 52, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9206, 5, '2016-08-11 09:09:08', 130, 517, 21.8999996, 52, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9207, 5, '2016-08-11 09:09:14', 130, 542, 21.8999996, 52, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9208, 5, '2016-08-11 09:09:22', 129, 515, 21.8999996, 52, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9209, 5, '2016-08-11 09:09:37', 133, 517, 21.8999996, 52.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9210, 5, '2016-08-11 09:09:43', 131, 549, 21.8999996, 52.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9211, 5, '2016-08-11 09:09:48', 132, 551, 21.8999996, 52, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9212, 5, '2016-08-11 09:09:57', 128, 549, 21.8999996, 52.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9213, 5, '2016-08-11 09:10:12', 129, 522, 21.8999996, 52.0999985, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9214, 5, '2016-08-11 09:10:19', 132, 542, 21.8999996, 52.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9215, 5, '2016-08-11 09:10:27', 131, 502, 21.8999996, 52.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9216, 5, '2016-08-11 09:10:34', 133, 546, 21.8999996, 52.0999985, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9217, 5, '2016-08-11 09:10:40', 134, 537, 21.7999992, 52.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9218, 5, '2016-08-11 09:10:48', 133, 531, 21.7999992, 52, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9219, 5, '2016-08-11 09:10:51', 135, 507, 21.8999996, 52.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9220, 5, '2016-08-11 09:11:02', 134, 517, 21.7999992, 52.0999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9221, 5, '2016-08-11 09:11:10', 131, 553, 21.7999992, 52.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9222, 5, '2016-08-11 09:11:16', 137, 544, 21.7999992, 52.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9223, 5, '2016-08-11 09:11:24', 135, 535, 21.7999992, 52.0999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9224, 5, '2016-08-11 09:11:31', 136, 535, 21.7999992, 52.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9225, 5, '2016-08-11 09:11:38', 135, 564, 21.7999992, 52.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9226, 5, '2016-08-11 09:11:46', 144, 546, 21.7999992, 52.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9227, 5, '2016-08-11 09:11:52', 135, 544, 21.7999992, 52.0999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9228, 5, '2016-08-11 09:11:59', 136, 526, 21.7999992, 52.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9229, 5, '2016-08-11 09:12:06', 144, 537, 21.7999992, 52.0999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9230, 5, '2016-08-11 09:12:09', 134, 520, 21.7999992, 52.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9231, 0, '2016-08-11 09:12:14', 274, 824, 21.7999992, 53.2000008, 6007);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9232, 5, '2016-08-11 09:12:21', 134, 515, 21.7999992, 52.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9233, 5, '2016-08-11 09:12:29', 136, 553, 21.7999992, 52.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9234, 5, '2016-08-11 09:12:35', 144, 557, 21.7999992, 52.0999985, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9236, 5, '2016-08-11 09:12:50', 137, 535, 21.7999992, 52.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9238, 5, '2016-08-11 09:13:04', 144, 549, 21.7999992, 52.0999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9240, 5, '2016-08-11 09:13:18', 136, 555, 21.7999992, 52.0999985, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9242, 5, '2016-08-11 09:13:32', 146, 517, 21.7999992, 52.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9244, 5, '2016-08-11 09:13:47', 145, 544, 21.7999992, 52.0999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9260, 5, '2016-08-11 09:15:42', 120, 542, 21.7999992, 52.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9264, 5, '2016-08-11 09:16:11', 136, 520, 21.7999992, 52.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9266, 5, '2016-08-11 09:16:21', 135, 537, 21.7999992, 52.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9268, 5, '2016-08-11 09:16:32', 137, 513, 21.7999992, 52.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9270, 5, '2016-08-11 09:16:48', 135, 524, 21.7999992, 52.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9272, 5, '2016-08-11 09:17:01', 144, 522, 21.7999992, 52.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9276, 5, '2016-08-11 09:17:32', 148, 531, 21.7999992, 52.2999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9280, 5, '2016-08-11 09:17:58', 146, 517, 21.7999992, 52.2999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9290, 5, '2016-08-11 09:19:08', 561, 535, 21.7999992, 52.2999992, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9292, 5, '2016-08-11 09:19:25', 578, 500, 21.7999992, 52.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9294, 2, '2016-08-11 09:19:32', 919, 548, 23.7999992, 45.7000008, 5907);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9296, 5, '2016-08-11 09:19:46', 532, 520, 21.7999992, 52.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9306, 5, '2016-08-11 09:21:00', 632, 575, 21.7999992, 52.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9308, 5, '2016-08-11 09:21:13', 529, 575, 21.7999992, 52.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9310, 5, '2016-08-11 09:21:27', 624, 560, 21.7999992, 52.4000015, 32881);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9312, 5, '2016-08-11 09:21:42', 646, 566, 21.7999992, 52.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9314, 5, '2016-08-11 09:21:55', 512, 553, 21.7999992, 52.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9316, 5, '2016-08-11 09:22:10', 616, 540, 21.7999992, 52.5, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9318, 5, '2016-08-11 09:22:25', 601, 562, 21.7999992, 52.5, 29474);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9320, 5, '2016-08-11 09:22:39', 560, 544, 21.7999992, 52.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9322, 5, '2016-08-11 09:22:49', 561, 571, 21.7999992, 52.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9324, 5, '2016-08-11 09:23:00', 545, 566, 21.7999992, 52.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9326, 5, '2016-08-11 09:23:15', 339, 540, 21.7999992, 52.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9338, 5, '2016-08-11 09:24:41', 629, 553, 21.7999992, 52.5999985, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9342, 5, '2016-08-11 09:25:09', 631, 564, 21.7999992, 52.5999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9354, 5, '2016-08-11 09:26:36', 304, 529, 21.7999992, 52.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9356, 5, '2016-08-11 09:26:49', 273, 580, 21.7999992, 52.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9358, 5, '2016-08-11 09:27:05', 609, 537, 21.7999992, 52.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9360, 5, '2016-08-11 09:27:19', 569, 557, 21.7999992, 52.5, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9362, 0, '2016-08-11 09:27:26', 279, 842, 22, 53.2000008, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9364, 5, '2016-08-11 09:27:41', 514, 557, 21.7999992, 52.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9366, 5, '2016-08-11 09:27:55', 520, 553, 21.7999992, 52.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9368, 5, '2016-08-11 09:28:10', 566, 562, 21.7999992, 52.5999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9370, 5, '2016-08-11 09:28:23', 626, 568, 21.7999992, 52.5, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9372, 5, '2016-08-11 09:28:40', 552, 515, 21.7999992, 52.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9374, 5, '2016-08-11 09:28:55', 611, 566, 21.8999996, 52.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9376, 5, '2016-08-11 09:29:07', 534, 540, 21.8999996, 52.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9380, 5, '2016-08-11 09:29:35', 518, 529, 21.8999996, 52.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9382, 5, '2016-08-11 09:29:49', 531, 537, 21.8999996, 52.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9386, 5, '2016-08-11 09:30:19', 577, 549, 21.8999996, 52.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9388, 5, '2016-08-11 09:30:41', 531, 555, 21.8999996, 52.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9390, 5, '2016-08-11 09:30:55', 529, 537, 21.8999996, 52.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9392, 5, '2016-08-11 09:31:11', 576, 549, 21.8999996, 52.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9394, 5, '2016-08-11 09:31:23', 566, 592, 21.8999996, 52.4000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9396, 5, '2016-08-11 09:31:32', 530, 569, 21.8999996, 52.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9398, 5, '2016-08-11 09:31:46', 536, 576, 21.8999996, 52.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9408, 5, '2016-08-11 09:33:04', 305, 599, 21.8999996, 52.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9410, 5, '2016-08-11 09:33:18', 553, 578, 21.8999996, 52.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9412, 5, '2016-08-11 09:33:33', 565, 576, 21.8999996, 52.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9414, 5, '2016-08-11 09:33:47', 534, 540, 21.8999996, 52.2999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9416, 5, '2016-08-11 09:34:01', 544, 569, 21.8999996, 52.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9418, 5, '2016-08-11 09:34:15', 533, 576, 22, 52.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9420, 5, '2016-08-11 09:34:30', 291, 535, 22, 52.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9428, 5, '2016-08-11 09:35:14', 568, 565, 22, 52.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9460, 5, '2016-08-11 09:38:56', 644, 561, 22.1000004, 52.2000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9462, 5, '2016-08-11 09:39:09', 642, 576, 22.1000004, 52.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9464, 5, '2016-08-11 09:39:24', 633, 543, 22.1000004, 52.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9466, 5, '2016-08-11 09:39:39', 633, 595, 22.1000004, 52.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9468, 5, '2016-08-11 09:39:53', 646, 563, 22.1000004, 52.2000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9470, 5, '2016-08-11 09:40:07', 566, 569, 22.1000004, 52.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9472, 5, '2016-08-11 09:40:22', 514, 547, 22.1000004, 52.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9474, 5, '2016-08-11 09:40:43', 517, 581, 22.1000004, 52.2000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9476, 5, '2016-08-11 09:40:58', 560, 561, 22.1000004, 52.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9478, 5, '2016-08-11 09:41:12', 641, 534, 22.2000008, 52.2000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9480, 5, '2016-08-11 09:41:27', 593, 565, 22.1000004, 52.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9482, 5, '2016-08-11 09:41:40', 516, 581, 22.2000008, 52.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9484, 5, '2016-08-11 09:41:55', 306, 543, 22.2000008, 52.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9494, 5, '2016-08-11 09:43:00', 660, 572, 22.2000008, 52, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9496, 5, '2016-08-11 09:43:14', 663, 579, 22.2000008, 52, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9498, 5, '2016-08-11 09:43:28', 665, 543, 22.2000008, 52, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9500, 5, '2016-08-11 09:43:42', 612, 581, 22.2000008, 52, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9502, 5, '2016-08-11 09:43:58', 601, 570, 22.2000008, 52, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9522, 5, '2016-08-11 09:46:21', 305, 584, 22.2999992, 51.9000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9524, 5, '2016-08-11 09:46:35', 585, 600, 22.2999992, 51.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9526, 5, '2016-08-11 09:46:43', 584, 584, 22.2999992, 51.9000015, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9528, 5, '2016-08-11 09:46:56', 592, 559, 22.2999992, 51.9000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9530, 5, '2016-08-11 09:47:10', 585, 562, 22.2999992, 51.9000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9532, 5, '2016-08-11 09:47:25', 594, 559, 22.2999992, 51.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9534, 5, '2016-08-11 09:47:40', 592, 582, 22.2999992, 51.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9536, 5, '2016-08-11 09:47:54', 594, 575, 22.2999992, 51.7999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9538, 5, '2016-08-11 09:48:08', 584, 600, 22.2999992, 51.9000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9566, 5, '2016-08-11 09:51:30', 516, 573, 22.3999996, 51.9000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9568, 5, '2016-08-11 09:51:52', 513, 578, 22.5, 51.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9570, 5, '2016-08-11 09:52:06', 512, 578, 22.5, 51.9000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9574, 5, '2016-08-11 09:52:33', 663, 553, 22.5, 51.7999992, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9576, 5, '2016-08-11 09:52:49', 664, 603, 22.5, 51.7999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9578, 5, '2016-08-11 09:53:03', 663, 580, 22.5, 51.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9580, 5, '2016-08-11 09:53:12', 664, 573, 22.5, 51.7000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9582, 5, '2016-08-11 09:53:24', 662, 576, 22.5, 51.7000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9584, 5, '2016-08-11 09:53:35', 325, 589, 22.5, 51.7000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9586, 5, '2016-08-11 09:53:46', 648, 578, 22.5, 51.7000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9588, 5, '2016-08-11 09:54:00', 516, 564, 22.5, 51.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9590, 5, '2016-08-11 09:54:14', 516, 615, 22.5, 51.7000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9592, 5, '2016-08-11 09:54:29', 517, 580, 22.5, 51.7000008, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9594, 5, '2016-08-11 09:54:43', 663, 582, 22.5, 51.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9624, 5, '2016-08-11 09:58:12', 663, 631, 22.5, 51.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9626, 5, '2016-08-11 09:58:27', 665, 585, 22.5, 51.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9628, 5, '2016-08-11 09:58:41', 514, 569, 22.5, 51.7000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9630, 5, '2016-08-11 09:59:01', 664, 578, 22.5, 51.7000008, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9632, 5, '2016-08-11 09:59:16', 662, 578, 22.5, 51.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9644, 5, '2016-08-11 10:00:43', 514, 611, 22.6000004, 51.7000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9235, 5, '2016-08-11 09:12:43', 135, 540, 21.7999992, 52.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9237, 5, '2016-08-11 09:12:56', 144, 542, 21.7999992, 52.0999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9239, 5, '2016-08-11 09:13:12', 145, 522, 21.7999992, 52.0999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9247, 5, '2016-08-11 09:14:09', 137, 498, 21.7999992, 52.2000008, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9253, 5, '2016-08-11 09:14:53', 135, 549, 21.7999992, 52.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9255, 5, '2016-08-11 09:15:06', 135, 509, 21.7999992, 52.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9257, 5, '2016-08-11 09:15:20', 132, 555, 21.7999992, 52.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9259, 5, '2016-08-11 09:15:29', 132, 505, 21.7999992, 52.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9261, 5, '2016-08-11 09:15:50', 137, 562, 21.7999992, 52.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9263, 5, '2016-08-11 09:16:04', 137, 531, 21.7999992, 52.2000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9265, 5, '2016-08-11 09:16:18', 144, 515, 21.7999992, 52.2999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9267, 3, '2016-08-11 09:16:26', 1352, 817, 22.2000008, 51.2000008, 8339);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9269, 5, '2016-08-11 09:16:40', 145, 531, 21.7999992, 52.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9271, 5, '2016-08-11 09:16:54', 135, 535, 21.7999992, 52.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9273, 5, '2016-08-11 09:17:08', 147, 526, 21.7999992, 52.2999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9275, 5, '2016-08-11 09:17:23', 146, 535, 21.7999992, 52.2999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9287, 5, '2016-08-11 09:18:49', 153, 515, 21.7999992, 52.2999992, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9303, 5, '2016-08-11 09:20:38', 659, 549, 21.7999992, 52.4000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9305, 5, '2016-08-11 09:20:52', 518, 551, 21.7999992, 52.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9307, 5, '2016-08-11 09:21:07', 613, 511, 21.7999992, 52.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9309, 5, '2016-08-11 09:21:19', 528, 555, 21.7999992, 52.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9311, 5, '2016-08-11 09:21:34', 613, 575, 21.7999992, 52.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9339, 5, '2016-08-11 09:24:48', 626, 584, 21.7999992, 52.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9343, 5, '2016-08-11 09:25:17', 629, 568, 21.7999992, 52.5999985, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9359, 5, '2016-08-11 09:27:11', 340, 551, 21.7999992, 52.5, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9361, 5, '2016-08-11 09:27:20', 329, 551, 21.7999992, 52.5, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9363, 5, '2016-08-11 09:27:34', 537, 582, 21.7999992, 52.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9365, 5, '2016-08-11 09:27:47', 530, 551, 21.7999992, 52.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9367, 5, '2016-08-11 09:28:03', 567, 553, 21.7999992, 52.5, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9369, 5, '2016-08-11 09:28:16', 608, 549, 21.7999992, 52.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9371, 5, '2016-08-11 09:28:31', 614, 564, 21.7999992, 52.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9373, 5, '2016-08-11 09:28:45', 601, 580, 21.7999992, 52.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9375, 5, '2016-08-11 09:28:59', 521, 537, 21.8999996, 52.5, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9377, 5, '2016-08-11 09:29:13', 608, 564, 21.8999996, 52.4000015, 29236);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9379, 5, '2016-08-11 09:29:28', 552, 603, 21.8999996, 52.5, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9381, 5, '2016-08-11 09:29:43', 308, 577, 21.8999996, 52.5, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9383, 5, '2016-08-11 09:29:57', 565, 490, 21.8999996, 52.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9387, 5, '2016-08-11 09:30:33', 566, 576, 21.8999996, 52.5, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9389, 5, '2016-08-11 09:30:47', 528, 540, 21.8999996, 52.4000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9391, 5, '2016-08-11 09:31:01', 521, 546, 21.8999996, 52.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9393, 5, '2016-08-11 09:31:15', 567, 520, 21.8999996, 52.4000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9395, 5, '2016-08-11 09:31:31', 567, 576, 21.8999996, 52.4000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9397, 3, '2016-08-11 09:31:37', 1385, 821, 22.3999996, 51.5999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9399, 5, '2016-08-11 09:31:51', 545, 551, 21.8999996, 52.4000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9401, 5, '2016-08-11 09:32:06', 536, 515, 21.8999996, 52.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9403, 5, '2016-08-11 09:32:21', 613, 535, 21.8999996, 52.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9405, 5, '2016-08-11 09:32:44', 545, 555, 21.8999996, 52.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9407, 5, '2016-08-11 09:32:57', 582, 562, 21.8999996, 52.2999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9409, 5, '2016-08-11 09:33:11', 544, 562, 21.8999996, 52.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9411, 5, '2016-08-11 09:33:25', 560, 529, 21.8999996, 52.2999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9413, 5, '2016-08-11 09:33:39', 533, 529, 21.8999996, 52.2999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9415, 5, '2016-08-11 09:33:54', 532, 562, 22, 52.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9417, 5, '2016-08-11 09:34:02', 533, 560, 22, 52.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9419, 5, '2016-08-11 09:34:23', 305, 558, 22, 52.2000008, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9421, 5, '2016-08-11 09:34:36', 600, 553, 22, 52.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9423, 2, '2016-08-11 09:34:38', 1428, 599, 23.7999992, 45.9000015, 4900);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9425, 5, '2016-08-11 09:34:50', 584, 567, 22, 52.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9427, 5, '2016-08-11 09:35:05', 568, 603, 22, 52.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9441, 5, '2016-08-11 09:36:47', 576, 565, 22, 52.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9443, 5, '2016-08-11 09:37:01', 631, 545, 22, 52.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9471, 5, '2016-08-11 09:40:15', 532, 574, 22.1000004, 52.2000008, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9473, 5, '2016-08-11 09:40:28', 518, 565, 22.1000004, 52.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9475, 5, '2016-08-11 09:40:51', 630, 567, 22.1000004, 52.2000008, 32835);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9477, 5, '2016-08-11 09:41:05', 520, 572, 22.1000004, 52.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9479, 5, '2016-08-11 09:41:19', 643, 609, 22.1000004, 52.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9481, 5, '2016-08-11 09:41:34', 613, 545, 22.2000008, 52.0999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9483, 5, '2016-08-11 09:41:48', 340, 593, 22.2000008, 52.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9485, 5, '2016-08-11 09:42:02', 568, 568, 22.2000008, 52.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9487, 5, '2016-08-11 09:42:17', 517, 586, 22.2000008, 52.0999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9489, 5, '2016-08-11 09:42:30', 665, 581, 22.2000008, 52.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9491, 0, '2016-08-11 09:42:39', 339, 892, 22.3999996, 53.0999985, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9493, 5, '2016-08-11 09:42:52', 663, 579, 22.2000008, 52.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9495, 5, '2016-08-11 09:43:06', 512, 572, 22.2000008, 52, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9497, 5, '2016-08-11 09:43:22', 665, 559, 22.2000008, 52, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9499, 5, '2016-08-11 09:43:36', 513, 565, 22.2000008, 52, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9501, 5, '2016-08-11 09:43:50', 594, 568, 22.2000008, 52, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9503, 5, '2016-08-11 09:44:05', 597, 536, 22.2000008, 52, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9505, 5, '2016-08-11 09:44:18', 617, 586, 22.2000008, 52, 31093);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9507, 5, '2016-08-11 09:44:33', 612, 534, 22.2000008, 51.9000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9509, 5, '2016-08-11 09:44:48', 613, 530, 22.2000008, 51.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9511, 5, '2016-08-11 09:45:02', 585, 584, 22.2999992, 52, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9513, 5, '2016-08-11 09:45:19', 601, 561, 22.2999992, 51.9000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9519, 5, '2016-08-11 09:46:00', 598, 541, 22.2999992, 51.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9521, 5, '2016-08-11 09:46:14', 611, 584, 22.2999992, 51.9000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9523, 5, '2016-08-11 09:46:28', 568, 588, 22.2999992, 51.9000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9525, 5, '2016-08-11 09:46:42', 640, 570, 22.2999992, 51.9000015, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9527, 3, '2016-08-11 09:46:50', 1654, 843, 22.6000004, 51.5999985, 2112);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9533, 5, '2016-08-11 09:47:32', 593, 586, 22.2999992, 51.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9535, 5, '2016-08-11 09:47:47', 297, 570, 22.2999992, 51.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9537, 5, '2016-08-11 09:48:01', 585, 586, 22.2999992, 51.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9539, 5, '2016-08-11 09:48:16', 295, 600, 22.2999992, 51.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9541, 5, '2016-08-11 09:48:30', 577, 555, 22.2999992, 51.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9559, 5, '2016-08-11 09:50:31', 321, 573, 22.3999996, 51.9000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9561, 5, '2016-08-11 09:50:54', 312, 593, 22.3999996, 52, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9563, 5, '2016-08-11 09:51:07', 515, 598, 22.3999996, 52, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9565, 5, '2016-08-11 09:51:22', 513, 598, 22.3999996, 52, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9567, 5, '2016-08-11 09:51:37', 514, 562, 22.3999996, 51.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9575, 5, '2016-08-11 09:52:41', 513, 560, 22.5, 51.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9577, 5, '2016-08-11 09:52:55', 512, 587, 22.5, 51.7000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9579, 5, '2016-08-11 09:53:10', 632, 580, 22.5, 51.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9581, 1, '2016-08-11 09:53:19', 616, 1052, 22.6000004, 49.7999992, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9583, 5, '2016-08-11 09:53:32', 665, 610, 22.5, 51.7000008, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9637, 5, '2016-08-11 09:59:47', 665, 613, 22.6000004, 51.7000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9643, 5, '2016-08-11 10:00:35', 513, 592, 22.6000004, 51.7000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9645, 5, '2016-08-11 10:00:50', 617, 589, 22.6000004, 51.5999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9647, 5, '2016-08-11 10:01:05', 631, 589, 22.6000004, 51.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9649, 5, '2016-08-11 10:01:14', 629, 580, 22.6000004, 51.5999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9241, 5, '2016-08-11 09:13:26', 132, 571, 21.7999992, 52.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9243, 5, '2016-08-11 09:13:40', 145, 573, 21.7999992, 52.0999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9245, 5, '2016-08-11 09:13:54', 144, 540, 21.7999992, 52.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9249, 5, '2016-08-11 09:14:23', 145, 553, 21.7999992, 52.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9251, 5, '2016-08-11 09:14:38', 133, 533, 21.7999992, 52.2000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9277, 5, '2016-08-11 09:17:37', 148, 526, 21.7999992, 52.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9279, 5, '2016-08-11 09:17:48', 149, 513, 21.7999992, 52.2999992, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9281, 5, '2016-08-11 09:18:05', 152, 511, 21.7999992, 52.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9283, 5, '2016-08-11 09:18:20', 152, 533, 21.7999992, 52.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9285, 5, '2016-08-11 09:18:35', 0, 520, 21.7999992, 52.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9289, 5, '2016-08-11 09:19:03', 137, 481, 21.7999992, 52.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9291, 5, '2016-08-11 09:19:19', 553, 540, 21.7999992, 52.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9293, 5, '2016-08-11 09:19:26', 545, 520, 21.7999992, 52.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9295, 5, '2016-08-11 09:19:40', 531, 537, 21.7999992, 52.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9297, 5, '2016-08-11 09:19:54', 561, 555, 21.7999992, 52.4000015, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9299, 5, '2016-08-11 09:20:08', 642, 517, 21.7999992, 52.4000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9301, 5, '2016-08-11 09:20:22', 528, 546, 21.7999992, 52.4000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9313, 5, '2016-08-11 09:21:50', 645, 562, 21.7999992, 52.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9315, 5, '2016-08-11 09:22:03', 613, 555, 21.7999992, 52.4000015, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9317, 5, '2016-08-11 09:22:18', 615, 540, 21.7999992, 52.5, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9319, 5, '2016-08-11 09:22:31', 535, 596, 21.7999992, 52.5, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9321, 5, '2016-08-11 09:22:45', 529, 551, 21.7999992, 52.5, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9323, 1, '2016-08-11 09:22:54', 563, 801, 22.2000008, 49.0999985, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9325, 5, '2016-08-11 09:23:08', 341, 575, 21.7999992, 52.5, 29574);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9327, 5, '2016-08-11 09:23:21', 537, 542, 21.7999992, 52.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9329, 5, '2016-08-11 09:23:36', 580, 577, 21.7999992, 52.5, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9331, 5, '2016-08-11 09:23:51', 597, 596, 21.7999992, 52.5, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9333, 5, '2016-08-11 09:24:05', 598, 573, 21.7999992, 52.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9335, 5, '2016-08-11 09:24:20', 632, 555, 21.7999992, 52.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9337, 5, '2016-08-11 09:24:33', 630, 573, 21.7999992, 52.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9341, 5, '2016-08-11 09:24:58', 630, 584, 21.7999992, 52.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9345, 5, '2016-08-11 09:25:30', 631, 517, 21.7999992, 52.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9347, 5, '2016-08-11 09:25:46', 520, 517, 21.7999992, 52.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9349, 5, '2016-08-11 09:25:59', 661, 589, 21.7999992, 52.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9351, 5, '2016-08-11 09:26:15', 641, 586, 21.7999992, 52.5999985, 30773);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9353, 5, '2016-08-11 09:26:29', 550, 562, 21.7999992, 52.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9355, 5, '2016-08-11 09:26:45', 308, 568, 21.7999992, 52.5, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9357, 5, '2016-08-11 09:26:57', 290, 562, 21.7999992, 52.5, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9385, 5, '2016-08-11 09:30:11', 528, 564, 21.8999996, 52.5, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9429, 5, '2016-08-11 09:35:20', 568, 552, 22, 52.2000008, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9431, 5, '2016-08-11 09:35:32', 564, 520, 22, 52.2000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9433, 5, '2016-08-11 09:35:48', 645, 578, 22, 52.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9435, 5, '2016-08-11 09:36:03', 633, 554, 22, 52.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9437, 5, '2016-08-11 09:36:17', 641, 567, 22, 52.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9439, 5, '2016-08-11 09:36:32', 630, 583, 22, 52.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9445, 5, '2016-08-11 09:37:15', 633, 556, 22, 52.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9447, 5, '2016-08-11 09:37:30', 644, 545, 22, 52.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9449, 5, '2016-08-11 09:37:44', 643, 563, 22, 52.2000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9451, 5, '2016-08-11 09:37:58', 647, 540, 22.1000004, 52.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9453, 1, '2016-08-11 09:38:07', 373, 919, 22.3999996, 49.5999985, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9455, 5, '2016-08-11 09:38:20', 642, 565, 22.1000004, 52.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9457, 5, '2016-08-11 09:38:34', 642, 578, 22.1000004, 52.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9459, 5, '2016-08-11 09:38:48', 659, 572, 22.1000004, 52.2000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9461, 5, '2016-08-11 09:39:02', 661, 545, 22.1000004, 52.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9463, 5, '2016-08-11 09:39:16', 648, 545, 22.1000004, 52.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9465, 5, '2016-08-11 09:39:27', 642, 583, 22.1000004, 52.2000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9467, 5, '2016-08-11 09:39:46', 640, 554, 22.1000004, 52.2000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9469, 5, '2016-08-11 09:40:03', 531, 581, 22.1000004, 52.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9515, 5, '2016-08-11 09:45:31', 599, 559, 22.2999992, 51.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9517, 5, '2016-08-11 09:45:45', 592, 547, 22.2999992, 51.9000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9529, 5, '2016-08-11 09:47:04', 535, 591, 22.2999992, 51.9000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9531, 5, '2016-08-11 09:47:19', 536, 593, 22.2999992, 51.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9543, 5, '2016-08-11 09:48:46', 584, 588, 22.3999996, 51.9000015, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9545, 5, '2016-08-11 09:48:59', 581, 553, 22.3999996, 51.9000015, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9547, 5, '2016-08-11 09:49:13', 595, 579, 22.3999996, 51.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9549, 5, '2016-08-11 09:49:29', 585, 548, 22.3999996, 51.9000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9551, 5, '2016-08-11 09:49:37', 584, 598, 22.3999996, 51.9000015, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9553, 2, '2016-08-11 09:49:50', 904, 585, 23.7999992, 46.0999985, 4452);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9555, 5, '2016-08-11 09:50:04', 585, 591, 22.3999996, 51.9000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9557, 5, '2016-08-11 09:50:18', 548, 582, 22.3999996, 51.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9569, 5, '2016-08-11 09:51:58', 515, 582, 22.5, 51.9000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9571, 5, '2016-08-11 09:52:10', 516, 624, 22.5, 51.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9573, 5, '2016-08-11 09:52:27', 514, 544, 22.5, 51.7999992, 31111);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9585, 1, '2016-08-11 09:53:39', 616, 1052, 22.6000004, 49.7999992, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9587, 5, '2016-08-11 09:53:49', 662, 557, 22.5, 51.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9589, 5, '2016-08-11 09:54:08', 662, 610, 22.5, 51.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9591, 5, '2016-08-11 09:54:21', 579, 553, 22.5, 51.7000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9593, 5, '2016-08-11 09:54:36', 632, 612, 22.5, 51.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9595, 5, '2016-08-11 09:54:51', 646, 576, 22.5, 51.7000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9597, 5, '2016-08-11 09:55:06', 516, 592, 22.5, 51.7000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9599, 5, '2016-08-11 09:55:19', 516, 594, 22.5, 51.7000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9601, 5, '2016-08-11 09:55:33', 663, 562, 22.5, 51.7000008, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9603, 5, '2016-08-11 09:55:47', 516, 601, 22.5, 51.7000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9605, 5, '2016-08-11 09:56:03', 515, 576, 22.5, 51.7000008, 29474);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9607, 5, '2016-08-11 09:56:17', 661, 587, 22.5, 51.7000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9609, 5, '2016-08-11 09:56:31', 662, 580, 22.5, 51.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9611, 5, '2016-08-11 09:56:45', 663, 653, 22.5, 51.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9613, 5, '2016-08-11 09:57:00', 659, 631, 22.5, 51.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9615, 5, '2016-08-11 09:57:14', 663, 610, 22.5, 51.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9617, 5, '2016-08-11 09:57:30', 660, 604, 22.5, 51.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9619, 5, '2016-08-11 09:57:42', 649, 597, 22.5, 51.7000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9621, 5, '2016-08-11 09:57:50', 656, 544, 22.5, 51.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9623, 5, '2016-08-11 09:58:05', 663, 585, 22.5, 51.7000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9625, 5, '2016-08-11 09:58:19', 512, 585, 22.5, 51.7000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9627, 5, '2016-08-11 09:58:34', 513, 551, 22.5, 51.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9629, 5, '2016-08-11 09:58:47', 512, 613, 22.5, 51.7000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9631, 5, '2016-08-11 09:59:10', 513, 583, 22.5, 51.7000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9633, 5, '2016-08-11 09:59:23', 664, 613, 22.6000004, 51.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9635, 5, '2016-08-11 09:59:38', 665, 601, 22.5, 51.5999985, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9639, 5, '2016-08-11 10:00:07', 656, 606, 22.6000004, 51.7000008, 33881);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9641, 5, '2016-08-11 10:00:21', 663, 580, 22.6000004, 51.7000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9667, 5, '2016-08-11 10:03:21', 665, 594, 22.6000004, 51.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9669, 5, '2016-08-11 10:03:35', 659, 637, 22.6000004, 51.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9671, 5, '2016-08-11 10:03:49', 517, 583, 22.7000008, 51.5, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9673, 5, '2016-08-11 10:04:03', 647, 578, 22.7000008, 51.5, 29830);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9675, 5, '2016-08-11 10:04:18', 515, 567, 22.7000008, 51.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9677, 5, '2016-08-11 10:04:33', 663, 597, 22.7000008, 51.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9246, 5, '2016-08-11 09:14:04', 146, 564, 21.7999992, 52.0999985, 29702);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9248, 5, '2016-08-11 09:14:16', 136, 544, 21.7999992, 52.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9250, 5, '2016-08-11 09:14:30', 133, 535, 21.7999992, 52.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9252, 5, '2016-08-11 09:14:44', 134, 566, 21.7999992, 52.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9254, 5, '2016-08-11 09:14:59', 133, 496, 21.7999992, 52.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9256, 5, '2016-08-11 09:15:14', 135, 522, 21.7999992, 52.2000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9258, 5, '2016-08-11 09:15:28', 134, 564, 21.7999992, 52.2000008, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9262, 5, '2016-08-11 09:15:54', 135, 513, 21.7999992, 52.2000008, 31011);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9274, 5, '2016-08-11 09:17:16', 145, 517, 21.7999992, 52.2999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9278, 5, '2016-08-11 09:17:44', 149, 509, 21.7999992, 52.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9282, 5, '2016-08-11 09:18:13', 150, 517, 21.7999992, 52.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9284, 5, '2016-08-11 09:18:30', 151, 522, 21.7999992, 52.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9286, 5, '2016-08-11 09:18:42', 151, 517, 21.7999992, 52.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9288, 5, '2016-08-11 09:18:56', 0, 557, 21.7999992, 52.2999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9298, 5, '2016-08-11 09:20:00', 324, 511, 21.7999992, 52.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9300, 5, '2016-08-11 09:20:16', 598, 526, 21.7999992, 52.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9302, 5, '2016-08-11 09:20:33', 595, 513, 21.7999992, 52.4000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9304, 5, '2016-08-11 09:20:44', 649, 553, 21.7999992, 52.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9328, 5, '2016-08-11 09:23:29', 600, 566, 21.7999992, 52.5, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9330, 5, '2016-08-11 09:23:44', 337, 568, 21.7999992, 52.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9332, 5, '2016-08-11 09:23:57', 598, 573, 21.7999992, 52.5, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9334, 5, '2016-08-11 09:24:18', 629, 577, 21.7999992, 52.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9336, 5, '2016-08-11 09:24:29', 629, 564, 21.7999992, 52.5999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9340, 5, '2016-08-11 09:24:56', 632, 605, 21.7999992, 52.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9344, 5, '2016-08-11 09:25:25', 631, 531, 21.7999992, 52.5999985, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9346, 5, '2016-08-11 09:25:38', 630, 542, 21.7999992, 52.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9348, 5, '2016-08-11 09:25:53', 656, 566, 21.7999992, 52.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9350, 5, '2016-08-11 09:26:07', 626, 551, 21.7999992, 52.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9352, 5, '2016-08-11 09:26:22', 630, 542, 21.7999992, 52.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9378, 5, '2016-08-11 09:29:18', 339, 562, 21.8999996, 52.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9384, 5, '2016-08-11 09:30:04', 516, 509, 21.8999996, 52.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9400, 5, '2016-08-11 09:32:02', 544, 558, 21.8999996, 52.4000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9402, 5, '2016-08-11 09:32:13', 560, 549, 21.8999996, 52.4000015, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9404, 5, '2016-08-11 09:32:35', 528, 531, 21.8999996, 52.2999992, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9406, 5, '2016-08-11 09:32:49', 579, 576, 21.8999996, 52.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9422, 5, '2016-08-11 09:34:37', 584, 535, 22, 52.2000008, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9424, 2, '2016-08-11 09:34:44', 1428, 599, 23.7999992, 45.9000015, 4900);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9426, 5, '2016-08-11 09:34:59', 580, 567, 22, 52.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9430, 5, '2016-08-11 09:35:27', 569, 569, 22, 52.2000008, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9432, 5, '2016-08-11 09:35:41', 592, 572, 22, 52.2000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9434, 5, '2016-08-11 09:35:56', 632, 567, 22, 52.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9436, 5, '2016-08-11 09:36:11', 610, 594, 22, 52.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9438, 5, '2016-08-11 09:36:25', 631, 576, 22, 52.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9440, 5, '2016-08-11 09:36:39', 581, 611, 22, 52.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9442, 5, '2016-08-11 09:36:53', 627, 554, 22, 52.2000008, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9444, 5, '2016-08-11 09:37:07', 642, 574, 22, 52.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9446, 5, '2016-08-11 09:37:22', 643, 592, 22, 52.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9448, 5, '2016-08-11 09:37:37', 646, 585, 22, 52.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9450, 5, '2016-08-11 09:37:50', 644, 567, 22.1000004, 52.2000008, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9452, 5, '2016-08-11 09:38:00', 649, 581, 22.1000004, 52.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9454, 5, '2016-08-11 09:38:13', 640, 561, 22.1000004, 52.2000008, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9456, 5, '2016-08-11 09:38:26', 617, 583, 22.1000004, 52.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9458, 5, '2016-08-11 09:38:40', 658, 545, 22.1000004, 52.2000008, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9486, 5, '2016-08-11 09:42:09', 561, 586, 22.2000008, 52.0999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9488, 5, '2016-08-11 09:42:24', 660, 527, 22.2000008, 52.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9490, 5, '2016-08-11 09:42:31', 514, 527, 22.2000008, 52.0999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9492, 5, '2016-08-11 09:42:46', 663, 570, 22.2000008, 52.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9504, 5, '2016-08-11 09:44:12', 592, 572, 22.2000008, 52, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9506, 5, '2016-08-11 09:44:26', 625, 561, 22.2000008, 52, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9508, 5, '2016-08-11 09:44:41', 614, 565, 22.2000008, 51.9000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9510, 5, '2016-08-11 09:44:48', 598, 581, 22.2000008, 51.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9512, 5, '2016-08-11 09:45:08', 597, 591, 22.2999992, 51.9000015, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9514, 5, '2016-08-11 09:45:23', 594, 563, 22.2999992, 51.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9516, 5, '2016-08-11 09:45:33', 599, 568, 22.2999992, 51.9000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9518, 5, '2016-08-11 09:45:52', 593, 579, 22.2999992, 51.9000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9520, 5, '2016-08-11 09:46:06', 579, 582, 22.2999992, 51.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9540, 5, '2016-08-11 09:48:22', 578, 582, 22.2999992, 51.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9542, 5, '2016-08-11 09:48:38', 563, 577, 22.3999996, 51.9000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9544, 5, '2016-08-11 09:48:51', 580, 596, 22.3999996, 51.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9546, 5, '2016-08-11 09:49:06', 577, 544, 22.3999996, 51.9000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9548, 5, '2016-08-11 09:49:20', 594, 570, 22.3999996, 51.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9550, 5, '2016-08-11 09:49:35', 585, 600, 22.3999996, 51.9000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9552, 5, '2016-08-11 09:49:47', 582, 582, 22.3999996, 51.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9554, 5, '2016-08-11 09:49:56', 550, 546, 22.3999996, 51.9000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9556, 5, '2016-08-11 09:50:11', 264, 559, 22.3999996, 51.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9558, 5, '2016-08-11 09:50:25', 326, 548, 22.3999996, 51.9000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9560, 5, '2016-08-11 09:50:40', 343, 562, 22.3999996, 52, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9562, 5, '2016-08-11 09:51:01', 337, 575, 22.3999996, 52, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9564, 5, '2016-08-11 09:51:16', 514, 568, 22.3999996, 52, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9572, 5, '2016-08-11 09:52:19', 665, 544, 22.5, 51.9000015, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9596, 5, '2016-08-11 09:54:58', 633, 573, 22.5, 51.7000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9598, 5, '2016-08-11 09:55:12', 514, 589, 22.5, 51.7000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9600, 5, '2016-08-11 09:55:27', 665, 615, 22.5, 51.7000008, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9602, 5, '2016-08-11 09:55:35', 662, 580, 22.5, 51.7000008, 30805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9604, 5, '2016-08-11 09:55:55', 513, 548, 22.5, 51.7000008, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9606, 5, '2016-08-11 09:56:09', 515, 617, 22.5, 51.7000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9608, 5, '2016-08-11 09:56:24', 663, 594, 22.5, 51.7000008, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9610, 5, '2016-08-11 09:56:39', 659, 569, 22.5, 51.7000008, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9612, 5, '2016-08-11 09:56:53', 660, 576, 22.5, 51.7000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9614, 5, '2016-08-11 09:57:11', 661, 548, 22.5, 51.7000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9616, 5, '2016-08-11 09:57:25', 662, 608, 22.5, 51.7000008, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9618, 5, '2016-08-11 09:57:37', 661, 608, 22.5, 51.7000008, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9620, 0, '2016-08-11 09:57:44', 345, 848, 22.6000004, 52.7999992, 5673);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9622, 5, '2016-08-11 09:57:58', 658, 643, 22.5, 51.7000008, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9634, 5, '2016-08-11 09:59:31', 648, 578, 22.6000004, 51.5999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9636, 5, '2016-08-11 09:59:45', 614, 587, 22.6000004, 51.5999985, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9638, 5, '2016-08-11 09:59:59', 658, 606, 22.6000004, 51.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9640, 5, '2016-08-11 10:00:13', 658, 641, 22.6000004, 51.7000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9642, 5, '2016-08-11 10:00:29', 633, 587, 22.6000004, 51.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9646, 5, '2016-08-11 10:01:05', 662, 625, 22.6000004, 51.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9648, 5, '2016-08-11 10:01:11', 614, 594, 22.6000004, 51.5999985, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9650, 5, '2016-08-11 10:01:25', 664, 576, 22.6000004, 51.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9658, 5, '2016-08-11 10:02:15', 643, 560, 22.6000004, 51.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9660, 5, '2016-08-11 10:02:32', 657, 594, 22.6000004, 51.5999985, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9672, 5, '2016-08-11 10:03:57', 516, 594, 22.7000008, 51.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9674, 5, '2016-08-11 10:04:11', 515, 604, 22.7000008, 51.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9676, 5, '2016-08-11 10:04:25', 515, 597, 22.7000008, 51.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9651, 5, '2016-08-11 10:01:33', 614, 608, 22.6000004, 51.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9653, 5, '2016-08-11 10:01:47', 514, 567, 22.6000004, 51.5999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9655, 3, '2016-08-11 10:01:55', 1380, 883, 22.7999992, 51.5999985, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9657, 5, '2016-08-11 10:02:09', 513, 585, 22.6000004, 51.5999985, 31065);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9659, 5, '2016-08-11 10:02:23', 663, 549, 22.6000004, 51.5999985, 32807);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9661, 5, '2016-08-11 10:02:37', 512, 580, 22.6000004, 51.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9663, 5, '2016-08-11 10:02:50', 645, 583, 22.6000004, 51.5999985, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9665, 5, '2016-08-11 10:03:07', 512, 565, 22.6000004, 51.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9685, 5, '2016-08-11 10:05:15', 663, 572, 22.7000008, 51.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9687, 5, '2016-08-11 10:05:30', 665, 529, 22.7000008, 51.5, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9689, 5, '2016-08-11 10:05:44', 664, 581, 22.7000008, 51.4000015, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9691, 5, '2016-08-11 10:05:59', 665, 583, 22.7000008, 51.4000015, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9693, 5, '2016-08-11 10:06:12', 515, 567, 22.7000008, 51.2999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9705, 5, '2016-08-11 10:07:46', 517, 570, 22.7000008, 51.2999992, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9713, 5, '2016-08-11 10:08:44', 647, 609, 22.7999992, 51.2000008, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9715, 1, '2016-08-11 10:08:51', 1281, 1080, 22.7000008, 50.2000008, 4136);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9717, 5, '2016-08-11 10:09:05', 513, 565, 22.7999992, 51.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9719, 5, '2016-08-11 10:09:19', 640, 642, 22.7999992, 51.2000008, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9723, 5, '2016-08-11 10:09:49', 516, 583, 22.7999992, 51.2000008, 31089);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9731, 5, '2016-08-11 10:10:46', 665, 607, 22.7999992, 51.2000008, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9733, 5, '2016-08-11 10:11:00', 514, 590, 22.7999992, 51.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9735, 5, '2016-08-11 10:11:14', 516, 616, 22.7999992, 51.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9737, 5, '2016-08-11 10:11:28', 649, 614, 22.7999992, 51.2000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9739, 5, '2016-08-11 10:11:43', 515, 590, 22.7999992, 51.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9741, 5, '2016-08-11 10:11:51', 513, 637, 22.7999992, 51.2000008, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9743, 5, '2016-08-11 10:12:12', 514, 598, 22.7999992, 51.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9745, 5, '2016-08-11 10:12:26', 279, 616, 22.7999992, 51.2999992, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9747, 5, '2016-08-11 10:12:40', 518, 602, 22.8999996, 51.2000008, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9761, 5, '2016-08-11 10:14:21', 516, 567, 22.8999996, 51.2999992, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9763, 5, '2016-08-11 10:14:36', 569, 614, 22.8999996, 51.2999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9765, 5, '2016-08-11 10:14:50', 656, 579, 22.8999996, 51.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9767, 5, '2016-08-11 10:15:04', 657, 590, 22.8999996, 51.4000015, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9769, 5, '2016-08-11 10:15:19', 648, 586, 22.8999996, 51.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9773, 5, '2016-08-11 10:15:47', 648, 595, 22.8999996, 51.2999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9775, 5, '2016-08-11 10:16:02', 646, 572, 22.8999996, 51.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9777, 5, '2016-08-11 10:16:16', 649, 598, 22.8999996, 51.4000015, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9779, 5, '2016-08-11 10:16:30', 649, 575, 22.8999996, 51.5, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9781, 5, '2016-08-11 10:16:45', 518, 516, 22.8999996, 51.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9783, 5, '2016-08-11 10:17:00', 649, 595, 22.8999996, 51.5, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9789, 5, '2016-08-11 10:17:42', 659, 600, 22.8999996, 51.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9799, 5, '2016-08-11 10:18:55', 664, 557, 22.8999996, 51.5999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9801, 5, '2016-08-11 10:19:08', 512, 553, 23, 51.5999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9803, 5, '2016-08-11 10:19:23', 662, 590, 22.8999996, 51.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9805, 5, '2016-08-11 10:19:37', 513, 543, 23, 51.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9807, 5, '2016-08-11 10:19:52', 280, 575, 23, 51.5999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9809, 5, '2016-08-11 10:20:05', 519, 566, 23, 51.5999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9819, 5, '2016-08-11 10:21:04', 513, 564, 23, 51.5, 29040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9823, 5, '2016-08-11 10:21:40', 665, 568, 23, 51.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9825, 5, '2016-08-11 10:21:53', 513, 590, 23, 51.4000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9831, 5, '2016-08-11 10:22:36', 389, 568, 23, 51.4000015, 31033);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9835, 5, '2016-08-11 10:23:06', 665, 579, 23, 51.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9837, 5, '2016-08-11 10:23:27', 513, 566, 23, 51.4000015, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9845, 5, '2016-08-11 10:24:18', 662, 562, 23, 51.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9847, 5, '2016-08-11 10:24:31', 660, 578, 23, 51.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9849, 5, '2016-08-11 10:24:45', 665, 559, 23, 51.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9851, 5, '2016-08-11 10:25:01', 665, 578, 23, 51.4000015, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9853, 5, '2016-08-11 10:25:15', 512, 643, 23, 51.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9855, 5, '2016-08-11 10:25:29', 514, 587, 23, 51.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9857, 5, '2016-08-11 10:25:40', 517, 605, 23, 51.4000015, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9859, 5, '2016-08-11 10:25:57', 517, 582, 23, 51.4000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9861, 5, '2016-08-11 10:26:12', 516, 582, 23, 51.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9869, 5, '2016-08-11 10:27:09', 520, 603, 23, 51.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9871, 5, '2016-08-11 10:27:32', 661, 582, 23, 51.2999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9875, 5, '2016-08-11 10:27:59', 520, 548, 23, 51.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9877, 0, '2016-08-11 10:28:08', 529, 817, 22, 53.4000015, 4196);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9879, 5, '2016-08-11 10:28:22', 521, 571, 23, 51.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9881, 5, '2016-08-11 10:28:35', 519, 591, 23, 51.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9883, 5, '2016-08-11 10:28:51', 530, 575, 23, 51.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9885, 5, '2016-08-11 10:29:05', 528, 541, 23, 51.2000008, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9887, 5, '2016-08-11 10:29:19', 530, 603, 23.1000004, 51.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9889, 5, '2016-08-11 10:29:33', 520, 578, 23.1000004, 51.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9891, 5, '2016-08-11 10:29:47', 531, 550, 23.1000004, 51.2000008, 29524);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9899, 5, '2016-08-11 10:30:45', 528, 566, 23.1000004, 51.2000008, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9901, 5, '2016-08-11 10:30:59', 530, 596, 23.1000004, 51.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9903, 5, '2016-08-11 10:31:14', 531, 553, 23.1000004, 51.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9911, 5, '2016-08-11 10:32:15', 529, 548, 23.1000004, 51.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9917, 5, '2016-08-11 10:32:55', 530, 562, 23.1000004, 51.0999985, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9919, 5, '2016-08-11 10:33:12', 519, 550, 23.1000004, 51.0999985, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9945, 5, '2016-08-11 10:36:16', 529, 516, 23.1000004, 51.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9947, 5, '2016-08-11 10:36:30', 518, 562, 23.2000008, 51.0999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9973, 5, '2016-08-11 10:39:29', 514, 559, 23.2000008, 51, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9975, 5, '2016-08-11 10:39:50', 664, 541, 23.2000008, 51, 31015);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9977, 5, '2016-08-11 10:40:05', 513, 548, 23.2000008, 51, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9981, 5, '2016-08-11 10:40:28', 517, 562, 23.2000008, 51, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9983, 5, '2016-08-11 10:40:48', 515, 562, 23.2000008, 51, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9985, 5, '2016-08-11 10:41:02', 665, 539, 23.2000008, 51, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9987, 5, '2016-08-11 10:41:17', 513, 511, 23.2000008, 51, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9989, 5, '2016-08-11 10:41:31', 514, 504, 23.2000008, 51, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9991, 5, '2016-08-11 10:41:53', 513, 550, 23.2000008, 51, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9999, 5, '2016-08-11 10:42:50', 514, 562, 23.2000008, 51, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10001, 5, '2016-08-11 10:43:04', 514, 567, 23.2000008, 51, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10009, 5, '2016-08-11 10:43:55', 514, 531, 23.2000008, 51, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10027, 5, '2016-08-11 10:46:12', 514, 562, 23.2000008, 50.9000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10029, 5, '2016-08-11 10:46:26', 514, 538, 23.2000008, 50.9000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10031, 5, '2016-08-11 10:46:35', 662, 544, 23.2000008, 50.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10035, 5, '2016-08-11 10:47:09', 664, 540, 23.2000008, 50.7999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10037, 5, '2016-08-11 10:47:23', 514, 524, 23.2000008, 50.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10039, 3, '2016-08-11 10:47:30', 818, 828, 22.7999992, 52, 4704);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10041, 5, '2016-08-11 10:47:51', 665, 502, 23.2000008, 50.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10043, 5, '2016-08-11 10:48:06', 659, 524, 23.2000008, 50.7999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10045, 5, '2016-08-11 10:48:21', 658, 531, 23.2000008, 50.7999992, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10047, 5, '2016-08-11 10:48:35', 657, 515, 23.2000008, 50.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10049, 5, '2016-08-11 10:48:49', 659, 511, 23.2000008, 50.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10057, 5, '2016-08-11 10:49:47', 663, 531, 23.2000008, 50.7999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10059, 5, '2016-08-11 10:50:01', 664, 551, 23.2999992, 50.7999992, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10061, 5, '2016-08-11 10:50:15', 661, 544, 23.2000008, 50.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10063, 5, '2016-08-11 10:50:29', 657, 526, 23.2999992, 50.7999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9652, 5, '2016-08-11 10:01:47', 663, 538, 22.6000004, 51.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9654, 5, '2016-08-11 10:01:54', 608, 565, 22.6000004, 51.5999985, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9656, 5, '2016-08-11 10:02:01', 665, 571, 22.6000004, 51.5999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9662, 5, '2016-08-11 10:02:45', 649, 597, 22.6000004, 51.5999985, 31121);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9664, 5, '2016-08-11 10:02:59', 611, 585, 22.6000004, 51.5, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9666, 5, '2016-08-11 10:03:13', 664, 597, 22.6000004, 51.5, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9668, 5, '2016-08-11 10:03:27', 645, 611, 22.6000004, 51.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9670, 5, '2016-08-11 10:03:43', 514, 585, 22.6000004, 51.5, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9695, 5, '2016-08-11 10:06:26', 517, 599, 22.7000008, 51.2999992, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9697, 5, '2016-08-11 10:06:42', 513, 554, 22.7000008, 51.2999992, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9699, 5, '2016-08-11 10:06:57', 662, 579, 22.7000008, 51.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9701, 5, '2016-08-11 10:07:17', 664, 599, 22.7000008, 51.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9703, 5, '2016-08-11 10:07:32', 515, 602, 22.7000008, 51.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9707, 5, '2016-08-11 10:08:01', 663, 625, 22.7999992, 51.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9709, 5, '2016-08-11 10:08:15', 514, 581, 22.7999992, 51.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9711, 5, '2016-08-11 10:08:29', 515, 609, 22.7999992, 51.2000008, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9721, 5, '2016-08-11 10:09:34', 515, 565, 22.7999992, 51.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9725, 5, '2016-08-11 10:09:57', 516, 602, 22.7999992, 51.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9727, 5, '2016-08-11 10:10:16', 513, 626, 22.7999992, 51.2000008, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9729, 5, '2016-08-11 10:10:31', 513, 646, 22.7999992, 51.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9749, 5, '2016-08-11 10:12:53', 512, 619, 22.8999996, 51.2000008, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9751, 5, '2016-08-11 10:13:03', 664, 588, 22.8999996, 51.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9753, 5, '2016-08-11 10:13:23', 649, 588, 22.8999996, 51.2999992, 29492);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9755, 5, '2016-08-11 10:13:38', 628, 586, 22.8999996, 51.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9757, 5, '2016-08-11 10:13:52', 517, 598, 22.8999996, 51.2999992, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9759, 5, '2016-08-11 10:14:06', 514, 605, 22.8999996, 51.2999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9771, 5, '2016-08-11 10:15:33', 657, 626, 22.8999996, 51.2999992, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9785, 3, '2016-08-11 10:17:08', 1634, 874, 22.7000008, 49.0999985, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9787, 5, '2016-08-11 10:17:27', 656, 600, 22.8999996, 51.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9791, 5, '2016-08-11 10:17:56', 648, 598, 22.8999996, 51.5999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9793, 5, '2016-08-11 10:18:11', 661, 568, 22.8999996, 51.5999985, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9795, 5, '2016-08-11 10:18:25', 663, 602, 22.8999996, 51.5999985, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9797, 5, '2016-08-11 10:18:40', 592, 590, 22.8999996, 51.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9811, 2, '2016-08-11 10:20:09', 1112, 628, 23.7000008, 46.7000008, 9079);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9813, 5, '2016-08-11 10:20:20', 660, 566, 23, 51.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9815, 5, '2016-08-11 10:20:35', 513, 581, 23, 51.5999985, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9817, 5, '2016-08-11 10:20:50', 258, 584, 23, 51.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9821, 5, '2016-08-11 10:21:27', 517, 579, 23, 51.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9827, 5, '2016-08-11 10:22:08', 518, 570, 23, 51.4000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9829, 5, '2016-08-11 10:22:22', 661, 562, 23, 51.4000015, 32881);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9833, 5, '2016-08-11 10:22:52', 600, 617, 23, 51.5, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9839, 5, '2016-08-11 10:23:42', 514, 578, 23, 51.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9841, 5, '2016-08-11 10:23:55', 648, 568, 23, 51.4000015, 29730);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9843, 1, '2016-08-11 10:24:04', 1333, 962, 22.7999992, 49.2999992, 2326);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9863, 5, '2016-08-11 10:26:27', 518, 612, 23, 51.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9865, 5, '2016-08-11 10:26:40', 516, 603, 23, 51.4000015, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9867, 5, '2016-08-11 10:26:56', 521, 605, 23, 51.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9873, 5, '2016-08-11 10:27:46', 517, 587, 23, 51.2999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9893, 5, '2016-08-11 10:30:02', 529, 614, 23.1000004, 51.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9895, 5, '2016-08-11 10:30:17', 531, 582, 23.1000004, 51.2000008, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9897, 5, '2016-08-11 10:30:31', 532, 587, 23.1000004, 51.2000008, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9905, 5, '2016-08-11 10:31:35', 533, 599, 23.1000004, 51.2000008, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9907, 5, '2016-08-11 10:31:50', 521, 525, 23.1000004, 51.2000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9909, 5, '2016-08-11 10:32:06', 531, 564, 23.1000004, 51.2000008, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9913, 5, '2016-08-11 10:32:27', 531, 562, 23.1000004, 51.0999985, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9915, 5, '2016-08-11 10:32:40', 530, 555, 23.1000004, 51.0999985, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9921, 5, '2016-08-11 10:33:37', 530, 566, 23.1000004, 51.0999985, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9923, 5, '2016-08-11 10:33:38', 528, 541, 23.1000004, 51.0999985, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9925, 5, '2016-08-11 10:33:52', 529, 559, 23.1000004, 51.0999985, 30040);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9927, 5, '2016-08-11 10:34:06', 519, 564, 23.1000004, 51.0999985, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9929, 5, '2016-08-11 10:34:20', 521, 571, 23.1000004, 51.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9931, 5, '2016-08-11 10:34:34', 520, 510, 23.1000004, 51.0999985, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9933, 5, '2016-08-11 10:34:49', 528, 521, 23.1000004, 51.0999985, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9935, 5, '2016-08-11 10:35:03', 528, 555, 23.1000004, 51.0999985, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9937, 5, '2016-08-11 10:35:18', 519, 555, 23.1000004, 51.0999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9939, 2, '2016-08-11 10:35:25', 1621, 633, 23.7999992, 46.7000008, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9941, 5, '2016-08-11 10:35:41', 521, 587, 23.1000004, 51.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9943, 5, '2016-08-11 10:36:00', 529, 582, 23.1000004, 51.0999985, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9949, 5, '2016-08-11 10:36:44', 528, 541, 23.2000008, 51.0999985, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9951, 5, '2016-08-11 10:36:59', 528, 571, 23.2000008, 51.0999985, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9953, 5, '2016-08-11 10:37:12', 519, 555, 23.2000008, 51.0999985, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9955, 5, '2016-08-11 10:37:27', 518, 571, 23.2000008, 51.0999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9957, 5, '2016-08-11 10:37:42', 516, 555, 23.2000008, 51.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9959, 5, '2016-08-11 10:37:56', 519, 573, 23.2000008, 51.0999985, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9961, 5, '2016-08-11 10:38:10', 517, 571, 23.2000008, 51, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9963, 5, '2016-08-11 10:38:24', 516, 534, 23.2000008, 51, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9965, 5, '2016-08-11 10:38:38', 513, 550, 23.2000008, 51, 29812);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9967, 5, '2016-08-11 10:38:53', 515, 553, 23.2000008, 51, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9969, 5, '2016-08-11 10:39:08', 513, 559, 23.2000008, 51, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9971, 1, '2016-08-11 10:39:10', 1105, 921, 23, 49, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9979, 5, '2016-08-11 10:40:20', 513, 550, 23.2000008, 51, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9993, 5, '2016-08-11 10:42:08', 662, 564, 23.2000008, 51, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9995, 5, '2016-08-11 10:42:22', 513, 551, 23.2000008, 51, 29776);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9997, 5, '2016-08-11 10:42:36', 665, 524, 23.2000008, 51, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10003, 5, '2016-08-11 10:43:15', 665, 538, 23.2000008, 51, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10005, 5, '2016-08-11 10:43:25', 515, 526, 23.2000008, 51, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10007, 5, '2016-08-11 10:43:40', 513, 539, 23.2000008, 51, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10011, 5, '2016-08-11 10:44:10', 516, 506, 23.2000008, 51, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10013, 5, '2016-08-11 10:44:24', 665, 542, 23.2000008, 51, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10015, 5, '2016-08-11 10:44:38', 516, 526, 23.2000008, 50.9000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10017, 5, '2016-08-11 10:44:52', 516, 540, 23.2000008, 50.9000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10019, 5, '2016-08-11 10:45:07', 519, 554, 23.2000008, 50.9000015, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10021, 5, '2016-08-11 10:45:21', 519, 540, 23.2000008, 50.9000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10023, 5, '2016-08-11 10:45:36', 514, 522, 23.2000008, 50.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10025, 5, '2016-08-11 10:45:57', 514, 517, 23.2000008, 50.9000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10033, 5, '2016-08-11 10:46:54', 512, 515, 23.2000008, 50.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10051, 5, '2016-08-11 10:49:03', 659, 560, 23.2000008, 50.7999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10053, 5, '2016-08-11 10:49:18', 664, 563, 23.2000008, 50.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10055, 5, '2016-08-11 10:49:33', 663, 549, 23.2000008, 50.7999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10073, 5, '2016-08-11 10:51:27', 658, 498, 23.2999992, 50.7999992, 30801);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10075, 5, '2016-08-11 10:51:41', 657, 549, 23.2999992, 50.7999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10089, 5, '2016-08-11 10:53:48', 647, 535, 23.2999992, 50.7999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10091, 5, '2016-08-11 10:54:05', 645, 513, 23.2999992, 50.7999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10093, 5, '2016-08-11 10:54:19', 644, 538, 23.2999992, 50.7999992, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10095, 5, '2016-08-11 10:54:28', 646, 565, 23.2999992, 50.7999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10097, 5, '2016-08-11 10:54:42', 641, 540, 23.2999992, 50.7000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10099, 5, '2016-08-11 10:54:55', 644, 515, 23.2999992, 50.5999985, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9678, 5, '2016-08-11 10:04:41', 513, 592, 22.7000008, 51.5, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9680, 5, '2016-08-11 10:04:54', 515, 604, 22.7000008, 51.5, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9682, 2, '2016-08-11 10:05:02', 1574, 624, 23.7999992, 46.5, 4164);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9686, 5, '2016-08-11 10:05:23', 517, 558, 22.7000008, 51.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9688, 5, '2016-08-11 10:05:36', 657, 558, 22.7000008, 51.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9690, 5, '2016-08-11 10:05:51', 665, 588, 22.7000008, 51.4000015, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9692, 5, '2016-08-11 10:06:05', 516, 581, 22.7000008, 51.4000015, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9694, 5, '2016-08-11 10:06:19', 515, 572, 22.7000008, 51.2999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9730, 5, '2016-08-11 10:10:38', 515, 586, 22.7999992, 51.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9732, 5, '2016-08-11 10:10:52', 517, 588, 22.7999992, 51.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9744, 5, '2016-08-11 10:12:19', 518, 630, 22.7999992, 51.2999992, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9754, 5, '2016-08-11 10:13:30', 518, 570, 22.8999996, 51.2999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9756, 5, '2016-08-11 10:13:46', 598, 605, 22.8999996, 51.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9758, 5, '2016-08-11 10:14:00', 657, 605, 22.8999996, 51.2999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9760, 5, '2016-08-11 10:14:14', 518, 586, 22.8999996, 51.2999992, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9764, 5, '2016-08-11 10:14:42', 662, 583, 22.8999996, 51.2999992, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9766, 5, '2016-08-11 10:14:57', 658, 579, 22.8999996, 51.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9768, 5, '2016-08-11 10:15:12', 647, 590, 22.8999996, 51.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9776, 5, '2016-08-11 10:16:09', 644, 548, 22.8999996, 51.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9778, 5, '2016-08-11 10:16:24', 647, 595, 22.8999996, 51.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9780, 5, '2016-08-11 10:16:38', 656, 588, 22.8999996, 51.5, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9782, 5, '2016-08-11 10:16:52', 258, 548, 22.8999996, 51.4000015, 31001);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9790, 5, '2016-08-11 10:17:51', 662, 607, 22.8999996, 51.5999985, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9792, 5, '2016-08-11 10:18:04', 660, 581, 22.8999996, 51.5999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9802, 5, '2016-08-11 10:19:16', 665, 557, 23, 51.5999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9812, 2, '2016-08-11 10:20:13', 1112, 628, 23.7000008, 46.7000008, 9079);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9814, 5, '2016-08-11 10:20:27', 514, 588, 23, 51.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9816, 5, '2016-08-11 10:20:41', 515, 575, 23, 51.5999985, 30745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9818, 5, '2016-08-11 10:20:52', 513, 575, 23, 51.5, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9820, 5, '2016-08-11 10:21:12', 665, 579, 23, 51.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9822, 5, '2016-08-11 10:21:32', 520, 557, 23, 51.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9824, 5, '2016-08-11 10:21:47', 513, 575, 23, 51.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9826, 5, '2016-08-11 10:22:03', 516, 566, 23, 51.4000015, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9828, 5, '2016-08-11 10:22:16', 520, 573, 23, 51.4000015, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9830, 5, '2016-08-11 10:22:34', 70, 628, 23, 51.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9832, 5, '2016-08-11 10:22:43', 660, 602, 23, 51.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9846, 5, '2016-08-11 10:24:25', 657, 621, 23, 51.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9848, 5, '2016-08-11 10:24:38', 513, 587, 23, 51.4000015, 29958);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9850, 5, '2016-08-11 10:24:53', 513, 617, 23, 51.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9864, 5, '2016-08-11 10:26:33', 518, 553, 23, 51.4000015, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9866, 5, '2016-08-11 10:26:48', 519, 584, 23, 51.4000015, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9868, 5, '2016-08-11 10:27:03', 518, 541, 23, 51.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9870, 5, '2016-08-11 10:27:17', 518, 573, 23, 51.2999992, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9872, 5, '2016-08-11 10:27:38', 520, 600, 23, 51.2999992, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9874, 5, '2016-08-11 10:27:52', 519, 550, 23, 51.2999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9876, 5, '2016-08-11 10:28:04', 518, 598, 23, 51.2999992, 29208);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9878, 5, '2016-08-11 10:28:14', 521, 573, 23, 51.2999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9880, 5, '2016-08-11 10:28:26', 519, 564, 23, 51.2999992, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9882, 5, '2016-08-11 10:28:42', 528, 575, 23, 51.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9884, 5, '2016-08-11 10:28:57', 528, 573, 23, 51.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9890, 5, '2016-08-11 10:29:40', 519, 566, 23.1000004, 51.2000008, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9892, 5, '2016-08-11 10:29:52', 529, 603, 23.1000004, 51.2000008, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9894, 5, '2016-08-11 10:30:10', 531, 564, 23.1000004, 51.2000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9918, 5, '2016-08-11 10:33:06', 520, 568, 23.1000004, 51.0999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9920, 5, '2016-08-11 10:33:19', 529, 559, 23.1000004, 51.0999985, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9922, 5, '2016-08-11 10:33:37', 528, 518, 23.1000004, 51.0999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9924, 5, '2016-08-11 10:33:44', 530, 584, 23.1000004, 51.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9926, 5, '2016-08-11 10:34:00', 529, 562, 23.1000004, 51.0999985, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9928, 5, '2016-08-11 10:34:13', 520, 589, 23.1000004, 51.0999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9934, 5, '2016-08-11 10:34:57', 528, 532, 23.1000004, 51.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9936, 5, '2016-08-11 10:35:11', 528, 571, 23.1000004, 51.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9938, 5, '2016-08-11 10:35:20', 518, 525, 23.1000004, 51.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9940, 5, '2016-08-11 10:35:39', 528, 564, 23.1000004, 51.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9942, 5, '2016-08-11 10:35:54', 528, 548, 23.1000004, 51.0999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9958, 5, '2016-08-11 10:37:48', 519, 580, 23.2000008, 51.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9960, 5, '2016-08-11 10:38:03', 517, 519, 23.2000008, 51.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9962, 5, '2016-08-11 10:38:17', 518, 519, 23.2000008, 51, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9964, 5, '2016-08-11 10:38:32', 517, 548, 23.2000008, 51, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9966, 5, '2016-08-11 10:38:46', 512, 568, 23.2000008, 51, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9968, 5, '2016-08-11 10:39:00', 515, 517, 23.2000008, 51, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9970, 5, '2016-08-11 10:39:08', 516, 521, 23.2000008, 51, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9986, 5, '2016-08-11 10:41:10', 514, 500, 23.2000008, 51, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9988, 5, '2016-08-11 10:41:24', 512, 546, 23.2000008, 51, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9994, 5, '2016-08-11 10:42:14', 663, 564, 23.2000008, 51, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9996, 5, '2016-08-11 10:42:29', 513, 553, 23.2000008, 51, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10014, 5, '2016-08-11 10:44:31', 665, 517, 23.2000008, 50.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10016, 5, '2016-08-11 10:44:45', 516, 569, 23.2000008, 50.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10018, 5, '2016-08-11 10:45:00', 516, 538, 23.2000008, 50.9000015, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10028, 5, '2016-08-11 10:46:19', 514, 526, 23.2000008, 50.9000015, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10030, 5, '2016-08-11 10:46:33', 512, 526, 23.2000008, 50.7999992, 30577);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10032, 5, '2016-08-11 10:46:47', 663, 492, 23.2000008, 50.7999992, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10062, 5, '2016-08-11 10:50:23', 658, 533, 23.2999992, 50.7999992, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10064, 5, '2016-08-11 10:50:31', 659, 533, 23.2999992, 50.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10066, 2, '2016-08-11 10:50:35', 1684, 641, 23.8999996, 47.2999992, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10068, 5, '2016-08-11 10:50:51', 658, 535, 23.2999992, 50.7999992, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10070, 5, '2016-08-11 10:51:05', 657, 515, 23.2999992, 50.7999992, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10072, 5, '2016-08-11 10:51:20', 647, 515, 23.2999992, 50.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10074, 5, '2016-08-11 10:51:35', 658, 509, 23.2999992, 50.7999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10086, 5, '2016-08-11 10:53:22', 647, 513, 23.2999992, 50.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10088, 5, '2016-08-11 10:53:37', 642, 500, 23.2999992, 50.7999992, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10116, 5, '2016-08-11 10:57:13', 648, 533, 23.2999992, 50.5999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10132, 5, '2016-08-11 10:59:07', 647, 524, 23.2999992, 50.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10140, 5, '2016-08-11 11:00:14', 135, 517, 23.2999992, 50.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10142, 5, '2016-08-11 11:00:26', 134, 504, 23.2999992, 50.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10144, 5, '2016-08-11 11:00:41', 144, 500, 23.2999992, 50.5, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10158, 5, '2016-08-11 11:02:20', 153, 524, 23.3999996, 50.5, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10160, 5, '2016-08-11 11:02:36', 150, 522, 23.3999996, 50.5999985, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9679, 5, '2016-08-11 10:04:46', 514, 572, 22.7000008, 51.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9681, 5, '2016-08-11 10:04:58', 663, 567, 22.7000008, 51.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9683, 2, '2016-08-11 10:05:02', 1574, 624, 23.7999992, 46.5, 4164);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9684, 5, '2016-08-11 10:05:08', 662, 595, 22.7000008, 51.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9696, 5, '2016-08-11 10:06:35', 513, 588, 22.7000008, 51.2999992, 29780);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9698, 5, '2016-08-11 10:06:48', 659, 588, 22.7000008, 51.2999992, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9700, 5, '2016-08-11 10:07:11', 512, 565, 22.7000008, 51.2999992, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9702, 5, '2016-08-11 10:07:25', 515, 565, 22.7000008, 51.2999992, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9704, 5, '2016-08-11 10:07:39', 646, 586, 22.7000008, 51.2999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9706, 5, '2016-08-11 10:07:53', 664, 604, 22.7000008, 51.2999992, 32785);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9708, 5, '2016-08-11 10:08:08', 512, 574, 22.7999992, 51.2000008, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9710, 5, '2016-08-11 10:08:22', 516, 524, 22.7999992, 51.2000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9712, 5, '2016-08-11 10:08:37', 517, 567, 22.7999992, 51.2000008, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9714, 5, '2016-08-11 10:08:46', 517, 595, 22.7999992, 51.2000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9716, 5, '2016-08-11 10:08:58', 518, 543, 22.7999992, 51.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9718, 5, '2016-08-11 10:09:12', 512, 554, 22.7999992, 51.2000008, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9720, 5, '2016-08-11 10:09:26', 518, 577, 22.7999992, 51.2000008, 30068);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9722, 5, '2016-08-11 10:09:41', 515, 586, 22.7999992, 51.2000008, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9724, 5, '2016-08-11 10:09:56', 516, 586, 22.7999992, 51.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9726, 5, '2016-08-11 10:10:10', 514, 565, 22.7999992, 51.2000008, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9728, 5, '2016-08-11 10:10:19', 663, 632, 22.7999992, 51.2000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9734, 5, '2016-08-11 10:11:08', 518, 598, 22.7999992, 51.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9736, 5, '2016-08-11 10:11:21', 627, 609, 22.7999992, 51.2000008, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9738, 5, '2016-08-11 10:11:36', 660, 593, 22.7999992, 51.2000008, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9740, 5, '2016-08-11 10:11:50', 627, 628, 22.7999992, 51.2000008, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9742, 5, '2016-08-11 10:12:04', 516, 579, 22.7999992, 51.2999992, 30759);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9746, 5, '2016-08-11 10:12:33', 516, 602, 22.7999992, 51.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9748, 5, '2016-08-11 10:12:48', 512, 565, 22.8999996, 51.2000008, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9750, 0, '2016-08-11 10:12:55', 529, 789, 22.5, 50, 1938);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9752, 5, '2016-08-11 10:13:16', 513, 614, 22.8999996, 51.2999992, 29734);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9762, 5, '2016-08-11 10:14:28', 515, 588, 22.8999996, 51.2999992, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9770, 5, '2016-08-11 10:15:25', 648, 600, 22.8999996, 51.2999992, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9772, 5, '2016-08-11 10:15:38', 648, 600, 22.8999996, 51.2999992, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9774, 5, '2016-08-11 10:15:54', 644, 555, 22.8999996, 51.2999992, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9784, 5, '2016-08-11 10:17:05', 646, 588, 22.8999996, 51.5, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9786, 5, '2016-08-11 10:17:20', 643, 579, 22.8999996, 51.5, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9788, 5, '2016-08-11 10:17:35', 649, 647, 22.8999996, 51.5, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9794, 5, '2016-08-11 10:18:18', 661, 595, 22.8999996, 51.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9796, 5, '2016-08-11 10:18:32', 665, 568, 22.8999996, 51.5, 30723);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9798, 5, '2016-08-11 10:18:47', 665, 588, 22.8999996, 51.5, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9800, 5, '2016-08-11 10:19:01', 665, 566, 23, 51.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9804, 5, '2016-08-11 10:19:30', 665, 588, 23, 51.5999985, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9806, 5, '2016-08-11 10:19:43', 515, 579, 23, 51.5999985, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9808, 5, '2016-08-11 10:19:59', 519, 546, 23, 51.5999985, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9810, 5, '2016-08-11 10:20:08', 518, 566, 23, 51.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9834, 5, '2016-08-11 10:22:58', 664, 584, 23, 51.5, 29720);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9836, 5, '2016-08-11 10:23:19', 665, 570, 23, 51.4000015, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9838, 5, '2016-08-11 10:23:34', 664, 571, 23, 51.4000015, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9840, 5, '2016-08-11 10:23:49', 512, 555, 23, 51.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9842, 5, '2016-08-11 10:23:58', 657, 619, 23, 51.4000015, 30293);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9844, 5, '2016-08-11 10:24:10', 663, 582, 23, 51.4000015, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9852, 5, '2016-08-11 10:25:07', 664, 631, 23, 51.4000015, 29752);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9854, 5, '2016-08-11 10:25:22', 515, 587, 23, 51.4000015, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9856, 5, '2016-08-11 10:25:37', 665, 647, 23, 51.4000015, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9858, 5, '2016-08-11 10:25:51', 518, 621, 23, 51.4000015, 26768);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9860, 5, '2016-08-11 10:26:05', 516, 564, 23, 51.4000015, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9862, 5, '2016-08-11 10:26:19', 515, 612, 23, 51.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9886, 5, '2016-08-11 10:29:11', 531, 582, 23, 51.2000008, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9888, 5, '2016-08-11 10:29:26', 530, 578, 23, 51.2000008, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9896, 5, '2016-08-11 10:30:17', 531, 596, 23.1000004, 51.2000008, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9898, 5, '2016-08-11 10:30:38', 530, 580, 23.1000004, 51.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9900, 5, '2016-08-11 10:30:53', 528, 582, 23.1000004, 51.2000008, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9902, 5, '2016-08-11 10:31:07', 531, 543, 23.1000004, 51.2000008, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9904, 5, '2016-08-11 10:31:20', 531, 566, 23.1000004, 51.2000008, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9906, 5, '2016-08-11 10:31:42', 533, 550, 23.1000004, 51.2000008, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9908, 5, '2016-08-11 10:31:57', 528, 582, 23.1000004, 51.2000008, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9910, 5, '2016-08-11 10:32:11', 530, 523, 23.1000004, 51.2000008, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9912, 3, '2016-08-11 10:32:20', 1089, 845, 22.6000004, 51.7000008, 1544);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9914, 5, '2016-08-11 10:32:34', 530, 622, 23.1000004, 51.0999985, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9916, 5, '2016-08-11 10:32:48', 530, 564, 23.1000004, 51.0999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9930, 5, '2016-08-11 10:34:28', 528, 523, 23.1000004, 51.0999985, 30727);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9932, 5, '2016-08-11 10:34:43', 528, 589, 23.1000004, 51.0999985, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9944, 5, '2016-08-11 10:36:08', 521, 525, 23.2000008, 51.0999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9946, 5, '2016-08-11 10:36:23', 520, 543, 23.1000004, 51.0999985, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9948, 5, '2016-08-11 10:36:36', 521, 566, 23.2000008, 51.0999985, 30353);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9950, 5, '2016-08-11 10:36:51', 519, 559, 23.2000008, 51.0999985, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9952, 5, '2016-08-11 10:37:07', 521, 546, 23.2000008, 51.0999985, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9954, 5, '2016-08-11 10:37:20', 521, 500, 23.2000008, 51.0999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9956, 5, '2016-08-11 10:37:31', 516, 514, 23.2000008, 51.0999985, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9972, 1, '2016-08-11 10:39:14', 1105, 921, 23, 49, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9974, 5, '2016-08-11 10:39:44', 515, 559, 23.2000008, 51, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9976, 5, '2016-08-11 10:39:58', 665, 562, 23.2000008, 51, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9978, 5, '2016-08-11 10:40:12', 515, 524, 23.2000008, 51, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9980, 5, '2016-08-11 10:40:26', 513, 504, 23.2000008, 51, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9982, 5, '2016-08-11 10:40:41', 513, 568, 23.2000008, 51, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9984, 5, '2016-08-11 10:40:55', 513, 521, 23.2000008, 51, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9990, 5, '2016-08-11 10:41:46', 513, 533, 23.2000008, 51, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9992, 5, '2016-08-11 10:41:59', 665, 546, 23.2000008, 51, 30837);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (9998, 5, '2016-08-11 10:42:43', 665, 513, 23.2000008, 51, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10000, 5, '2016-08-11 10:42:58', 513, 531, 23.2000008, 51, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10002, 5, '2016-08-11 10:43:12', 514, 560, 23.2000008, 51, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10004, 0, '2016-08-11 10:43:20', 52, 813, 22.2999992, 54, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10006, 5, '2016-08-11 10:43:34', 515, 544, 23.2000008, 51, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10008, 5, '2016-08-11 10:43:48', 516, 519, 23.2000008, 51, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10010, 5, '2016-08-11 10:44:02', 514, 578, 23.2000008, 51, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10012, 5, '2016-08-11 10:44:17', 515, 487, 23.2000008, 51, 30517);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10020, 5, '2016-08-11 10:45:13', 517, 554, 23.2000008, 50.9000015, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10022, 5, '2016-08-11 10:45:28', 517, 519, 23.2000008, 50.9000015, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10024, 5, '2016-08-11 10:45:43', 517, 485, 23.2000008, 50.9000015, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10026, 5, '2016-08-11 10:46:04', 516, 526, 23.2000008, 50.9000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10034, 5, '2016-08-11 10:47:02', 512, 481, 23.2000008, 50.7999992, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10036, 5, '2016-08-11 10:47:15', 665, 509, 23.2000008, 50.7999992, 21001);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10038, 5, '2016-08-11 10:47:26', 665, 547, 23.2000008, 50.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10040, 5, '2016-08-11 10:47:38', 512, 542, 23.2000008, 50.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10042, 5, '2016-08-11 10:47:54', 661, 509, 23.2000008, 50.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10044, 5, '2016-08-11 10:48:14', 657, 542, 23.2000008, 50.7999992, 29698);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10046, 5, '2016-08-11 10:48:27', 658, 498, 23.2000008, 50.7999992, 30064);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10048, 5, '2016-08-11 10:48:42', 659, 549, 23.2000008, 50.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10050, 5, '2016-08-11 10:48:57', 658, 513, 23.2000008, 50.7999992, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10052, 5, '2016-08-11 10:49:11', 664, 526, 23.2000008, 50.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10054, 5, '2016-08-11 10:49:26', 664, 563, 23.2000008, 50.7999992, 29748);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10056, 5, '2016-08-11 10:49:39', 664, 535, 23.2000008, 50.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10058, 5, '2016-08-11 10:49:53', 663, 509, 23.2000008, 50.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10060, 5, '2016-08-11 10:50:09', 658, 511, 23.2000008, 50.7999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10076, 5, '2016-08-11 10:52:05', 656, 522, 23.2999992, 50.7999992, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10078, 5, '2016-08-11 10:52:18', 660, 492, 23.2999992, 50.7999992, 31043);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10080, 5, '2016-08-11 10:52:32', 658, 513, 23.2999992, 50.7999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10082, 5, '2016-08-11 10:52:46', 649, 538, 23.2999992, 50.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10084, 5, '2016-08-11 10:53:08', 649, 496, 23.2999992, 50.7999992, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10090, 5, '2016-08-11 10:53:50', 646, 551, 23.2999992, 50.7999992, 30499);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10092, 5, '2016-08-11 10:54:13', 648, 509, 23.2999992, 50.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10094, 1, '2016-08-11 10:54:21', 914, 870, 23.1000004, 48.7999992, 4928);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10096, 5, '2016-08-11 10:54:34', 646, 542, 23.2999992, 50.7000008, 30833);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10098, 5, '2016-08-11 10:54:49', 645, 540, 23.2999992, 50.7000008, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10100, 5, '2016-08-11 10:55:06', 643, 535, 23.2999992, 50.5999985, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10102, 5, '2016-08-11 10:55:20', 647, 485, 23.2999992, 50.7000008, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10104, 5, '2016-08-11 10:55:32', 647, 524, 23.2999992, 50.7000008, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10106, 5, '2016-08-11 10:55:54', 645, 481, 23.2999992, 50.5999985, 29986);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10108, 5, '2016-08-11 10:56:22', 648, 554, 23.2999992, 50.5999985, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10110, 5, '2016-08-11 10:56:30', 648, 506, 23.2999992, 50.5999985, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10112, 5, '2016-08-11 10:56:42', 649, 519, 23.2999992, 50.5999985, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10114, 5, '2016-08-11 10:56:55', 645, 489, 23.2999992, 50.5999985, 30737);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10118, 5, '2016-08-11 10:57:25', 648, 477, 23.2999992, 50.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10120, 5, '2016-08-11 10:57:41', 647, 489, 23.2999992, 50.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10122, 5, '2016-08-11 10:57:56', 646, 540, 23.2999992, 50.5, 30865);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10124, 5, '2016-08-11 10:58:19', 646, 515, 23.2999992, 50.5, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10126, 5, '2016-08-11 10:58:26', 646, 522, 23.2999992, 50.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10128, 5, '2016-08-11 10:58:39', 645, 544, 23.2999992, 50.5, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10130, 5, '2016-08-11 10:58:53', 645, 506, 23.2999992, 50.5, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10134, 5, '2016-08-11 10:59:22', 647, 531, 23.2999992, 50.5, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10136, 5, '2016-08-11 10:59:36', 131, 517, 23.2999992, 50.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10138, 5, '2016-08-11 10:59:51', 135, 494, 23.2999992, 50.5, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10146, 5, '2016-08-11 11:00:58', 137, 549, 23.3999996, 50.5, 30531);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10148, 5, '2016-08-11 11:01:08', 145, 549, 23.3999996, 50.5, 30809);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10150, 5, '2016-08-11 11:01:23', 147, 535, 23.3999996, 50.5, 30545);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10152, 5, '2016-08-11 11:01:37', 147, 487, 23.3999996, 50.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10154, 5, '2016-08-11 11:01:53', 148, 522, 23.3999996, 50.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10156, 5, '2016-08-11 11:02:07', 151, 513, 23.3999996, 50.5, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10162, 3, '2016-08-11 11:02:38', 1833, 768, 23, 51.7999992, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10164, 5, '2016-08-11 11:02:50', 0, 487, 23.3999996, 50.5999985, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10166, 5, '2016-08-11 11:03:05', 1, 489, 23.3999996, 50.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10168, 5, '2016-08-11 11:03:20', 5, 547, 23.3999996, 50.4000015, 29968);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10065, 2, '2016-08-11 10:50:32', 1684, 641, 23.8999996, 47.2999992, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10067, 5, '2016-08-11 10:50:44', 658, 522, 23.2999992, 50.7999992, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10069, 5, '2016-08-11 10:50:59', 659, 556, 23.2999992, 50.7999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10071, 5, '2016-08-11 10:51:13', 648, 492, 23.2999992, 50.7999992, 30215);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10077, 5, '2016-08-11 10:52:11', 659, 567, 23.2999992, 50.7999992, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10079, 5, '2016-08-11 10:52:26', 656, 517, 23.2999992, 50.7999992, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10081, 5, '2016-08-11 10:52:39', 657, 502, 23.2999992, 50.7999992, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10083, 5, '2016-08-11 10:53:01', 656, 511, 23.2999992, 50.7999992, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10085, 5, '2016-08-11 10:53:18', 649, 502, 23.2999992, 50.7999992, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10087, 5, '2016-08-11 10:53:29', 643, 531, 23.2999992, 50.7999992, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10107, 5, '2016-08-11 10:56:07', 648, 535, 23.2999992, 50.5999985, 30855);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10109, 5, '2016-08-11 10:56:22', 656, 526, 23.2999992, 50.5999985, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10111, 5, '2016-08-11 10:56:37', 647, 506, 23.2999992, 50.5999985, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10113, 5, '2016-08-11 10:56:51', 647, 519, 23.2999992, 50.5999985, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10115, 5, '2016-08-11 10:57:05', 649, 538, 23.2999992, 50.5999985, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10117, 5, '2016-08-11 10:57:18', 647, 526, 23.2999992, 50.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10119, 5, '2016-08-11 10:57:34', 648, 551, 23.2999992, 50.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10121, 5, '2016-08-11 10:57:54', 649, 531, 23.2999992, 50.5, 30225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10143, 5, '2016-08-11 11:00:33', 144, 517, 23.2999992, 50.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10145, 5, '2016-08-11 11:00:46', 137, 524, 23.3999996, 50.5, 30289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10147, 5, '2016-08-11 11:01:02', 145, 528, 23.3999996, 50.5, 30481);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10149, 5, '2016-08-11 11:01:19', 146, 524, 23.3999996, 50.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10159, 5, '2016-08-11 11:02:28', 153, 544, 23.3999996, 50.5, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10161, 5, '2016-08-11 11:02:36', 150, 524, 23.3999996, 50.5999985, 30086);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10163, 3, '2016-08-11 11:02:43', 1833, 768, 23, 51.7999992, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10165, 5, '2016-08-11 11:02:58', 3, 492, 23.3999996, 50.5, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10101, 5, '2016-08-11 10:55:10', 645, 494, 23.2999992, 50.5999985, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10103, 5, '2016-08-11 10:55:27', 647, 492, 23.2999992, 50.7000008, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10105, 5, '2016-08-11 10:55:39', 646, 498, 23.2999992, 50.7000008, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10123, 5, '2016-08-11 10:58:09', 644, 528, 23.2999992, 50.5, 30581);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10125, 5, '2016-08-11 10:58:25', 646, 485, 23.2999992, 50.5, 30243);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10127, 0, '2016-08-11 10:58:31', 105, 724, 22.6000004, 53.5, 4118);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10129, 5, '2016-08-11 10:58:44', 648, 524, 23.2999992, 50.5, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10131, 5, '2016-08-11 10:59:00', 647, 526, 23.2999992, 50.5, 30755);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10133, 5, '2016-08-11 10:59:15', 643, 500, 23.2999992, 50.5, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10135, 5, '2016-08-11 10:59:30', 133, 504, 23.2999992, 50.5, 30008);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10137, 5, '2016-08-11 10:59:43', 134, 556, 23.2999992, 50.5, 29840);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10139, 5, '2016-08-11 10:59:57', 135, 547, 23.2999992, 50.5, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10141, 5, '2016-08-11 11:00:19', 133, 519, 23.2999992, 50.5, 30265);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10151, 5, '2016-08-11 11:01:31', 137, 498, 23.3999996, 50.5, 30275);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10153, 5, '2016-08-11 11:01:44', 144, 513, 23.3999996, 50.5, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10155, 5, '2016-08-11 11:01:59', 151, 540, 23.3999996, 50.5, 30467);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10157, 5, '2016-08-11 11:02:16', 152, 533, 23.3999996, 50.5, 30489);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10167, 5, '2016-08-11 11:03:11', 3, 535, 23.3999996, 50.5, 30599);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10169, 5, '2016-08-11 11:03:26', 4, 494, 23.3999996, 50.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10170, 5, '2016-08-11 11:03:33', 6, 506, 23.3999996, 50.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10171, 5, '2016-08-11 11:03:39', 8, 506, 23.3999996, 50.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10172, 5, '2016-08-11 11:03:47', 4, 502, 23.3999996, 50.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10173, 5, '2016-08-11 11:03:55', 7, 515, 23.3999996, 50.4000015, 30247);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10174, 5, '2016-08-11 11:04:01', 7, 502, 23.3999996, 50.4000015, 30553);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10175, 5, '2016-08-11 11:04:09', 6, 522, 23.3999996, 50.2999992, 30503);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10176, 5, '2016-08-11 11:04:16', 9, 513, 23.3999996, 50.2999992, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10177, 5, '2016-08-11 11:04:23', 9, 483, 23.3999996, 50.2999992, 26114);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10178, 5, '2016-08-11 11:04:30', 9, 540, 23.3999996, 50.2999992, 29990);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10179, 5, '2016-08-11 11:04:37', 17, 549, 23.3999996, 50.2999992, 30787);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10180, 5, '2016-08-11 11:04:43', 16, 547, 23.3999996, 50.2999992, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10181, 5, '2016-08-11 11:04:54', 7, 549, 23.3999996, 50.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10182, 5, '2016-08-11 11:05:00', 8, 526, 23.3999996, 50.4000015, 30211);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10183, 5, '2016-08-11 11:05:07', 17, 549, 23.3999996, 50.4000015, 30325);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10184, 5, '2016-08-11 11:05:13', 18, 471, 23.3999996, 50.4000015, 30993);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10185, 5, '2016-08-11 11:05:21', 16, 492, 23.3999996, 50.4000015, 30343);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10186, 5, '2016-08-11 11:05:30', 16, 535, 23.3999996, 50.4000015, 29218);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10187, 5, '2016-08-11 11:05:34', 18, 517, 23.3999996, 50.4000015, 29976);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10188, 5, '2016-08-11 11:05:41', 17, 538, 23.3999996, 50.4000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10189, 2, '2016-08-11 11:05:42', 1591, 643, 24, 47.4000015, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10190, 2, '2016-08-11 11:05:42', 1591, 643, 24, 47.4000015, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10191, 5, '2016-08-11 11:05:46', 18, 500, 23.3999996, 50.4000015, 30018);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10192, 5, '2016-08-11 11:05:55', 20, 500, 23.3999996, 50.4000015, 30096);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10193, 5, '2016-08-11 11:06:04', 8, 511, 23.3999996, 50.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10194, 5, '2016-08-11 11:06:22', 19, 533, 23.3999996, 50.4000015, 30004);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10195, 5, '2016-08-11 11:06:25', 16, 513, 23.3999996, 50.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10196, 5, '2016-08-11 11:06:33', 19, 504, 23.3999996, 50.4000015, 30471);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10197, 5, '2016-08-11 11:06:41', 19, 522, 23.3999996, 50.4000015, 30233);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10198, 5, '2016-08-11 11:06:47', 9, 524, 23.3999996, 50.4000015, 30321);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10199, 5, '2016-08-11 11:06:55', 18, 524, 23.3999996, 50.4000015, 30549);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10200, 5, '2016-08-11 11:07:01', 16, 483, 23.3999996, 50.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10201, 5, '2016-08-11 11:07:11', 8, 489, 23.3999996, 50.4000015, 30521);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10202, 5, '2016-08-11 11:07:15', 16, 519, 23.3999996, 50.4000015, 30297);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10203, 5, '2016-08-11 11:07:23', 19, 511, 23.3999996, 50.4000015, 29954);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10204, 5, '2016-08-11 11:07:30', 20, 519, 23.3999996, 50.4000015, 30036);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10205, 5, '2016-08-11 11:07:36', 19, 517, 23.3999996, 50.4000015, 30032);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10206, 5, '2016-08-11 11:07:44', 19, 483, 23.3999996, 50.4000015, 29808);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10207, 5, '2016-08-11 11:07:51', 22, 492, 23.3999996, 50.4000015, 30777);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10208, 5, '2016-08-11 11:07:58', 19, 498, 23.3999996, 50.4000015, 30261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10209, 5, '2016-08-11 11:09:30', 21, 502, 23.3999996, 50.4000015, 30609);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10210, 1, '2016-08-11 11:10:56', 867, 844, 23.2000008, 48.7999992, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10211, 0, '2016-08-11 11:14:26', 263, 671, 22.7000008, 53.5, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10212, 0, '2016-08-11 11:14:56', 263, 671, 22.7000008, 53.5, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10213, 3, '2016-08-11 11:17:48', 1655, 741, 23.2000008, 51.7999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10214, 3, '2016-08-11 11:18:13', 1655, 741, 23.2000008, 51.7999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10215, 3, '2016-08-11 11:18:37', 1655, 741, 23.2000008, 51.7999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10216, 3, '2016-08-11 11:20:52', 1655, 741, 23.2000008, 51.7999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10217, 2, '2016-08-11 11:21:06', 832, 623, 24, 47.7999992, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10218, 2, '2016-08-11 11:21:42', 832, 623, 24, 47.7999992, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10219, 2, '2016-08-11 11:21:43', 832, 623, 24, 47.7999992, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10220, 2, '2016-08-11 11:22:51', 832, 623, 24, 47.7999992, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10221, 1, '2016-08-11 11:25:06', 633, 807, 23.3999996, 48.9000015, 1814);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10222, 1, '2016-08-11 11:25:30', 633, 807, 23.3999996, 48.9000015, 1814);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10223, 1, '2016-08-11 11:25:50', 633, 807, 23.3999996, 48.9000015, 1814);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10224, 0, '2016-08-11 12:37:43', 357, 555, 22.7000008, 54.5, 1398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10225, 3, '2016-08-11 12:37:45', 1609, 615, 23.2999992, 52.5, 1320);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10226, 3, '2016-08-11 12:38:34', 1609, 615, 23.2999992, 52.5, 1320);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10227, 1, '2016-08-11 12:40:23', 536, 658, 23.7000008, 48.5999985, 4630);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10228, 2, '2016-08-11 12:40:44', 773, 549, 24.1000004, 49, 9573);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10229, 2, '2016-08-11 12:40:50', 773, 549, 24.1000004, 49, 9573);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10230, 0, '2016-08-11 12:52:53', 514, 574, 22.7999992, 54.5999985, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10231, 0, '2016-08-11 12:52:53', 514, 574, 22.7999992, 54.5999985, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10232, 0, '2016-08-11 12:53:21', 514, 574, 22.7999992, 54.5999985, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10233, 1, '2016-08-11 12:55:28', 881, 684, 23.6000004, 49, 4164);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10234, 2, '2016-08-11 12:55:56', 1686, 578, 24, 49.5, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10235, 0, '2016-08-11 13:08:36', 57, 581, 22.7000008, 52.2000008, 1586);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10236, 1, '2016-08-11 13:11:02', 1089, 623, 23.6000004, 49.2000008, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10237, 1, '2016-08-11 13:11:02', 1089, 623, 23.6000004, 49.2000008, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10238, 2, '2016-08-11 13:11:09', 1619, 611, 24, 50.0999985, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10239, 1, '2016-08-11 13:11:27', 1089, 623, 23.6000004, 49.2000008, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10240, 2, '2016-08-11 13:11:37', 1619, 611, 24, 50.0999985, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10241, 2, '2016-08-11 13:11:55', 1619, 611, 24, 50.0999985, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10242, 2, '2016-08-11 13:12:03', 1619, 611, 24, 50.0999985, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10243, 1, '2016-08-11 13:14:08', 1089, 623, 23.6000004, 49.2000008, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10244, 0, '2016-08-11 13:16:33', 25, 736, 22.3999996, 53.2999992, 1088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10245, 3, '2016-08-11 14:01:19', 1, 803, 25.5, 47.2000008, 21569);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10246, 0, '2016-08-11 14:02:52', 304, 832, 22.6000004, 53.2000008, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10247, 0, '2016-08-11 14:02:52', 304, 832, 22.6000004, 53.2000008, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10248, 0, '2016-08-11 14:03:19', 304, 832, 22.6000004, 53.2000008, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10249, 2, '2016-08-11 14:14:00', 1574, 882, 24.7999992, 50, 8261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10250, 2, '2016-08-11 14:14:29', 1574, 882, 24.7999992, 50, 8261);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10251, 1, '2016-08-11 14:15:40', 1345, 829, 24.1000004, 49, 1376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10252, 3, '2016-08-11 14:16:53', 2169, 906, 24.7000008, 50.9000015, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10253, 3, '2016-08-11 14:17:21', 2169, 906, 24.7000008, 50.9000015, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10254, 0, '2016-08-11 14:18:28', 594, 762, 22, 55.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10255, 0, '2016-08-11 14:18:36', 594, 762, 22, 55.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10256, 0, '2016-08-11 14:18:53', 594, 762, 22, 55.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10257, 2, '2016-08-11 14:29:41', 1397, 869, 24.8999996, 50.9000015, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10258, 1, '2016-08-11 14:30:44', 2198, 974, 24.5, 49.5, 1288);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10259, 1, '2016-08-11 14:32:28', 2198, 974, 24.5, 49.5, 1288);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10260, 3, '2016-08-11 14:32:29', 2070, 844, 25, 51, 1842);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10261, 3, '2016-08-11 14:33:11', 2070, 844, 25, 51, 1842);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10262, 0, '2016-08-11 14:36:22', 594, 771, 22.2000008, 57.7000008, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10263, 2, '2016-08-11 14:44:44', 851, 834, 24.8999996, 50.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10264, 2, '2016-08-11 14:45:08', 851, 834, 24.8999996, 50.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10265, 2, '2016-08-11 14:45:33', 851, 834, 24.8999996, 50.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10266, 2, '2016-08-11 14:45:33', 851, 834, 24.8999996, 50.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10267, 2, '2016-08-11 14:45:54', 851, 834, 24.8999996, 50.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10268, 1, '2016-08-11 14:46:24', 4697, 879, 24.5, 48.9000015, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10269, 2, '2016-08-11 14:47:39', 851, 834, 24.8999996, 50.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10270, 3, '2016-08-11 14:47:41', 1411, 806, 25, 50.2999992, 1380);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10271, 0, '2016-08-11 14:49:38', 580, 804, 22.7000008, 56.5, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10272, 0, '2016-08-11 14:50:02', 580, 804, 22.7000008, 56.5, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10273, 0, '2016-08-11 14:51:13', 580, 804, 22.7000008, 56.5, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10274, 1, '2016-08-11 15:02:32', 4226, 805, 24.5, 48.5999985, 1632);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10275, 2, '2016-08-11 15:02:32', 1369, 702, 25.1000004, 49.4000015, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10276, 2, '2016-08-11 15:02:50', 1369, 702, 25.1000004, 49.4000015, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10277, 3, '2016-08-11 15:04:50', 2052, 710, 25.2999992, 49.5, 4118);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10278, 0, '2016-08-11 15:05:39', 612, 924, 22.3999996, 53.2999992, 1604);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10279, 0, '2016-08-11 15:06:27', 612, 924, 22.3999996, 53.2999992, 1604);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10280, 1, '2016-08-11 15:16:28', 1027, 903, 24.3999996, 48.0999985, 4626);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10281, 1, '2016-08-11 15:17:42', 1027, 903, 24.3999996, 48.0999985, 4626);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10282, 2, '2016-08-11 15:17:43', 1425, 647, 25.1000004, 48.7999992, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10283, 2, '2016-08-11 15:18:00', 1425, 647, 25.1000004, 48.7999992, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10284, 3, '2016-08-11 15:18:01', 1873, 630, 25.2999992, 48.7999992, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10285, 3, '2016-08-11 15:18:15', 1873, 630, 25.2999992, 48.7999992, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10286, 0, '2016-08-11 15:25:10', 592, 917, 22.2999992, 57.7000008, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10287, 1, '2016-08-11 15:32:54', 1858, 799, 24.2999992, 48.4000015, 4164);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10288, 2, '2016-08-11 15:33:11', 866, 652, 25.1000004, 48.5, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10289, 3, '2016-08-11 15:33:11', 1048, 647, 25.2999992, 48.5, 1376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10290, 3, '2016-08-11 15:35:19', 1048, 647, 25.2999992, 48.5, 1376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10291, 0, '2016-08-11 15:36:32', 660, 982, 22.7000008, 58.2000008, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10292, 1, '2016-08-11 15:48:05', 1348, 830, 24.2000008, 49, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10293, 2, '2016-08-11 15:48:22', 867, 663, 25.1000004, 48.5, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10294, 3, '2016-08-11 15:48:23', 1044, 617, 25.2999992, 48.5999985, 1380);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10295, 3, '2016-08-11 15:51:11', 1044, 617, 25.2999992, 48.5999985, 1380);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10296, 0, '2016-08-11 15:51:12', 517, 978, 22.8999996, 56.7000008, 5426);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10297, 0, '2016-08-11 15:54:18', 517, 978, 22.8999996, 56.7000008, 5426);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10298, 2, '2016-08-11 16:03:15', 849, 612, 25.1000004, 48.5999985, 6039);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10299, 1, '2016-08-11 16:03:16', 1619, 920, 24.2000008, 49.2999992, 6039);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10300, 2, '2016-08-11 16:03:19', 849, 612, 25.1000004, 48.5999985, 6039);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10301, 3, '2016-08-11 16:03:54', 1049, 658, 25.2000008, 48.5999985, 5633);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10302, 0, '2016-08-11 16:06:37', 566, 954, 22.2000008, 51.0999985, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10303, 0, '2016-08-11 16:12:20', 566, 954, 22.2000008, 51.0999985, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10304, 1, '2016-08-11 16:18:26', 1049, 1039, 24.2000008, 48.7999992, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10305, 2, '2016-08-11 16:18:44', 833, 674, 25, 48.5, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10306, 3, '2016-08-11 16:21:21', 1078, 603, 25.2000008, 48.5, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10307, 0, '2016-08-11 16:21:58', 4, 874, 21.8999996, 50.7999992, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10308, 0, '2016-08-11 16:22:01', 4, 874, 21.8999996, 50.7999992, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10309, 1, '2016-08-11 16:33:37', 784, 879, 24.1000004, 48.0999985, 1682);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10310, 3, '2016-08-11 16:33:54', 1030, 658, 25.1000004, 48.4000015, 1398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10311, 2, '2016-08-11 16:33:54', 807, 658, 25, 48.2999992, 9751);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10312, 3, '2016-08-11 16:34:19', 1030, 658, 25.1000004, 48.4000015, 1398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10313, 3, '2016-08-11 16:36:19', 1030, 658, 25.1000004, 48.4000015, 1398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10314, 0, '2016-08-11 16:39:23', 115, 747, 21.7999992, 49, 9079);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10315, 1, '2016-08-11 16:48:23', 406, 869, 24, 47.2000008, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10316, 2, '2016-08-11 16:49:12', 596, 655, 24.8999996, 48.0999985, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10317, 3, '2016-08-11 16:52:19', 802, 672, 25, 48.0999985, 1608);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10318, 0, '2016-08-11 16:56:38', 102, 676, 21.6000004, 47.2000008, 6423);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10319, 1, '2016-08-11 17:03:21', 631, 744, 23.7999992, 46.7999992, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10320, 1, '2016-08-11 17:03:22', 631, 744, 23.7999992, 46.7999992, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10321, 1, '2016-08-11 17:03:58', 631, 744, 23.7999992, 46.7999992, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10322, 3, '2016-08-11 17:04:40', 276, 592, 24.8999996, 48, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10323, 2, '2016-08-11 17:04:40', 20, 614, 24.7999992, 47.9000015, 4644);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10324, 3, '2016-08-11 17:06:23', 276, 592, 24.8999996, 48, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10325, 0, '2016-08-11 17:07:29', 89, 644, 21.6000004, 50.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10326, 0, '2016-08-11 17:15:24', 89, 644, 21.6000004, 50.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10327, 2, '2016-08-11 17:19:09', 608, 602, 24.7999992, 47.9000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10328, 1, '2016-08-11 17:19:09', 787, 730, 23.6000004, 47.0999985, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10329, 2, '2016-08-11 17:19:51', 608, 602, 24.7999992, 47.9000015, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10330, 3, '2016-08-11 17:19:52', 1029, 555, 24.7999992, 48.0999985, 1352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10331, 3, '2016-08-11 17:22:40', 1029, 555, 24.7999992, 48.0999985, 1352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10332, 0, '2016-08-11 17:24:25', 360, 613, 21.7000008, 50.4000015, 1554);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10333, 1, '2016-08-11 17:34:21', 772, 738, 23.5, 47.0999985, 2354);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10334, 2, '2016-08-11 17:34:30', 614, 590, 24.7999992, 47.9000015, 4118);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10335, 3, '2016-08-11 17:36:52', 1139, 571, 24.7000008, 48, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10336, 0, '2016-08-11 17:42:27', 311, 610, 21.6000004, 47.5999985, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10337, 1, '2016-08-11 17:49:32', 626, 673, 23.3999996, 46.7999992, 2322);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10338, 2, '2016-08-11 17:50:13', 4, 549, 24.6000004, 47.9000015, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10339, 3, '2016-08-11 17:51:27', 17, 568, 24.6000004, 48.2000008, 1344);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10340, 0, '2016-08-11 17:53:26', 278, 589, 21.5, 46.5, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10341, 0, '2016-08-11 17:53:27', 278, 589, 21.5, 46.5, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10342, 0, '2016-08-11 17:56:55', 278, 589, 21.5, 46.5, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10343, 1, '2016-08-11 18:04:42', 529, 673, 23.3999996, 46.5, 5929);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10344, 2, '2016-08-11 18:05:24', 549, 564, 24.6000004, 47.9000015, 5120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10345, 3, '2016-08-11 18:05:25', 1063, 535, 24.6000004, 48.2000008, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10346, 3, '2016-08-11 18:06:57', 1063, 535, 24.6000004, 48.2000008, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10347, 0, '2016-08-11 18:09:29', 68, 569, 21.3999996, 45.5999985, 5376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10348, 1, '2016-08-11 18:19:50', 614, 642, 23.2999992, 46.2999992, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10349, 2, '2016-08-11 18:20:35', 151, 536, 24.5, 48.0999985, 4168);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10350, 3, '2016-08-11 18:23:49', 153, 548, 24.5, 48.2999992, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10351, 0, '2016-08-11 18:24:13', 99, 589, 21.3999996, 50.0999985, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10352, 0, '2016-08-11 18:24:14', 99, 589, 21.3999996, 50.0999985, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10353, 0, '2016-08-11 18:27:01', 99, 589, 21.3999996, 50.0999985, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10354, 1, '2016-08-11 18:35:04', 633, 603, 23.2000008, 46.9000015, 2198);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10355, 2, '2016-08-11 18:35:46', 128, 514, 24.3999996, 48.4000015, 4196);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10356, 3, '2016-08-11 18:37:02', 0, 504, 24.3999996, 48.5999985, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10357, 0, '2016-08-11 18:45:33', 97, 540, 21.5, 50, 4872);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10358, 1, '2016-08-11 18:50:16', 773, 601, 23.1000004, 47.0999985, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10359, 2, '2016-08-11 18:50:56', 151, 543, 24.2999992, 48.5999985, 6245);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10360, 3, '2016-08-11 18:54:33', 24, 517, 24.2999992, 48.7000008, 1558);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10361, 0, '2016-08-11 18:56:04', 103, 564, 21.3999996, 46.9000015, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10362, 1, '2016-08-11 19:05:08', 342, 557, 23, 46.7999992, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10363, 2, '2016-08-11 19:06:07', 103, 528, 24.2000008, 48.5, 4672);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10364, 3, '2016-08-11 19:07:07', 99, 572, 24.2000008, 48.7000008, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10365, 0, '2016-08-11 19:12:35', 88, 560, 21.2000008, 50.4000015, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10366, 1, '2016-08-11 19:20:37', 312, 583, 22.8999996, 47.0999985, 1572);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10367, 2, '2016-08-11 19:21:18', 83, 528, 24.1000004, 48.0999985, 4246);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10368, 3, '2016-08-11 19:21:36', 50, 545, 24.1000004, 48.2999992, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10369, 0, '2016-08-11 19:27:10', 35, 515, 21.3999996, 51.7000008, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10370, 1, '2016-08-11 19:35:48', 65, 555, 22.7999992, 47.5, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10371, 2, '2016-08-11 19:36:29', 53, 531, 24.1000004, 47.7999992, 2354);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10372, 3, '2016-08-11 19:36:54', 1, 537, 24.1000004, 48, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10373, 3, '2016-08-11 19:37:12', 1, 537, 24.1000004, 48, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10374, 0, '2016-08-11 19:41:22', 9, 523, 21.3999996, 47.9000015, 4360);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10375, 1, '2016-08-11 19:50:26', 54, 600, 22.7000008, 47.2000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10376, 2, '2016-08-11 19:51:00', 37, 520, 24, 47.4000015, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10377, 2, '2016-08-11 19:52:05', 37, 520, 24, 47.4000015, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10378, 3, '2016-08-11 19:52:05', 132, 551, 24, 47.5, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10379, 3, '2016-08-11 19:55:17', 132, 551, 24, 47.5, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10380, 0, '2016-08-11 19:55:18', 2, 540, 21.1000004, 48.5999985, 4424);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10381, 0, '2016-08-11 19:57:16', 2, 540, 21.1000004, 48.5999985, 4424);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10382, 1, '2016-08-11 20:06:10', 17, 552, 22.6000004, 47.0999985, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10383, 2, '2016-08-11 20:06:38', 33, 542, 24, 46.7000008, 4680);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10384, 3, '2016-08-11 20:07:18', 128, 559, 23.8999996, 47.0999985, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10385, 0, '2016-08-11 20:10:28', 1, 561, 21.1000004, 50.2000008, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10386, 0, '2016-08-11 20:15:39', 1, 561, 21.1000004, 50.2000008, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10387, 1, '2016-08-11 20:21:21', 4, 510, 22.6000004, 47.2999992, 8705);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10388, 2, '2016-08-11 20:22:27', 33, 551, 23.7000008, 47.2000008, 16792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10389, 3, '2016-08-11 20:24:45', 121, 547, 23.6000004, 47.5999985, 1558);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10390, 0, '2016-08-11 20:26:42', 0, 536, 21.1000004, 48, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10391, 1, '2016-08-11 20:36:32', 4, 554, 22.5, 47.0999985, 2312);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10392, 2, '2016-08-11 20:37:22', 34, 550, 23.8999996, 46.9000015, 4754);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10393, 3, '2016-08-11 20:40:18', 128, 544, 23.8999996, 47.0999985, 2326);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10394, 0, '2016-08-11 20:40:51', 1, 540, 21.1000004, 51, 6035);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10395, 0, '2016-08-11 20:42:41', 1, 540, 21.1000004, 51, 6035);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10396, 1, '2016-08-11 20:51:42', 2, 498, 22.3999996, 47.5, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10397, 2, '2016-08-11 20:52:07', 32, 507, 24, 46.7000008, 4630);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10398, 2, '2016-08-11 20:52:07', 32, 507, 24, 46.7000008, 4630);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10399, 2, '2016-08-11 20:52:48', 32, 507, 24, 46.7000008, 4630);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10400, 3, '2016-08-11 20:53:54', 120, 515, 24, 46.7999992, 2148);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10401, 0, '2016-08-11 20:56:01', 1, 529, 21.2999992, 51.7000008, 1604);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10402, 0, '2016-08-11 20:57:25', 1, 529, 21.2999992, 51.7000008, 1604);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10403, 1, '2016-08-11 21:07:18', 2, 544, 22.3999996, 47.7999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10404, 2, '2016-08-11 21:07:19', 32, 518, 24, 46.5999985, 5128);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10405, 2, '2016-08-11 21:07:27', 32, 518, 24, 46.5999985, 5128);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10406, 3, '2016-08-11 21:09:44', 120, 518, 24.2000008, 46.5999985, 1426);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10407, 0, '2016-08-11 21:12:02', 1, 571, 21.3999996, 51.0999985, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10408, 1, '2016-08-11 21:22:29', 2, 503, 22.2999992, 47.9000015, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10409, 2, '2016-08-11 21:22:30', 32, 536, 24.1000004, 46.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10410, 2, '2016-08-11 21:23:10', 32, 536, 24.1000004, 46.2000008, 4416);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10411, 3, '2016-08-11 21:26:23', 120, 512, 24.2999992, 46, 1600);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10412, 0, '2016-08-11 21:26:47', 1, 548, 21.2000008, 49, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10413, 0, '2016-08-11 21:27:31', 1, 548, 21.2000008, 49, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10414, 1, '2016-08-11 21:37:33', 2, 525, 22.2000008, 47.7999992, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10415, 2, '2016-08-11 21:37:41', 32, 527, 24.1000004, 45.7999992, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10416, 2, '2016-08-11 21:38:20', 32, 527, 24.1000004, 45.7999992, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10417, 3, '2016-08-11 21:39:14', 120, 489, 24.2999992, 45.5999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10418, 0, '2016-08-11 21:41:58', 1, 525, 21.2000008, 51.0999985, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10419, 0, '2016-08-11 21:45:47', 1, 525, 21.2000008, 51.0999985, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10420, 1, '2016-08-11 21:52:51', 2, 560, 22.2000008, 47.9000015, 1938);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10421, 2, '2016-08-11 21:53:31', 32, 507, 24, 45.5999985, 2166);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10422, 3, '2016-08-11 21:53:31', 120, 536, 24.1000004, 45.5, 5779);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10423, 3, '2016-08-11 21:54:46', 120, 536, 24.1000004, 45.5, 5779);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10424, 0, '2016-08-11 21:57:20', 1, 523, 21.3999996, 50.7999992, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10425, 1, '2016-08-11 22:07:37', 2, 595, 22.1000004, 48.0999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10426, 2, '2016-08-11 22:08:42', 32, 536, 24, 45.5999985, 2376);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10427, 3, '2016-08-11 22:09:07', 120, 539, 24, 45.5, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10428, 3, '2016-08-11 22:09:31', 120, 539, 24, 45.5, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10429, 3, '2016-08-11 22:09:32', 120, 539, 24, 45.5, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10430, 3, '2016-08-11 22:11:48', 120, 539, 24, 45.5, 4658);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10431, 0, '2016-08-11 22:12:48', 1, 545, 21.2000008, 48, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10432, 1, '2016-08-11 22:23:13', 2, 537, 22.1000004, 47.9000015, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10433, 2, '2016-08-11 22:24:33', 32, 537, 24, 45.5, 2340);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10434, 3, '2016-08-11 22:24:43', 120, 548, 23.8999996, 45.4000015, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10435, 3, '2016-08-11 22:27:31', 120, 548, 23.8999996, 45.4000015, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10436, 0, '2016-08-11 22:27:41', 1, 557, 21.2000008, 50.7000008, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10437, 1, '2016-08-11 22:37:43', 2, 576, 22, 48, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10438, 2, '2016-08-11 22:40:02', 32, 552, 23.8999996, 45.5, 4352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10439, 3, '2016-08-11 22:42:18', 120, 504, 23.8999996, 45.5, 1832);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10440, 0, '2016-08-11 22:47:45', 1, 574, 21.3999996, 50.4000015, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10441, 1, '2016-08-11 22:53:35', 2, 547, 22, 48.0999985, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10442, 2, '2016-08-11 22:55:04', 34, 533, 23.7999992, 45.4000015, 4758);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10443, 3, '2016-08-11 22:55:28', 128, 566, 23.7999992, 45.5, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10444, 3, '2016-08-11 22:55:53', 128, 566, 23.7999992, 45.5, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10445, 3, '2016-08-11 22:57:47', 128, 566, 23.7999992, 45.5, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10446, 0, '2016-08-11 23:00:48', 1, 545, 21.2000008, 48.9000015, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10447, 1, '2016-08-11 23:07:48', 2, 554, 22, 48, 1860);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10448, 2, '2016-08-11 23:08:45', 34, 538, 23.7000008, 45.4000015, 5633);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10449, 2, '2016-08-11 23:09:52', 34, 538, 23.7000008, 45.4000015, 5633);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10450, 3, '2016-08-11 23:12:46', 120, 518, 23.7000008, 45.5, 6017);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10451, 0, '2016-08-11 23:13:04', 1, 537, 21.2999992, 51.2000008, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10452, 0, '2016-08-11 23:15:53', 1, 537, 21.2999992, 51.2000008, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10453, 1, '2016-08-11 23:22:56', 2, 614, 22, 48.2000008, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10454, 2, '2016-08-11 23:24:55', 32, 525, 23.6000004, 45.5999985, 8745);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10455, 3, '2016-08-11 23:27:52', 120, 538, 23.6000004, 45.7000008, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10456, 0, '2016-08-11 23:28:15', 1, 557, 21.2999992, 49.0999985, 1636);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10457, 0, '2016-08-11 23:33:05', 1, 557, 21.2999992, 49.0999985, 1636);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10458, 1, '2016-08-11 23:39:08', 2, 576, 21.8999996, 48.2000008, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10459, 2, '2016-08-11 23:41:26', 34, 525, 23.6000004, 45.5, 20483);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10460, 3, '2016-08-11 23:42:57', 120, 537, 23.6000004, 45.5999985, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10461, 0, '2016-08-11 23:43:25', 1, 550, 21.2000008, 49.5, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10462, 0, '2016-08-11 23:46:08', 1, 550, 21.2000008, 49.5, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10463, 1, '2016-08-11 23:53:25', 2, 504, 21.8999996, 48, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10464, 2, '2016-08-11 23:55:12', 34, 505, 23.5, 45.5, 4420);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10465, 3, '2016-08-11 23:57:00', 120, 535, 23.5, 45.5999985, 1288);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10466, 3, '2016-08-11 23:57:57', 120, 535, 23.5, 45.5999985, 1288);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10467, 0, '2016-08-11 23:58:37', 1, 523, 21.2999992, 51, 6241);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10468, 0, '2016-08-12 00:00:58', 1, 523, 21.2999992, 51, 6241);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10469, 1, '2016-08-12 00:09:29', 2, 585, 21.8999996, 48.2000008, 1686);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10470, 2, '2016-08-12 00:12:12', 34, 518, 23.5, 45.7000008, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10471, 3, '2016-08-12 00:13:19', 120, 544, 23.3999996, 45.7000008, 1608);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10472, 0, '2016-08-12 00:18:00', 1, 562, 21.2999992, 47.7000008, 5889);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10473, 1, '2016-08-12 00:23:55', 2, 577, 21.7999992, 48.0999985, 4502);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10474, 2, '2016-08-12 00:27:23', 34, 539, 23.3999996, 45.5999985, 4374);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10475, 3, '2016-08-12 00:27:58', 128, 544, 23.3999996, 45.7000008, 10565);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10476, 0, '2016-08-12 00:31:26', 1, 514, 21.2000008, 50.7999992, 1842);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10477, 1, '2016-08-12 00:39:50', 2, 556, 21.7999992, 48.2999992, 4928);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10478, 2, '2016-08-12 00:40:30', 34, 500, 23.2999992, 45.7999992, 4648);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10479, 3, '2016-08-12 00:44:09', 128, 524, 23.2999992, 45.7999992, 2198);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10480, 0, '2016-08-12 00:44:18', 1, 512, 21.3999996, 49.9000015, 1864);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10481, 1, '2016-08-12 00:54:27', 2, 582, 21.7999992, 48.4000015, 1810);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10482, 2, '2016-08-12 00:55:02', 34, 525, 23.3999996, 45.7999992, 12816);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10483, 3, '2016-08-12 00:58:06', 120, 533, 23.5, 45.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10484, 3, '2016-08-12 00:58:38', 120, 533, 23.5, 45.7000008, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10485, 0, '2016-08-12 01:04:03', 1, 564, 21.2000008, 47.2999992, 1892);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10486, 1, '2016-08-12 01:10:12', 2, 551, 21.7000008, 48.2000008, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10487, 2, '2016-08-12 01:13:20', 34, 518, 23.6000004, 45.7000008, 4352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10488, 3, '2016-08-12 01:13:21', 120, 476, 23.7999992, 45.2999992, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10489, 3, '2016-08-12 01:14:29', 120, 476, 23.7999992, 45.2999992, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10490, 0, '2016-08-12 01:14:46', 1, 566, 21.1000004, 50.0999985, 1856);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10491, 1, '2016-08-12 01:24:56', 2, 563, 21.7000008, 48.2999992, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10492, 2, '2016-08-12 01:25:50', 34, 530, 23.7000008, 45.5999985, 4388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10493, 3, '2016-08-12 01:29:41', 120, 508, 23.8999996, 45.2000008, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10494, 0, '2016-08-12 01:34:54', 1, 519, 21.2999992, 49.5999985, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10495, 1, '2016-08-12 01:40:06', 2, 568, 21.7000008, 48.4000015, 4932);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10496, 2, '2016-08-12 01:43:41', 34, 528, 23.7999992, 45.2999992, 4736);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10497, 3, '2016-08-12 01:43:58', 120, 544, 24, 44.7999992, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10498, 0, '2016-08-12 01:45:16', 1, 536, 21.2000008, 48.2999992, 1636);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10499, 1, '2016-08-12 01:55:27', 2, 537, 21.7000008, 48.2999992, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10500, 2, '2016-08-12 01:58:07', 34, 487, 23.7999992, 45, 4726);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10501, 3, '2016-08-12 02:00:02', 120, 479, 23.8999996, 44.5999985, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10502, 0, '2016-08-12 02:02:06', 1, 533, 21.2000008, 50.7000008, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10503, 1, '2016-08-12 02:10:56', 2, 589, 21.7000008, 48.4000015, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10504, 2, '2016-08-12 02:11:10', 34, 521, 23.7000008, 44.9000015, 12645);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10505, 3, '2016-08-12 02:15:26', 120, 499, 23.8999996, 44.5999985, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10506, 0, '2016-08-12 02:15:46', 1, 551, 21.2999992, 47.7000008, 6401);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10507, 1, '2016-08-12 02:25:10', 2, 528, 21.6000004, 48.2000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10508, 2, '2016-08-12 02:26:07', 34, 530, 23.7000008, 44.7999992, 18278);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10509, 2, '2016-08-12 02:28:22', 34, 530, 23.7000008, 44.7999992, 18278);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10510, 3, '2016-08-12 02:29:14', 120, 492, 23.7999992, 44.5, 1938);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10511, 3, '2016-08-12 02:29:17', 120, 492, 23.7999992, 44.5, 1938);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10512, 0, '2016-08-12 02:34:11', 1, 505, 21.2000008, 50.0999985, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10513, 2, '2016-08-12 02:41:18', 34, 503, 23.6000004, 44.9000015, 4480);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10514, 1, '2016-08-12 02:41:18', 2, 553, 21.6000004, 48.2999992, 4104);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10515, 2, '2016-08-12 02:43:11', 34, 503, 23.6000004, 44.9000015, 4480);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10516, 3, '2016-08-12 02:44:25', 128, 496, 23.7000008, 44.7000008, 1938);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10517, 3, '2016-08-12 02:45:34', 128, 496, 23.7000008, 44.7000008, 1938);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10518, 0, '2016-08-12 02:45:35', 1, 517, 21.2999992, 49, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10519, 0, '2016-08-12 02:46:14', 1, 517, 21.2999992, 49, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10520, 1, '2016-08-12 02:56:25', 2, 542, 21.6000004, 48.4000015, 2198);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10521, 2, '2016-08-12 02:58:32', 34, 538, 23.6000004, 44.9000015, 4736);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10522, 3, '2016-08-12 03:00:00', 120, 527, 23.6000004, 44.7000008, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10523, 3, '2016-08-12 03:00:45', 120, 527, 23.6000004, 44.7000008, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10524, 0, '2016-08-12 03:01:12', 1, 531, 21.2000008, 49.0999985, 1920);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10525, 1, '2016-08-12 03:11:40', 2, 525, 21.6000004, 48.2000008, 1654);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10526, 2, '2016-08-12 03:14:35', 34, 494, 23.5, 44.7999992, 4470);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10527, 3, '2016-08-12 03:15:56', 128, 528, 23.5, 44.7000008, 5010);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10528, 0, '2016-08-12 03:16:45', 1, 546, 21.2999992, 50.5999985, 1664);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10529, 1, '2016-08-12 03:26:51', 2, 519, 21.6000004, 48.4000015, 13350);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10530, 2, '2016-08-12 03:26:54', 34, 514, 23.3999996, 45, 4352);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10531, 0, '2016-08-12 03:31:07', 1, 530, 21.2999992, 48.7000008, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10532, 3, '2016-08-12 03:31:07', 128, 524, 23.5, 44.9000015, 2056);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10533, 0, '2016-08-12 03:32:42', 1, 530, 21.2999992, 48.7000008, 4402);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10534, 1, '2016-08-12 03:41:45', 2, 528, 21.5, 48.4000015, 2084);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10535, 2, '2016-08-12 03:45:33', 34, 525, 23.5, 45, 4886);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10536, 3, '2016-08-12 03:46:16', 65, 476, 23.7000008, 44.7000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10537, 0, '2016-08-12 03:47:14', 1, 529, 21.1000004, 48.0999985, 9225);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10538, 1, '2016-08-12 03:57:12', 2, 576, 21.5, 48.2999992, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10539, 2, '2016-08-12 03:57:24', 23, 523, 23.7000008, 44.9000015, 12948);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10540, 3, '2016-08-12 04:01:29', 65, 522, 23.8999996, 44.5, 1686);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10541, 0, '2016-08-12 04:04:17', 1, 556, 21.1000004, 50.4000015, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10542, 1, '2016-08-12 04:12:23', 1, 576, 21.5, 48.4000015, 9289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10543, 2, '2016-08-12 04:13:18', 23, 533, 23.7999992, 44.7999992, 4676);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10544, 3, '2016-08-12 04:16:40', 65, 526, 24, 44.4000015, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10545, 0, '2016-08-12 04:16:40', 0, 521, 21.2999992, 50.7000008, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10546, 0, '2016-08-12 04:16:43', 0, 521, 21.2999992, 50.7000008, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10547, 3, '2016-08-12 04:16:44', 65, 526, 24, 44.4000015, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10548, 3, '2016-08-12 04:17:44', 65, 526, 24, 44.4000015, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10549, 1, '2016-08-12 04:27:05', 3, 550, 21.5, 48.7000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10550, 2, '2016-08-12 04:27:54', 23, 530, 23.7999992, 44.5999985, 4626);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10551, 0, '2016-08-12 04:31:55', 0, 521, 21.3999996, 49.2000008, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10552, 3, '2016-08-12 04:36:09', 65, 484, 23.8999996, 44.0999985, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10553, 1, '2016-08-12 04:42:46', 6, 490, 21.5, 48.5999985, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10554, 2, '2016-08-12 04:45:13', 24, 508, 23.7999992, 44.2999992, 8289);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10555, 0, '2016-08-12 04:47:06', 1, 536, 21.1000004, 48.5, 1316);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10556, 3, '2016-08-12 04:48:14', 67, 488, 23.8999996, 44, 1576);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10557, 1, '2016-08-12 04:57:56', 21, 557, 21.5, 48.5, 2144);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10558, 2, '2016-08-12 04:58:22', 25, 484, 23.6000004, 44.2999992, 4992);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10559, 0, '2016-08-12 05:02:16', 3, 529, 21.2000008, 50.7000008, 2304);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10560, 3, '2016-08-12 05:02:16', 69, 496, 23.7000008, 44.0999985, 2340);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10561, 3, '2016-08-12 05:07:23', 69, 496, 23.7000008, 44.0999985, 2340);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10562, 1, '2016-08-12 05:12:22', 33, 600, 21.3999996, 48.7000008, 1792);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10563, 2, '2016-08-12 05:16:33', 32, 512, 23.5, 44.5, 4708);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10564, 0, '2016-08-12 05:17:27', 3, 548, 21.2999992, 48.0999985, 5120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10565, 3, '2016-08-12 05:18:45', 71, 506, 23.5, 44.4000015, 4146);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10566, 1, '2016-08-12 05:28:17', 53, 545, 21.3999996, 48.7000008, 13620);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10567, 2, '2016-08-12 05:28:52', 33, 499, 23.3999996, 44.4000015, 4626);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10568, 0, '2016-08-12 05:32:34', 5, 533, 21.1000004, 49.7000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10569, 0, '2016-08-12 05:32:37', 5, 533, 21.1000004, 49.7000008, 2048);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10570, 3, '2016-08-12 05:32:37', 80, 502, 23.2999992, 44.4000015, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10571, 3, '2016-08-12 05:34:25', 80, 502, 23.2999992, 44.4000015, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10572, 1, '2016-08-12 05:43:26', 96, 522, 21.3999996, 48.7000008, 2432);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10573, 2, '2016-08-12 05:47:55', 37, 483, 23.2999992, 44.5999985, 4214);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10574, 0, '2016-08-12 05:47:55', 8, 518, 21.2000008, 50.4000015, 8805);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10575, 3, '2016-08-12 05:48:38', 84, 488, 23.2999992, 44.5999985, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10576, 1, '2016-08-12 05:57:42', 146, 538, 21.3999996, 48.7999992, 4214);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10577, 2, '2016-08-12 05:58:39', 73, 530, 23.2000008, 44.7000008, 5398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10578, 2, '2016-08-12 05:58:57', 73, 530, 23.2000008, 44.7000008, 5398);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10579, 0, '2016-08-12 06:03:00', 20, 488, 21.2000008, 47.5999985, 1856);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10580, 3, '2016-08-12 06:06:47', 117, 514, 23.1000004, 44.7999992, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10581, 1, '2016-08-12 06:13:50', 7, 522, 21.2999992, 48.5999985, 2056);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10582, 2, '2016-08-12 06:15:50', 82, 532, 23.2000008, 44.9000015, 4136);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10583, 3, '2016-08-12 06:18:10', 119, 507, 23, 45, 2400);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10584, 0, '2016-08-12 06:18:10', 24, 509, 21.1000004, 50.2999992, 2098);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10585, 3, '2016-08-12 06:19:00', 119, 507, 23, 45, 2400);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10586, 1, '2016-08-12 06:28:29', 37, 531, 21.2999992, 48.7999992, 1544);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10587, 2, '2016-08-12 06:29:00', 72, 482, 23.1000004, 45.0999985, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10588, 2, '2016-08-12 06:29:02', 72, 482, 23.1000004, 45.0999985, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10589, 0, '2016-08-12 06:33:21', 25, 539, 21.2999992, 49, 1888);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10590, 3, '2016-08-12 06:33:58', 129, 513, 23, 45.2000008, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10591, 1, '2016-08-12 06:44:12', 149, 534, 21.2999992, 48.9000015, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10592, 2, '2016-08-12 06:46:31', 99, 484, 23, 45.2999992, 8713);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10593, 0, '2016-08-12 06:48:32', 52, 582, 21.1000004, 49.0999985, 2404);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10594, 3, '2016-08-12 06:49:06', 8, 526, 22.8999996, 45.5, 12870);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10595, 1, '2016-08-12 06:59:07', 406, 518, 21.2999992, 48.7000008, 1910);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10596, 2, '2016-08-12 07:00:24', 560, 505, 23, 45.7000008, 4360);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10597, 0, '2016-08-12 07:03:43', 97, 533, 21.2000008, 51.2999992, 1536);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10598, 3, '2016-08-12 07:04:33', 821, 490, 23.1000004, 45.7000008, 1942);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10599, 1, '2016-08-12 07:13:33', 582, 513, 21.2999992, 49.0999985, 9029);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10600, 2, '2016-08-12 07:18:50', 594, 503, 23.2000008, 46, 4224);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10601, 0, '2016-08-12 07:18:54', 129, 530, 21.2999992, 49.2000008, 4132);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10602, 3, '2016-08-12 07:19:11', 856, 530, 23.2999992, 45.7999992, 10497);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10603, 1, '2016-08-12 07:29:13', 520, 493, 21.3999996, 49.2000008, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10604, 2, '2016-08-12 07:30:52', 592, 487, 23.2000008, 46.0999985, 12385);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10605, 0, '2016-08-12 07:34:04', 17, 516, 21.1000004, 49.7999992, 5669);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10606, 3, '2016-08-12 07:37:25', 791, 504, 23.5, 45.5999985, 2194);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10607, 1, '2016-08-12 07:44:55', 1049, 555, 21.3999996, 49.2000008, 2176);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10608, 2, '2016-08-12 07:46:29', 807, 501, 23.3999996, 46.0999985, 4388);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10609, 0, '2016-08-12 07:49:15', 32, 488, 21.2000008, 50.5, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10610, 3, '2016-08-12 07:49:16', 818, 492, 23.7999992, 45.5, 2116);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10611, 1, '2016-08-12 07:59:17', 852, 576, 21.3999996, 49.2999992, 4904);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10612, 2, '2016-08-12 08:00:06', 834, 486, 23.5, 46.2999992, 4736);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10613, 2, '2016-08-12 08:01:22', 834, 486, 23.5, 46.2999992, 4736);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10614, 0, '2016-08-12 08:04:26', 37, 529, 21.1000004, 47.9000015, 2070);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10615, 3, '2016-08-12 08:04:37', 837, 475, 23.8999996, 45.5999985, 1682);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10616, 1, '2016-08-12 08:15:17', 867, 516, 21.5, 49.0999985, 2088);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10617, 2, '2016-08-12 08:16:37', 819, 501, 23.5, 46.4000015, 4502);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10618, 0, '2016-08-12 08:19:37', 96, 552, 21.1000004, 51.4000015, 1828);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10619, 3, '2016-08-12 08:21:50', 1078, 529, 23.7999992, 45.7999992, 4146);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10620, 1, '2016-08-12 08:30:28', 1289, 600, 21.5, 49.5999985, 1800);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10621, 2, '2016-08-12 08:31:48', 1417, 488, 23.5, 46.7000008, 5412);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10622, 0, '2016-08-12 08:34:47', 21, 515, 21.2999992, 51.5, 2120);
INSERT INTO decoded (id, deviceid, "timestamp", lux, co2, temp, humidity, sound) VALUES (10623, 3, '2016-08-12 08:39:25', 64, 603, 23.2000008, 46, 12353);
--
-- TOC entry 2386 (class 0 OID 0)
-- Dependencies: 183
-- Name: decoded_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('decoded_id_seq', 10623, true);
--
-- TOC entry 2373 (class 0 OID 55189)
-- Dependencies: 182
-- Data for Name: raw; Type: TABLE DATA; Schema: public; Owner: postgres
--
INSERT INTO raw (id, "timestamp", event) VALUES (1, '2016-08-10 10:28:09', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":758,"f_cnt_down":1442,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T10:28:06.127992Z","gw_timestamp":3112203428,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AmgwMDczMjAxMjIzMDA0MTINwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2, '2016-08-10 10:31:38', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":753,"f_cnt_down":1389,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T10:29:49.807625Z","gw_timestamp":3215883108,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:20:10.377081Z","gw_timestamp":1851734468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A8IwMDYxODAxMjQzMDAzNzQc0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3, '2016-08-10 10:35:49', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1230,"f_cnt_down":2032,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T10:32:25.738463Z","gw_timestamp":3371814020,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AbYwMDk4MTAxMjMzMDA0MTEIcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4, '2016-08-10 10:41:40', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":672,"f_cnt_down":1248,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T10:37:50.598084Z","gw_timestamp":3696673796,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AF4wMDY0NzAxMjIwMDA0MjMVQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5, '2016-08-10 10:44:53', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":759,"f_cnt_down":1443,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T10:43:16.888215Z","gw_timestamp":4022964084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:33:37.457706Z","gw_timestamp":2658815092,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0UwMDcyNjAxMjI0MDA0MTMXgQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6, '2016-08-10 11:01:44', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":755,"f_cnt_down":1391,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:00:11.470025Z","gw_timestamp":742579092,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BiQwMDYwOTAxMjQyMDAzNzgIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7, '2016-08-10 11:04:12', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1233,"f_cnt_down":2034,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:03:12.039833Z","gw_timestamp":923148988,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Am0wMDc5MzAxMjMzMDA0MDYIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8, '2016-08-10 11:11:46', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":674,"f_cnt_down":1250,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:08:12.130662Z","gw_timestamp":1223239964,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:57.732929Z","gw_timestamp":4154057612,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHQwMDU5MDAxMjIyMDA0MjEIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9, '2016-08-10 11:13:40', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":761,"f_cnt_down":1445,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:13:38.406324Z","gw_timestamp":1549515788,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A+AwMDcwNjAxMjI1MDA0MDkHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10, '2016-08-10 11:15:23', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":762,"f_cnt_down":1446,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:52:24.00861Z","gw_timestamp":185365996,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A+AwMDcwNjAxMjI1MDA0MDkHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (11, '2016-08-10 11:15:24', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":756,"f_cnt_down":1392,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:54:07.90489Z","gw_timestamp":289262276,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-3.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bg8wMDYxMTAxMjQzMDAzNzkQIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (12, '2016-08-10 11:15:47', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":757,"f_cnt_down":1393,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:15:22.302593Z","gw_timestamp":1653412108,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bg8wMDYxMTAxMjQzMDAzNzkQIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (13, '2016-08-10 11:15:48', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":757,"f_cnt_down":1394,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:54:32.586673Z","gw_timestamp":313944060,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-2.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bg8wMDYxMTAxMjQzMDAzNzkQIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (14, '2016-08-10 11:17:16', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":758,"f_cnt_down":1395,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:15:46.984375Z","gw_timestamp":1678093900,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bg8wMDYxMTAxMjQzMDAzNzkQIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (15, '2016-08-10 11:18:49', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1234,"f_cnt_down":2035,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:18:22.851617Z","gw_timestamp":1833961220,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AqMwMDc2NzAxMjMzMDA0MDUWQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (16, '2016-08-10 11:18:49', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1235,"f_cnt_down":2036,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:33.136681Z","gw_timestamp":494494068,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AqMwMDc2NzAxMjMzMDA0MDUWQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (17, '2016-08-10 11:19:13', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1236,"f_cnt_down":2037,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:18:47.534373Z","gw_timestamp":1858643988,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AqMwMDc2NzAxMjMzMDA0MDUWQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (18, '2016-08-10 11:21:08', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1236,"f_cnt_down":2038,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:19:12.216946Z","gw_timestamp":1883326572,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AqMwMDc2NzAxMjMzMDA0MDUWQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (19, '2016-08-10 11:27:21', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":675,"f_cnt_down":1251,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:23:22.89532Z","gw_timestamp":2134005068,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHUwMDU5OTAxMjE3MDA0MjcGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (20, '2016-08-10 11:30:12', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":762,"f_cnt_down":1447,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:28:49.16587Z","gw_timestamp":2460275780,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A7gwMDYxNzAxMjIwMDA0MTcJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (21, '2016-08-10 11:30:58', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":758,"f_cnt_down":1396,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:30:57.817466Z","gw_timestamp":2588927436,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BBswMDYxMjAxMjQ1MDAzNzcLIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (22, '2016-08-10 11:31:14', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":759,"f_cnt_down":1397,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:09:43.419809Z","gw_timestamp":1224777196,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BBswMDYxMjAxMjQ1MDAzNzcLIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (23, '2016-08-10 11:34:48', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1237,"f_cnt_down":2039,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:34:23.030078Z","gw_timestamp":2794140148,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArIwMDc2NzAxMjMzMDA0MDQG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (24, '2016-08-10 11:37:27', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1238,"f_cnt_down":2040,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:34:47.71284Z","gw_timestamp":2818822924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArIwMDc2NzAxMjMzMDA0MDQG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (25, '2016-08-10 11:37:49', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:20:40.428498Z","gw_timestamp":89887115,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":9.800000190734863,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (26, '2016-08-10 11:38:04', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:20:47.10124Z","gw_timestamp":96566331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/3v/k/+EAPgA+AFoATA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (27, '2016-08-10 11:38:10', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:00.461276Z","gw_timestamp":109929107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/3v/k/+EAPgA+AFoATA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (29, '2016-08-10 11:38:24', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":4,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:13.844937Z","gw_timestamp":123290115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-22,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9//3v/k/+AAMgAyAFoAQw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (31, '2016-08-10 11:38:36', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":6,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:27.178262Z","gw_timestamp":136648531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-17,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/3v/k/+AALwAvAFoAPQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (32, '2016-08-10 11:38:37', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":676,"f_cnt_down":1252,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:38:33.660388Z","gw_timestamp":3044770580,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGgwMDYwMTAxMjE5MDA0MjkOwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (33, '2016-08-10 11:38:44', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":7,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:33.889261Z","gw_timestamp":143327723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9//3v/k/+AAOQAvAFoAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (35, '2016-08-10 11:39:16', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":677,"f_cnt_down":1253,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:38:58.343014Z","gw_timestamp":3069453220,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGgwMDYwMTAxMjE5MDA0MjkOwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (28, '2016-08-10 11:38:17', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":3,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:07.152371Z","gw_timestamp":116610907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-23,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/3v/k/+EAPgA+AFoATA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (30, '2016-08-10 11:38:30', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":5,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:20.521628Z","gw_timestamp":129969323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9//3v/k/+AAOQAyAFoAQQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (34, '2016-08-10 11:38:59', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":8,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:21:40.531346Z","gw_timestamp":150006931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3v/k/+AAKgAqAFoAOg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (36, '2016-08-10 11:40:11', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":9,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:22:59.74301Z","gw_timestamp":8346043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-21,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3v/k/+AAKgAqAFoAOg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (37, '2016-08-10 11:40:14', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":21,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:06.430398Z","gw_timestamp":15025243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+L/3v/k/+EARgAqAFoAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (38, '2016-08-10 11:40:24', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":22,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:13.148819Z","gw_timestamp":21706747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+L/3v/k/+EARgAqAFoAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (39, '2016-08-10 11:40:31', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":23,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:19.821647Z","gw_timestamp":28385939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-22,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3v/k/+EAQwAqAFoAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (40, '2016-08-10 11:40:38', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":24,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:26.465244Z","gw_timestamp":35065155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3v/k/+EAPAAqAFoAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (41, '2016-08-10 11:40:45', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":25,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:33.158107Z","gw_timestamp":41744347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-23,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3v/k/+EAPAAqAFoAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (42, '2016-08-10 11:40:51', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":26,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:39.810166Z","gw_timestamp":48423555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+D/3v/k/+EAOQAqAFoAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (43, '2016-08-10 11:40:57', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":27,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:46.518169Z","gw_timestamp":55104835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+D/3v/k/+EAOQAqAFoAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (44, '2016-08-10 11:41:04', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":28,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:53.20506Z","gw_timestamp":61784051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3v/k/+EAQQAqAFoAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (45, '2016-08-10 11:41:11', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":29,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:23:59.859491Z","gw_timestamp":68463243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-12,"snr":8.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3v/k/+EAPAAqAFoAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (46, '2016-08-10 11:41:18', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":30,"f_cnt_down":19,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:24:06.557298Z","gw_timestamp":75142555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-11,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9//3v/k/+H/s/+zAFoAMw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (47, '2016-08-10 11:41:24', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":31,"f_cnt_down":20,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:24:13.246783Z","gw_timestamp":81821867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/3v/k/+D/xP+zAFoALQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (49, '2016-08-10 11:41:38', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":33,"f_cnt_down":22,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:24:26.588299Z","gw_timestamp":95181003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":11.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+f/2P/n/98ATf+LAFoAJw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (48, '2016-08-10 11:41:31', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":32,"f_cnt_down":21,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:24:19.937444Z","gw_timestamp":88501379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9j/2P/k/9//i/+LAFoAJQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (50, '2016-08-10 11:41:50', '{"dev_eui":"0080000000009d9c","DevAddr":"24b97fc9","f_port":1,"f_cnt_up":34,"f_cnt_down":23,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:24:33.289049Z","gw_timestamp":101862699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+f/2P/n/98ATf+LAFoAJw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (51, '2016-08-10 11:44:24', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":763,"f_cnt_down":1448,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:43:59.925132Z","gw_timestamp":3371035484,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AwMwMDYzNTAxMjIzMDA0MTcJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (52, '2016-08-10 11:44:30', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:19.262583Z","gw_timestamp":267878371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (53, '2016-08-10 11:44:37', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:25.957437Z","gw_timestamp":274558091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+D/4P/h/+D/zP+w/8z/vg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (54, '2016-08-10 11:44:43', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:32.631451Z","gw_timestamp":281237819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-7,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9z/3P/h/97/zP+w/8z/ww==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (55, '2016-08-10 11:44:51', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:39.304698Z","gw_timestamp":287917547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-12,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3P/h/9//8f+w//H/zw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (56, '2016-08-10 11:44:57', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":3,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:46.034645Z","gw_timestamp":294597059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+D/3P/h/98AQf+wAEH/5Q==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (57, '2016-08-10 11:45:03', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":4,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:52.662936Z","gw_timestamp":301276683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9//3P/h/9//4v+wAEH/5A==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (58, '2016-08-10 11:45:10', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":5,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:27:59.379073Z","gw_timestamp":307956307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9//3P/h/9//zv+wAEH/4Q==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (59, '2016-08-10 11:45:18', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":6,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:28:06.037803Z","gw_timestamp":314635923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3P/h/+D/2/+wAEH/4A==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (60, '2016-08-10 11:45:23', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":7,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:28:12.708286Z","gw_timestamp":321315443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":8.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3P/h/+AAGf+wAEH/5Q==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (61, '2016-08-10 11:45:30', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":8,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:28:19.383962Z","gw_timestamp":327997147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":11.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+H/3P/h/+AAGf+wAEH/5Q==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (62, '2016-08-10 11:46:09', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":9,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:28:26.062317Z","gw_timestamp":334676667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-13,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+T/3P/k/+EAFP+wAEH/6Q==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (63, '2016-08-10 11:46:11', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":759,"f_cnt_down":1398,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:24:54.251514Z","gw_timestamp":2135608900,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNIwMDU5NzAxMjQ3MDAzNzUN4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (64, '2016-08-10 11:46:21', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":760,"f_cnt_down":1399,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:46:08.649127Z","gw_timestamp":3499759540,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":12.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNIwMDU5NzAxMjQ3MDAzNzUN4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (65, '2016-08-10 11:47:34', '{"dev_eui":"0080000000009d9c","DevAddr":"2552261f","f_port":1,"f_cnt_up":10,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009c04","gw_time":"2016-08-10T12:28:32.742374Z","gw_timestamp":341356179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+L/3P/k/+EAN/+wAEH/8A==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (66, '2016-08-10 11:51:53', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1239,"f_cnt_down":2041,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:49:58.537342Z","gw_timestamp":3729647868,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjIwMDY1NzAxMjMzMDA0MDQNIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (67, '2016-08-10 11:54:11', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":678,"f_cnt_down":1254,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:54:09.107949Z","gw_timestamp":3980218596,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHAwMDU4NjAxMjIyMDA0MjYHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (68, '2016-08-10 11:57:24', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":679,"f_cnt_down":1255,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:32:54.710353Z","gw_timestamp":2616067740,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-12.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHAwMDU4NjAxMjIyMDA0MjYHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (69, '2016-08-10 12:01:20', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":764,"f_cnt_down":1449,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T11:59:10.698121Z","gw_timestamp":4281808916,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A7kwMDYyMzAxMjI2MDA0MTMK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (70, '2016-08-10 12:24:37', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":680,"f_cnt_down":1257,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:24:30.645753Z","gw_timestamp":1506789996,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHswMDYxOTAxMjI0MDA0MDMGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (71, '2016-08-10 12:25:18', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":681,"f_cnt_down":1258,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:24:55.328278Z","gw_timestamp":1531472532,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHswMDYxOTAxMjI0MDA0MDMGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (72, '2016-08-10 12:31:42', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":766,"f_cnt_down":1452,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:29:32.237037Z","gw_timestamp":1808381428,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArwwMDY0NTAxMjI4MDA0MDEJwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (73, '2016-08-10 12:31:59', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":762,"f_cnt_down":1403,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:31:41.149149Z","gw_timestamp":1937293604,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:58:51.784369Z","gw_timestamp":573141756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BmQwMDUxOTAxMjQ3MDAzNzQiEg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (74, '2016-08-10 12:38:09', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1242,"f_cnt_down":2044,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:35:30.982765Z","gw_timestamp":2167127332,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AegwMDYwOTAxMjMzMDA0MDEJIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (75, '2016-08-10 12:42:01', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":682,"f_cnt_down":1259,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:40:06.0933Z","gw_timestamp":2442238004,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGwwMDYyMDAxMjE5MDA0MjgHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (76, '2016-08-10 12:44:53', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":767,"f_cnt_down":1453,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:44:42.997044Z","gw_timestamp":2719141884,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjgwMDY0MTAxMjI0MDA0MTUIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (77, '2016-08-10 12:46:53', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":768,"f_cnt_down":1454,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:11:53.632297Z","gw_timestamp":1354989684,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjgwMDY0MTAxMjI0MDA0MTUIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (78, '2016-08-10 12:46:55', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":763,"f_cnt_down":1404,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:14:02.626834Z","gw_timestamp":1483984220,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6EwMDU3MDAxMjQ3MDAzNzUSUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (79, '2016-08-10 12:48:15', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":764,"f_cnt_down":1405,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:46:51.991572Z","gw_timestamp":2848136476,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-96,"snr":-7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6EwMDU3MDAxMjQ3MDAzNzUSUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (80, '2016-08-10 12:51:08', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1243,"f_cnt_down":2045,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:50:42.463673Z","gw_timestamp":3078608692,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ASwwMDYwNzAxMjMzMDA0MDEHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (81, '2016-08-10 12:51:51', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1244,"f_cnt_down":2046,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:51:07.146236Z","gw_timestamp":3103291268,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ASwwMDYwNzAxMjMzMDA0MDEHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (82, '2016-08-10 12:55:42', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":683,"f_cnt_down":1260,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:55:17.503488Z","gw_timestamp":3353648644,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-96,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU3MjAxMjIwMDA0MzEIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (83, '2016-08-10 12:58:23', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":684,"f_cnt_down":1261,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:55:42.185276Z","gw_timestamp":3378330444,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU3MjAxMjIwMDA0MzEIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (84, '2016-08-10 13:00:19', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":768,"f_cnt_down":1455,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T12:59:53.756637Z","gw_timestamp":3629901932,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AigwMDYyNjAxMjI0MDA0MTkG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (85, '2016-08-10 13:00:44', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":769,"f_cnt_down":1456,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:00:18.438986Z","gw_timestamp":3654584292,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:27:29.07429Z","gw_timestamp":2290431676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AigwMDYyNjAxMjI0MDA0MTkG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (86, '2016-08-10 13:00:55', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":770,"f_cnt_down":1457,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:00:43.121566Z","gw_timestamp":3679266884,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AigwMDYyNjAxMjI0MDA0MTkG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (87, '2016-08-10 13:02:04', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":764,"f_cnt_down":1406,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:02:02.82347Z","gw_timestamp":3758968828,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A04wMDUzODAxMjQ2MDAzNzkMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (88, '2016-08-10 13:02:05', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":765,"f_cnt_down":1407,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:29:13.458786Z","gw_timestamp":2394816172,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-120,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A04wMDUzODAxMjQ2MDAzNzkMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (89, '2016-08-10 13:08:29', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1245,"f_cnt_down":2047,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:06:17.974022Z","gw_timestamp":4014119508,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AWAwMDYyNzAxMjMzMDA0MDIHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (90, '2016-08-10 13:12:05', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":685,"f_cnt_down":1262,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:10:52.950762Z","gw_timestamp":4289096388,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AIUwMDU5MDAxMjIwMDA0MzQJEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (91, '2016-08-10 13:17:15', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":771,"f_cnt_down":1458,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:15:53.888268Z","gw_timestamp":295066748,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AsowMDU4NTAxMjI1MDA0MjIGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (92, '2016-08-10 13:18:36', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":765,"f_cnt_down":1408,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:17:13.655034Z","gw_timestamp":374833556,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:32:49.323106Z","gw_timestamp":3305647788,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A3owMDU5NjAxMjQ1MDAzODELwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (93, '2016-08-10 13:21:54', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1246,"f_cnt_down":2048,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:37:04.455433Z","gw_timestamp":3560780116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-12.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AUowMDU1NjAxMjMyMDA0MDQI8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (94, '2016-08-10 13:22:07', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1247,"f_cnt_down":2049,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:21:53.469597Z","gw_timestamp":654648260,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":13.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AUowMDU1NjAxMjMyMDA0MDQI8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (95, '2016-08-10 13:28:06', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":686,"f_cnt_down":1263,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:41:39.387754Z","gw_timestamp":3835712436,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AIYwMDUzNDAxMjIyMDA0MzMI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (96, '2016-08-10 13:32:09', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":772,"f_cnt_down":1459,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:31:04.649536Z","gw_timestamp":1205828476,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:40.317649Z","gw_timestamp":4136642332,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkYwMDYwNDAxMjI2MDA0MjIKIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (97, '2016-08-10 13:32:25', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":766,"f_cnt_down":1409,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:48:00.153761Z","gw_timestamp":4216478444,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbIwMDU3NTAxMjQ0MDAzODMJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (98, '2016-08-10 13:37:12', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":767,"f_cnt_down":1410,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:32:24.485638Z","gw_timestamp":1285664620,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbIwMDU3NTAxMjQ0MDAzODMJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (99, '2016-08-10 13:38:52', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1248,"f_cnt_down":2050,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:37:28.96606Z","gw_timestamp":1590145196,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ATUwMDY0OTAxMjMyMDA0MDUHIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (100, '2016-08-10 13:41:40', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":687,"f_cnt_down":1264,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:41:14.488651Z","gw_timestamp":1815667900,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:56:50.156809Z","gw_timestamp":451514196,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHswMDU2NzAxMjIzMDA0MzIHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (101, '2016-08-10 13:42:11', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":688,"f_cnt_down":1265,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:41:39.170655Z","gw_timestamp":1840349916,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHswMDU2NzAxMjIzMDA0MzIHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (133, '2016-08-10 13:55:19', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1250,"f_cnt_down":2051,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:52:39.779136Z","gw_timestamp":2500958732,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":3.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AQswMDYwODAxMjMxMDA0MDYLIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (134, '2016-08-10 13:57:41', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":689,"f_cnt_down":1266,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T13:56:49.940008Z","gw_timestamp":2751119732,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHswMDU4NDAxMjIzMDA0MzEIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (135, '2016-08-10 13:57:46', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:58:20.112409Z","gw_timestamp":205408755,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (136, '2016-08-10 13:57:47', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:58:26.808289Z","gw_timestamp":212089923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-12,"snr":6.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (137, '2016-08-10 13:57:59', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:58:33.465549Z","gw_timestamp":218769443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/3f/g/98APgA+AEEAQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (138, '2016-08-10 13:58:05', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:58:40.144054Z","gw_timestamp":225450523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-16,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/3f/g/98APgA+AEEAQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (139, '2016-08-10 13:58:15', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":3,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:58:46.825286Z","gw_timestamp":232132435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/3f/g/98APgA+AEEAQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (140, '2016-08-10 13:58:16', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":4,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:58:53.53568Z","gw_timestamp":238812259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-17,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (141, '2016-08-10 13:58:27', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":5,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:00.204701Z","gw_timestamp":245494059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-22,"snr":6.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (142, '2016-08-10 13:58:33', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":6,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:06.896299Z","gw_timestamp":252175867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-16,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (143, '2016-08-10 13:58:46', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":7,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:13.547794Z","gw_timestamp":258857675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-14,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (144, '2016-08-10 13:58:46', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":8,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:20.227304Z","gw_timestamp":265539579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-16,"snr":6.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (145, '2016-08-10 13:58:50', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":9,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:26.909182Z","gw_timestamp":272221387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-17,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (146, '2016-08-10 13:59:13', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":10,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:47.022953Z","gw_timestamp":292266803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-17,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (147, '2016-08-10 13:59:17', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":13,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T14:59:53.644177Z","gw_timestamp":298948707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (149, '2016-08-10 13:59:33', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":15,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:00:07.012367Z","gw_timestamp":312312323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-16,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (148, '2016-08-10 13:59:26', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":14,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:00:00.329554Z","gw_timestamp":305630515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (150, '2016-08-10 14:00:08', '{"dev_eui":"0080000000009d9c","DevAddr":"2552787b","f_port":1,"f_cnt_up":16,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:00:13.715308Z","gw_timestamp":318994123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-15,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+P/3f/j/+EASwA+AEsARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (151, '2016-08-10 14:02:14', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":774,"f_cnt_down":1461,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:01:26.180525Z","gw_timestamp":3027360388,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkowMDU4NTAxMjI2MDA0MjIKIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (152, '2016-08-10 14:03:12', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":769,"f_cnt_down":1414,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:03:10.832657Z","gw_timestamp":3132012572,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0QwMDU2ODAxMjQyMDAzODUIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (153, '2016-08-10 14:04:23', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":770,"f_cnt_down":1415,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:18:46.500897Z","gw_timestamp":1767858284,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0QwMDU2ODAxMjQyMDAzODUIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (154, '2016-08-10 14:09:10', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1251,"f_cnt_down":2052,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:07:50.59401Z","gw_timestamp":3411774068,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXIwMDYxNjAxMjMwMDA0MDcHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (155, '2016-08-10 14:12:15', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":690,"f_cnt_down":1267,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:12:00.70886Z","gw_timestamp":3661889044,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AI8wMDU3MjAxMjIzMDA0MzMIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (156, '2016-08-10 14:16:38', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":775,"f_cnt_down":1462,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:32:12.608721Z","gw_timestamp":2573966108,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApkwMDYyNzAxMjI2MDA0MjQIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (157, '2016-08-10 14:18:23', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":776,"f_cnt_down":1463,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:16:36.940442Z","gw_timestamp":3938120764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApkwMDYyNzAxMjI2MDA0MjQIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (158, '2016-08-10 14:18:24', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":770,"f_cnt_down":1416,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:18:21.664405Z","gw_timestamp":4042844780,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":-3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A20wMDU2MTAxMjQxMDAzODgIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (159, '2016-08-10 14:19:17', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":771,"f_cnt_down":1417,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:22:22.365401Z","gw_timestamp":2678690084,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A20wMDU2MTAxMjQxMDAzODgIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (160, '2016-08-10 14:23:03', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1252,"f_cnt_down":2053,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:27:02.108466Z","gw_timestamp":2958433148,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-16.799999237060547,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AawwMDY1NjAxMjMwMDA0MDkIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (161, '2016-08-10 14:27:11', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1253,"f_cnt_down":2054,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:23:01.407454Z","gw_timestamp":27620676,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":1.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AawwMDY1NjAxMjMwMDA0MDkIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (162, '2016-08-10 14:27:12', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":691,"f_cnt_down":1268,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:27:11.477768Z","gw_timestamp":277691116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AKAwMDUyNTAxMjIzMDA0MzUIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (163, '2016-08-10 14:29:23', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":692,"f_cnt_down":1269,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:12.178802Z","gw_timestamp":3208503484,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AKAwMDUyNTAxMjIzMDA0MzUIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (164, '2016-08-10 14:32:19', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":776,"f_cnt_down":1464,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:31:47.699196Z","gw_timestamp":553912684,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:48.400233Z","gw_timestamp":3484724916,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AwYwMDYxNTAxMjI2MDA0MjcJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (165, '2016-08-10 14:38:13', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":771,"f_cnt_down":1418,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:33:32.497335Z","gw_timestamp":658710876,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A5MwMDU1MTAxMjQwMDAzOTEmgg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (166, '2016-08-10 14:38:30', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1253,"f_cnt_down":2055,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:38:12.222113Z","gw_timestamp":938435796,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AaEwMDU4NDAxMjI5MDA0MTEWUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json","type":1}');
INSERT INTO raw (id, "timestamp", event) VALUES (167, '2016-08-10 14:47:23', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":777,"f_cnt_down":1465,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:46:58.47204Z","gw_timestamp":1464685988,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AtAwMDYyMDAxMjI2MDA0MzEHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (168, '2016-08-10 14:47:37', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:55.645578Z","gw_timestamp":256766699,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-35,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (169, '2016-08-10 14:47:44', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:02.326343Z","gw_timestamp":263448187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-23,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (170, '2016-08-10 14:47:49', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:09.004875Z","gw_timestamp":270127491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-29,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+D/2P/g/9wASABIAFcAUA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (171, '2016-08-10 14:47:57', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:15.688283Z","gw_timestamp":276808875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-21,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+D/2P/g/9wASABIAFcAUA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (172, '2016-08-10 14:48:04', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":3,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:22.385827Z","gw_timestamp":283487971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/2P/g/90ARgBGAFcATQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (173, '2016-08-10 14:48:07', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":4,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:29.047099Z","gw_timestamp":290167059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-21,"snr":8.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/97/2P/g/90APgA+AFcASQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (174, '2016-08-10 14:48:16', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":5,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:35.72758Z","gw_timestamp":296846155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-25,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9b/1v/g/9wANwA3AFcARg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (175, '2016-08-10 14:48:24', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":6,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:42.423233Z","gw_timestamp":303527123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-27,"snr":8.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9b/1v/g/9wANwA3AFcARg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (177, '2016-08-10 14:48:35', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":8,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:55.771848Z","gw_timestamp":316885315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9X/1f/g/9sAPAA3AFcARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (179, '2016-08-10 14:48:48', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":772,"f_cnt_down":1419,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:48:44.02228Z","gw_timestamp":1570236284,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6gwMDU1MTAxMjQwMDAzOTUg8g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (180, '2016-08-10 14:49:18', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:43.748332Z","gw_timestamp":364863931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (182, '2016-08-10 14:49:36', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:57.111712Z","gw_timestamp":378222955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-21,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/3f/f/94ARgA8AFwASg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (184, '2016-08-10 14:49:52', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":3,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:10.461215Z","gw_timestamp":391584275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-21,"snr":8.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9f/1//f/9wAPgA8AFwARw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (186, '2016-08-10 14:50:06', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":5,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:23.832458Z","gw_timestamp":404944867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9f/1//f/9sAPgA8AFwARQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (188, '2016-08-10 14:50:39', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":7,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:59.654639Z","gw_timestamp":440783499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/87/zv/f/9kAPgA8AFwARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (176, '2016-08-10 14:48:29', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":7,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:49.090306Z","gw_timestamp":310206227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9j/1v/g/9wAPgA3AFcARQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (178, '2016-08-10 14:48:44', '{"dev_eui":"0080000000009d9c","DevAddr":"244cc68c","f_port":1,"f_cnt_up":9,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:02.450765Z","gw_timestamp":323564411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-28,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/1f/g/9sAPAA3AFcAQw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (181, '2016-08-10 14:49:30', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:50.422215Z","gw_timestamp":371543451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-19,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/3f/f/94APAA8AFwATA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (183, '2016-08-10 14:49:45', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:03.791335Z","gw_timestamp":384904763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-24,"snr":11.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/93/3f/f/94ARgA8AFwASg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (185, '2016-08-10 14:49:57', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":4,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:17.149651Z","gw_timestamp":398265347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-24,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9f/1//f/9wAPgA8AFwARw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (187, '2016-08-10 14:50:11', '{"dev_eui":"0080000000009d9c","DevAddr":"248dc10d","f_port":1,"f_cnt_up":6,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:30.498441Z","gw_timestamp":411624363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-37,"snr":6.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/87/zv/f/9kAPgA8AFwARA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (189, '2016-08-10 14:51:08', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:25.901461Z","gw_timestamp":467018323,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU1NjAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (190, '2016-08-10 14:51:15', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:33.076221Z","gw_timestamp":474200051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU5NTAxMjA5MDA0NzMDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (191, '2016-08-10 14:51:26', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":1,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:47.441464Z","gw_timestamp":488564019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU3NDAxMjA5MDA0NzMDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (192, '2016-08-10 14:51:37', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":3,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:54.6361Z","gw_timestamp":495745747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU0MzAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (193, '2016-08-10 14:51:39', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":4,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:01.814078Z","gw_timestamp":502927683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDYwMjAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (194, '2016-08-10 14:51:51', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":5,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:08.986475Z","gw_timestamp":510109403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDYwMjAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (195, '2016-08-10 14:51:58', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":6,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:16.165113Z","gw_timestamp":517291131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDYxMzAxMjA5MDA0NzIDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (196, '2016-08-10 14:52:06', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":7,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:23.356714Z","gw_timestamp":524472235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU5NzAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (197, '2016-08-10 14:52:20', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":8,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:30.559979Z","gw_timestamp":531653955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU5NzAxMjA5MDA0NzIDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (209, '2016-08-10 14:53:03', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":4,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:22.63845Z","gw_timestamp":583761163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgMwMDU5ODAxMjExMDA0ODAEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (210, '2016-08-10 14:53:04', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":16,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:27.990719Z","gw_timestamp":589108923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ALwwMDU4NjAxMjA5MDA0NzIDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (211, '2016-08-10 14:53:10', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":5,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:29.828464Z","gw_timestamp":590942987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AaYwMDU5MzAxMjExMDA0ODAD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (212, '2016-08-10 14:53:11', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":17,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:35.164214Z","gw_timestamp":596290555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDU3NzAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (213, '2016-08-10 14:53:17', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":6,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:37.008208Z","gw_timestamp":598124803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgUwMDU0NTAxMjExMDA0ODAD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (214, '2016-08-10 14:53:19', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":18,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:42.355009Z","gw_timestamp":603472483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDU1NDAxMjA5MDA0NzMDIA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (215, '2016-08-10 14:53:23', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":7,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:44.188844Z","gw_timestamp":605306835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AekwMDU5MTAxMjExMDA0ODAD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (216, '2016-08-10 14:53:25', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1254,"f_cnt_down":2056,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:53:23.042443Z","gw_timestamp":1849256588,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AhUwMDU4NjAxMjI5MDA0MTMG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (217, '2016-08-10 14:53:26', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":19,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:49.537785Z","gw_timestamp":610654323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDU2ODAxMjA5MDA0NzMDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (218, '2016-08-10 14:53:31', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":8,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:51.388658Z","gw_timestamp":612488651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AekwMDYwNzAxMjExMDA0ODAW0Q==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (219, '2016-08-10 14:53:33', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":20,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:56.73662Z","gw_timestamp":617836355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDUxMDAxMjA5MDA0NzMDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (220, '2016-08-10 14:53:38', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":9,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:58.553086Z","gw_timestamp":619670371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeowMDYwMjAxMjExMDA0NzkEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (221, '2016-08-10 14:53:41', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":21,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:03.896387Z","gw_timestamp":625017979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDU1MDAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (198, '2016-08-10 14:52:21', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":9,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:44.903663Z","gw_timestamp":546017731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDYwMDAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (199, '2016-08-10 14:52:23', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:46.728719Z","gw_timestamp":547854563,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aj4wMDY1NzAxMjExMDA0ODEh8g==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (200, '2016-08-10 14:52:29', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":11,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:52.077725Z","gw_timestamp":553199563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL0wMDU4NDAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (201, '2016-08-10 14:52:34', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:53.908214Z","gw_timestamp":555035859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhMwMDYzODAxMjExMDA0ODAEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (202, '2016-08-10 14:52:36', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":12,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:59.256968Z","gw_timestamp":560381387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ALwwMDYwNzAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (203, '2016-08-10 14:52:41', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":1,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:01.104469Z","gw_timestamp":562217051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuQwMDYyMTAxMjExMDA0ODADwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (204, '2016-08-10 14:52:43', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":13,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:06.450595Z","gw_timestamp":567563323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDU5NTAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (205, '2016-08-10 14:52:48', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":2,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:08.282541Z","gw_timestamp":569398347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AtMwMDYwOTAxMjExMDA0ODAEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (206, '2016-08-10 14:52:50', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":14,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:13.627212Z","gw_timestamp":574745051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL8wMDU5MTAxMjA5MDA0NzIDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (207, '2016-08-10 14:52:56', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":3,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:15.464216Z","gw_timestamp":576579443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ApIwMDU5NTAxMjExMDA0ODAEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (208, '2016-08-10 14:52:57', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":15,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:20.813187Z","gw_timestamp":581926987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL0wMDU1MjAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (223, '2016-08-10 14:53:47', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":22,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:11.07266Z","gw_timestamp":632199811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL8wMDU2NjAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (224, '2016-08-10 14:53:53', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":11,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:12.910461Z","gw_timestamp":634033491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AowwMDYwNzAxMjExMDA0NzkGsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (225, '2016-08-10 14:53:55', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":23,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:18.25909Z","gw_timestamp":639381747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL8wMDU2NjAxMjA5MDA0NzMDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (222, '2016-08-10 14:53:45', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":10,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:05.731795Z","gw_timestamp":626852291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AekwMDU5NTAxMjExMDA0NzkLUA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (227, '2016-08-10 14:54:02', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":24,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:25.443842Z","gw_timestamp":646563475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AL4wMDU2NjAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (228, '2016-08-10 14:54:07', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":13,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:27.27043Z","gw_timestamp":648396715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnwwMDU3OTAxMjExMDA0NzkD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (241, '2016-08-10 14:54:52', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":31,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:15.721476Z","gw_timestamp":696836619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUzNjAxMjA5MDA0NzMDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (242, '2016-08-10 14:54:59', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":20,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:17.559477Z","gw_timestamp":698669675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AtwwMDU0NTAxMjExMDA0NzkD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (245, '2016-08-10 14:55:06', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":33,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:30.079722Z","gw_timestamp":711200387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyNTAxMjA5MDA0NzIDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (246, '2016-08-10 14:55:12', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":22,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:31.923619Z","gw_timestamp":713033427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuUwMDU3MzAxMjExMDA0NzkHQA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (247, '2016-08-10 14:55:13', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":34,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:37.268741Z","gw_timestamp":718382219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0NzAxMjA5MDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (248, '2016-08-10 14:55:19', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":23,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:39.095224Z","gw_timestamp":720215147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuIwMDUzNzAxMjExMDA0NzkEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (249, '2016-08-10 14:55:21', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":35,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:44.435909Z","gw_timestamp":725564059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUzODAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (250, '2016-08-10 14:55:26', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":24,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:46.275963Z","gw_timestamp":727397067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AqUwMDU2NjAxMjExMDA0NzkEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (251, '2016-08-10 14:55:28', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":36,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:51.624726Z","gw_timestamp":732745787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU2ODAxMjA5MDA0NzIDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (252, '2016-08-10 14:55:33', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":25,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:53.461966Z","gw_timestamp":734578891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aq8wMDU3MDAxMjExMDA0NzkD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (253, '2016-08-10 14:55:35', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":37,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:58.810471Z","gw_timestamp":739927723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUxNjAxMjEwMDA0NzIDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (226, '2016-08-10 14:54:00', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":12,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:20.100277Z","gw_timestamp":641214899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AqEwMDU4NDAxMjExMDA0NzkDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (229, '2016-08-10 14:54:09', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":25,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:32.643727Z","gw_timestamp":653745419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU1MDAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (230, '2016-08-10 14:54:14', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":14,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:34.45434Z","gw_timestamp":655578643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuwwMDU2MTAxMjExMDA0ODAEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (231, '2016-08-10 14:54:16', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":26,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:39.818346Z","gw_timestamp":660927355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0NzAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (232, '2016-08-10 14:54:21', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":15,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:41.637353Z","gw_timestamp":662760363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuswMDU3NTAxMjExMDA0ODEEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (233, '2016-08-10 14:54:23', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":27,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:47.004116Z","gw_timestamp":668109187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyMzAxMjA5MDA0NzMDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (234, '2016-08-10 14:54:29', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":16,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:48.817984Z","gw_timestamp":669942387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuowMDU3MzAxMjExMDA0ODAEIA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (235, '2016-08-10 14:54:30', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":28,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:54.166465Z","gw_timestamp":675291019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0MTAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (236, '2016-08-10 14:54:36', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":17,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:55.996219Z","gw_timestamp":677124315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AugwMDU2NDAxMjExMDA0ODAFoA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (237, '2016-08-10 14:54:38', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":29,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:01.344092Z","gw_timestamp":682472955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUzNjAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (238, '2016-08-10 14:54:43', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":18,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:03.180371Z","gw_timestamp":684305931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuEwMDU4MjAxMjExMDA0ODAD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (239, '2016-08-10 14:54:45', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":30,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:08.529729Z","gw_timestamp":689654683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0MzAxMjA5MDA0NzMDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (240, '2016-08-10 14:54:50', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":19,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:10.366711Z","gw_timestamp":691487747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuAwMDUxMjAxMjExMDA0ODADwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (243, '2016-08-10 14:55:00', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":32,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:22.924352Z","gw_timestamp":704018555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyNTAxMjA5MDA0NzMDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (244, '2016-08-10 14:55:05', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":21,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:24.731924Z","gw_timestamp":705851499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AuMwMDU1NDAxMjExMDA0NzkEIA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (255, '2016-08-10 14:55:42', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":38,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:05.983237Z","gw_timestamp":747109555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxNjAxMjEwMDA0NzMDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (254, '2016-08-10 14:55:40', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":26,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:00.63521Z","gw_timestamp":741760611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AvUwMDU2MTAxMjExMDA0NzkEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (256, '2016-08-10 14:55:49', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":27,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:07.839081Z","gw_timestamp":748942123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A60wMDU2ODAxMjExMDA0NzgGkA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (257, '2016-08-10 14:55:55', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":28,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:15.000348Z","gw_timestamp":756123323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7UwMDU1NzAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (258, '2016-08-10 14:55:57', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":39,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:20.348101Z","gw_timestamp":761473323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyNzAxMjEwMDA0NzIDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (259, '2016-08-10 14:56:02', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":29,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:22.177229Z","gw_timestamp":763305347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7QwMDU3NzAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (260, '2016-08-10 14:56:04', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":41,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:27.536982Z","gw_timestamp":768655163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDUzNjAxMjEwMDA0NzIDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (261, '2016-08-10 14:56:09', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":30,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:29.366109Z","gw_timestamp":770487067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDU1MDAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (262, '2016-08-10 14:56:11', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":42,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:34.713982Z","gw_timestamp":775836995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0NTAxMjEwMDA0NzIDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (263, '2016-08-10 14:56:16', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":31,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:36.549727Z","gw_timestamp":777668995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7QwMDU2NDAxMjEyMDA0NzgD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (264, '2016-08-10 14:56:18', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":43,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:41.901224Z","gw_timestamp":783018723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUwNzAxMjEwMDA0NzIDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (265, '2016-08-10 14:56:23', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":32,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:43.733572Z","gw_timestamp":784850923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7MwMDU2MTAxMjEyMDA0NzgD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (266, '2016-08-10 14:56:25', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":44,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:49.073781Z","gw_timestamp":790200659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUxNjAxMjEwMDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (267, '2016-08-10 14:56:31', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":33,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:50.907596Z","gw_timestamp":792032747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7IwMDU3OTAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (268, '2016-08-10 14:56:33', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":45,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:56.255479Z","gw_timestamp":797382603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUzNDAxMjEwMDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (269, '2016-08-10 14:56:38', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":34,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:58.113109Z","gw_timestamp":799214571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7MwMDU0NjAxMjEyMDA0NzgD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (271, '2016-08-10 14:56:45', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":35,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:05.27311Z","gw_timestamp":806396395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7IwMDU3MzAxMjEyMDA0NzgDoA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (272, '2016-08-10 14:56:47', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":47,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:10.62073Z","gw_timestamp":811746267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyOTAxMjEwMDA0NzIDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (273, '2016-08-10 14:56:52', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":36,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:12.46111Z","gw_timestamp":813578107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7EwMDU2NDAxMjEyMDA0NzgDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (274, '2016-08-10 14:56:55', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":48,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:17.811496Z","gw_timestamp":818928099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU2ODAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (275, '2016-08-10 14:57:00', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":37,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:19.642355Z","gw_timestamp":820760035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDUzMjAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (276, '2016-08-10 14:57:01', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":49,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:24.987745Z","gw_timestamp":826110043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU1MDAxMjEwMDA0NzEDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (277, '2016-08-10 14:57:07', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":38,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:26.817412Z","gw_timestamp":827941963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7MwMDU1MDAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (278, '2016-08-10 14:57:09', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":50,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:32.166732Z","gw_timestamp":833291979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0MTAxMjEwMDA0NzEDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (279, '2016-08-10 14:57:14', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":39,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:34.008864Z","gw_timestamp":835123787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7IwMDUxMzAxMjEyMDA0NzgD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (280, '2016-08-10 14:57:16', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":51,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:39.344351Z","gw_timestamp":840473707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-82,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyNTAxMjEwMDA0NzEDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (281, '2016-08-10 14:57:23', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":40,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:41.184354Z","gw_timestamp":842305715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDU1NTAxMjEyMDA0NzcD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (282, '2016-08-10 14:57:28', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":41,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:48.382045Z","gw_timestamp":849487323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDU1MDAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (283, '2016-08-10 14:57:30', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":52,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:53.729008Z","gw_timestamp":854837371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU1MDAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (270, '2016-08-10 14:56:40', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":46,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:03.449598Z","gw_timestamp":804564435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyMzAxMjEwMDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (285, '2016-08-10 14:57:35', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":693,"f_cnt_down":1271,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T14:57:33.015543Z","gw_timestamp":2099229812,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:01:33.716673Z","gw_timestamp":735074060,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGkwMDU3NDAxMjI0MDA0NDMIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (286, '2016-08-10 14:57:37', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":54,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:00.893362Z","gw_timestamp":862019307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyOTAxMjEwMDA0NzEDgA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (298, '2016-08-10 14:58:21', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":60,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:43.984194Z","gw_timestamp":905110419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUxMDAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (299, '2016-08-10 14:58:26', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":49,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:45.814374Z","gw_timestamp":906941187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A68wMDU0OTAxMjEyMDA0NzcD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (300, '2016-08-10 14:58:28', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":61,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:51.182962Z","gw_timestamp":912292155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0MzAxMjEwMDA0NzEDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (301, '2016-08-10 14:58:31', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":50,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:53.005846Z","gw_timestamp":914123107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7IwMDU1NTAxMjEyMDA0NzcD8A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (302, '2016-08-10 14:58:35', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":62,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:58.347478Z","gw_timestamp":919474091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyMzAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (303, '2016-08-10 14:58:40', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":51,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:00.184351Z","gw_timestamp":921304939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7EwMDU2MjAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (304, '2016-08-10 14:58:42', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":63,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:05.548502Z","gw_timestamp":926655923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUxNDAxMjEwMDA0NzEDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (305, '2016-08-10 14:58:47', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":52,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:07.36798Z","gw_timestamp":928486659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7IwMDU1ODAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (306, '2016-08-10 14:58:49', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":64,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:12.707731Z","gw_timestamp":933837755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUxMDAxMjExMDA0NzEDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (310, '2016-08-10 14:59:03', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":66,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:27.093491Z","gw_timestamp":948201531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MDAxMjEwMDA0NzEDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (284, '2016-08-10 14:57:33', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":42,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:55.550796Z","gw_timestamp":856669259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7EwMDU2NTAxMjEyMDA0NzcDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (287, '2016-08-10 14:57:43', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":43,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:02.755721Z","gw_timestamp":863851083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDUzOTAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (288, '2016-08-10 14:57:45', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":55,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:08.07522Z","gw_timestamp":869201043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyMzAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (289, '2016-08-10 14:57:50', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":44,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:09.913843Z","gw_timestamp":871032379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDU2MDAxMjEyMDA0NzcDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (290, '2016-08-10 14:57:52', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":56,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:15.256604Z","gw_timestamp":876383083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUzNjAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (291, '2016-08-10 14:57:57', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":45,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:17.086483Z","gw_timestamp":878213891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDUzMzAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (292, '2016-08-10 14:57:59', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":57,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:22.442358Z","gw_timestamp":883564811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU1MDAxMjEwMDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (293, '2016-08-10 14:58:04', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":46,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:24.265217Z","gw_timestamp":885395507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A60wMDU2MjAxMjEyMDA0NzcEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (294, '2016-08-10 14:58:06', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":58,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:29.641233Z","gw_timestamp":890746643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyNzAxMjEwMDA0NzIDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (295, '2016-08-10 14:58:11', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":47,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:31.449855Z","gw_timestamp":892577539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDU1MzAxMjEyMDA0NzcD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (296, '2016-08-10 14:58:13', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":59,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:36.797481Z","gw_timestamp":897928483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyOTAxMjEwMDA0NzIDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (297, '2016-08-10 14:58:18', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":48,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:38.639353Z","gw_timestamp":899759363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7AwMDU1MTAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (307, '2016-08-10 14:58:54', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":53,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:14.543738Z","gw_timestamp":935667755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A58wMDUzNzAxMjEyMDA0NzcDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (308, '2016-08-10 14:58:56', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":65,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:19.890348Z","gw_timestamp":941019699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxNDAxMjEwMDA0NzEDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (309, '2016-08-10 14:59:02', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":54,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:21.722571Z","gw_timestamp":942849475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A68wMDU0NDAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (312, '2016-08-10 14:59:11', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":67,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:34.253609Z","gw_timestamp":955383363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyOTAxMjExMDA0NzEDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (314, '2016-08-10 14:59:18', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":68,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:41.446356Z","gw_timestamp":962565203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyMTAxMjExMDA0NzEDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (315, '2016-08-10 14:59:25', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":57,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:43.276758Z","gw_timestamp":964394627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7MwMDU3NDAxMjEyMDA0NzcD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (316, '2016-08-10 14:59:44', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":58,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:50.452977Z","gw_timestamp":971575723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7MwMDU2OTAxMjEyMDA0NzYD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (311, '2016-08-10 14:59:09', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":55,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:28.907987Z","gw_timestamp":950031291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7EwMDUzMDAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (313, '2016-08-10 14:59:16', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":56,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:36.085934Z","gw_timestamp":957213115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A7IwMDUzNzAxMjEyMDA0NzcD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (317, '2016-08-10 15:02:24', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":778,"f_cnt_down":1466,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:02:09.230874Z","gw_timestamp":2375445284,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AuAwMDU4NjAxMjI2MDA0MzUIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (318, '2016-08-10 15:04:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":773,"f_cnt_down":1420,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:03:54.855893Z","gw_timestamp":2481070356,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A70wMDU1MjAxMjQwMDA0MDELkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (319, '2016-08-10 15:04:41', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":69,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:23.408683Z","gw_timestamp":10887339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwNDAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (320, '2016-08-10 15:04:47', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":59,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:25.258475Z","gw_timestamp":12711811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A5IwMDU2MjAxMjEyMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (321, '2016-08-10 15:04:48', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:30.592246Z","gw_timestamp":18069283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxMzAxMjEyMDA0NjkDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (322, '2016-08-10 15:04:55', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:32.431031Z","gw_timestamp":19893635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":4,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A48wMDU0MjAxMjEyMDA0NzUDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (323, '2016-08-10 15:04:55', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:37.765899Z","gw_timestamp":25251323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxMzAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (324, '2016-08-10 15:05:01', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:39.600972Z","gw_timestamp":27074947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A48wMDUyNDAxMjEyMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (325, '2016-08-10 15:05:02', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:44.96748Z","gw_timestamp":32433059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MTAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (326, '2016-08-10 15:05:08', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:46.793373Z","gw_timestamp":34256251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4wwMDUyMDAxMjEyMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (327, '2016-08-10 15:05:10', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:52.144185Z","gw_timestamp":39614795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxNzAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (328, '2016-08-10 15:05:15', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:53.961137Z","gw_timestamp":41437443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4swMDU3MTAxMjEyMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (329, '2016-08-10 15:05:17', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:59.321842Z","gw_timestamp":46796731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxOTAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (330, '2016-08-10 15:05:22', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:01.169104Z","gw_timestamp":48618859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4owMDUzNTAxMjEyMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (331, '2016-08-10 15:05:24', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:06.502317Z","gw_timestamp":53978675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MzAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (332, '2016-08-10 15:05:29', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:08.32053Z","gw_timestamp":55800683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4gwMDU3NDAxMjEyMDA0NzUEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (333, '2016-08-10 15:05:31', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:13.68526Z","gw_timestamp":61160515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxMTAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (334, '2016-08-10 15:05:36', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:15.511152Z","gw_timestamp":62982515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4YwMDU0MjAxMjEyMDA0NzUEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (335, '2016-08-10 15:05:38', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:20.855934Z","gw_timestamp":68342347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MzAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (336, '2016-08-10 15:05:44', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:22.67368Z","gw_timestamp":70164443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":5.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4UwMDU4MDAxMjEyMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (337, '2016-08-10 15:05:46', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:28.046803Z","gw_timestamp":75524187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwODAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (338, '2016-08-10 15:05:51', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:29.866525Z","gw_timestamp":77346371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4MwMDU1NTAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (339, '2016-08-10 15:05:53', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:35.233274Z","gw_timestamp":82706019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwODAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (340, '2016-08-10 15:05:58', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:37.033749Z","gw_timestamp":84528195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":3.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4IwMDUzNTAxMjEzMDA0NzUD8A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (341, '2016-08-10 15:05:59', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:42.388635Z","gw_timestamp":89887755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ3OTAxMjEyMDA0NjkDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (342, '2016-08-10 15:06:06', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:44.223501Z","gw_timestamp":91710027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4AwMDUzOTAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (343, '2016-08-10 15:06:07', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:49.579499Z","gw_timestamp":97069699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5OTAxMjEyMDA0NjkDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (344, '2016-08-10 15:06:13', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:51.39924Z","gw_timestamp":98891747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A4AwMDU1NTAxMjEzMDA0NzUEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (345, '2016-08-10 15:06:15', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:56.760006Z","gw_timestamp":104251635,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwMjAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (346, '2016-08-10 15:06:20', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:58.583695Z","gw_timestamp":106073571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-90,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A38wMDUyMDAxMjEzMDA0NzUEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (347, '2016-08-10 15:06:22', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:03.937745Z","gw_timestamp":111433475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxNTAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (348, '2016-08-10 15:06:27', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:05.772932Z","gw_timestamp":113255603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A34wMDU3MTAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (349, '2016-08-10 15:06:29', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:11.131654Z","gw_timestamp":118615307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwNDAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (350, '2016-08-10 15:06:34', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:12.940265Z","gw_timestamp":120437427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A38wMDUwOTAxMjEzMDA0NzUD8A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (351, '2016-08-10 15:06:36', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:18.301292Z","gw_timestamp":125797035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5NTAxMjEyMDA0NjkDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (352, '2016-08-10 15:06:42', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:20.129698Z","gw_timestamp":127619251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A30wMDU1ODAxMjEzMDA0NzUDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (353, '2016-08-10 15:06:43', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:25.515705Z","gw_timestamp":132979075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyMjAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (354, '2016-08-10 15:06:48', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:27.308632Z","gw_timestamp":134801075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AxUwMDU1ODAxMjEzMDA0NzUD8A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (355, '2016-08-10 15:06:49', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:32.664251Z","gw_timestamp":140160819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDU0NDAxMjEyMDA0NjkDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (356, '2016-08-10 15:06:55', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:34.493132Z","gw_timestamp":141983003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3wwMDU0MjAxMjEzMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (357, '2016-08-10 15:06:57', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:39.853009Z","gw_timestamp":147342755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5NzAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (359, '2016-08-10 15:07:04', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:47.036859Z","gw_timestamp":154524587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxNTAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (360, '2016-08-10 15:07:09', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:48.846626Z","gw_timestamp":156345715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3kwMDUzNTAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (361, '2016-08-10 15:07:11', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:54.216251Z","gw_timestamp":161706427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwMjAxMjEyMDA0NjkDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (362, '2016-08-10 15:07:17', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:56.043813Z","gw_timestamp":163527539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3kwMDU2NzAxMjEzMDA0NzUDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (363, '2016-08-10 15:07:18', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:01.41228Z","gw_timestamp":168888259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ4ODAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (364, '2016-08-10 15:07:21', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:03.216949Z","gw_timestamp":170708851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3owMDU1NTAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (365, '2016-08-10 15:07:30', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:10.40402Z","gw_timestamp":177890155,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3owMDUyODAxMjEzMDA0NzUE8A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (366, '2016-08-10 15:07:32', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:15.764181Z","gw_timestamp":183251931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDU1MTAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (367, '2016-08-10 15:07:39', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:22.94101Z","gw_timestamp":190433867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyODAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (380, '2016-08-10 15:08:33', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:13.215642Z","gw_timestamp":240706923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ4NDAxMjEyMDA0NjkDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (382, '2016-08-10 15:08:35', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1255,"f_cnt_down":2057,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:08:33.85645Z","gw_timestamp":2760071052,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AhcwMDYxMTAxMjI5MDA0MTUJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (384, '2016-08-10 15:08:44', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:27.575297Z","gw_timestamp":255070691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyNDAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (386, '2016-08-10 15:08:52', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:34.775994Z","gw_timestamp":262252427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUzMDAxMjEyMDA0NjkDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (358, '2016-08-10 15:07:02', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:41.673762Z","gw_timestamp":149164627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3wwMDU1MTAxMjEzMDA0NzUEAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (368, '2016-08-10 15:07:46', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:24.752679Z","gw_timestamp":192253899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3owMDU2NzAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (369, '2016-08-10 15:07:47', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:30.115507Z","gw_timestamp":197615811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDU1NTAxMjEyMDA0NjgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (370, '2016-08-10 15:07:49', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:31.942855Z","gw_timestamp":199435723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3kwMDUyODAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (371, '2016-08-10 15:07:53', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:37.319013Z","gw_timestamp":204797747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ4NjAxMjEyMDA0NjgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (372, '2016-08-10 15:07:58', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:39.127278Z","gw_timestamp":206617547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3kwMDUyMjAxMjEzMDA0NzUEIA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (373, '2016-08-10 15:08:01', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:44.491023Z","gw_timestamp":211979475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ3NzAxMjEyMDA0NjgDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (374, '2016-08-10 15:08:07', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:46.302019Z","gw_timestamp":213799475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3EwMDUzNTAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (375, '2016-08-10 15:08:07', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:51.670889Z","gw_timestamp":219161307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-86,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUzOTAxMjEyMDA0NjgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (376, '2016-08-10 15:08:33', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:58.855519Z","gw_timestamp":226343147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUzMDAxMjEyMDA0NjgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (377, '2016-08-10 15:08:33', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:00.665263Z","gw_timestamp":228163131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3kwMDU2OTAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (378, '2016-08-10 15:08:33', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:06.030011Z","gw_timestamp":233524987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUzOTAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (379, '2016-08-10 15:08:33', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:07.858383Z","gw_timestamp":235344955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3gwMDU2NTAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (381, '2016-08-10 15:08:34', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:15.028509Z","gw_timestamp":242526675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3gwMDU1MTAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (383, '2016-08-10 15:08:43', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:20.400263Z","gw_timestamp":247888755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwMjAxMjEyMDA0NjkDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (385, '2016-08-10 15:08:50', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:29.392682Z","gw_timestamp":256890427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3cwMDUwNTAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (387, '2016-08-10 15:08:54', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:36.581453Z","gw_timestamp":264072355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3YwMDU2NTAxMjEzMDA0NzUEYA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (389, '2016-08-10 15:09:03', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:43.758891Z","gw_timestamp":271253659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3YwMDU2MjAxMjEzMDA0NzUD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (391, '2016-08-10 15:09:10', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:50.93575Z","gw_timestamp":278434955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3UwMDU2MDAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (388, '2016-08-10 15:08:59', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:41.936134Z","gw_timestamp":269434363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5NzAxMjEyMDA0NjkDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (390, '2016-08-10 15:09:07', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:49.119016Z","gw_timestamp":276616195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxMTAxMjEyMDA0NjgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (392, '2016-08-10 15:09:13', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:56.298637Z","gw_timestamp":283798139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwMjAxMjEyMDA0NjgDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (393, '2016-08-10 15:09:51', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:58.133784Z","gw_timestamp":285616579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3cwMDU2NzAxMjEzMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (394, '2016-08-10 15:13:25', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":694,"f_cnt_down":1272,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:12:43.784597Z","gw_timestamp":3009999324,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:16:44.485786Z","gw_timestamp":1645843172,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFcwMDU5MzAxMjI0MDA0NDgIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (395, '2016-08-10 15:13:25', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:24:45.611797Z","gw_timestamp":9856627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxMTAxMjEyMDA0NjgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (396, '2016-08-10 15:13:27', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:24:47.432417Z","gw_timestamp":11671139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A2wwMDUxNDAxMjEzMDA0NzQD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (397, '2016-08-10 15:13:37', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:24:54.598762Z","gw_timestamp":18852755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A24wMDUyNTAxMjEzMDA0NzQDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (398, '2016-08-10 15:13:45', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:24:59.992541Z","gw_timestamp":24220291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxMzAxMjEyMDA0NjgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (399, '2016-08-10 15:13:46', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:07.161943Z","gw_timestamp":31402139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyNDAxMjEyMDA0NjcDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (400, '2016-08-10 15:13:52', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:08.964816Z","gw_timestamp":33214947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3AwMDU0NzAxMjEzMDA0NzQDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (401, '2016-08-10 15:13:54', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:14.342511Z","gw_timestamp":38584075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwNDAxMjEyMDA0NjgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (402, '2016-08-10 15:13:55', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:16.151358Z","gw_timestamp":40396467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A20wMDUzMzAxMjEzMDA0NzQD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (403, '2016-08-10 15:14:01', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:21.53026Z","gw_timestamp":45765811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ3OTAxMjEyMDA0NjgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (404, '2016-08-10 15:14:05', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:23.389104Z","gw_timestamp":47578283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3AwMDU1ODAxMjEzMDA0NzQEQA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (407, '2016-08-10 15:14:15', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:35.901263Z","gw_timestamp":60129587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUwNDAxMjEyMDA0NjcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (408, '2016-08-10 15:14:21', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:37.706571Z","gw_timestamp":61942043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3EwMDU2MDAxMjEzMDA0NzUD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (409, '2016-08-10 15:14:22', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:43.064476Z","gw_timestamp":67311531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5NzAxMjEyMDA0NjcDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (410, '2016-08-10 15:14:28', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:44.887264Z","gw_timestamp":69123771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3IwMDU0NzAxMjEzMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (411, '2016-08-10 15:14:30', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:50.247677Z","gw_timestamp":74493363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU0ODAxMjEyMDA0NjcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (412, '2016-08-10 15:14:31', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:52.05283Z","gw_timestamp":76305595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3IwMDUxNDAxMjEzMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (413, '2016-08-10 15:14:38', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:57.447552Z","gw_timestamp":81675099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUwODAxMjEyMDA0NjcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (414, '2016-08-10 15:14:40', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:59.236296Z","gw_timestamp":83487419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3IwMDU2MDAxMjEzMDA0NzQD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (415, '2016-08-10 15:14:50', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:06.419926Z","gw_timestamp":90669451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3MwMDU1MzAxMjEzMDA0NzQD0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (416, '2016-08-10 15:14:51', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:11.785949Z","gw_timestamp":96038875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxNzAxMjEyMDA0NjcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (417, '2016-08-10 15:14:57', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:13.610665Z","gw_timestamp":97851275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3QwMDUzODAxMjEzMDA0NzQDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (418, '2016-08-10 15:14:59', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:18.97142Z","gw_timestamp":103220611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ4ODAxMjEyMDA0NjcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (419, '2016-08-10 15:14:59', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:20.774294Z","gw_timestamp":105032995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3MwMDUzNjAxMjEzMDA0NzQD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (405, '2016-08-10 15:14:08', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:28.715132Z","gw_timestamp":52947651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUwODAxMjEyMDA0NjcDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (406, '2016-08-10 15:14:12', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:25:30.540818Z","gw_timestamp":54760219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3AwMDU0OTAxMjEzMDA0NzQDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (421, '2016-08-10 15:15:08', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:27.969331Z","gw_timestamp":112214827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3MwMDU1NjAxMjEzMDA0NzQD4A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (422, '2016-08-10 15:15:18', '{"dev_eui":"008000000000b19a","DevAddr":"24a51a22","f_port":1,"f_cnt_up":190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:35.142954Z","gw_timestamp":119396755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"A3YwMDU0MjAxMjEzMDA0NzUDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (423, '2016-08-10 15:15:28', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:40.515457Z","gw_timestamp":124766331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MTAxMjEyMDA0NjcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (420, '2016-08-10 15:15:06', '{"dev_eui":"008000000000b19c","DevAddr":"249be237","f_port":1,"f_cnt_up":200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:26:26.149487Z","gw_timestamp":110402651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MzAxMjEyMDA0NjcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (424, '2016-08-10 15:16:31', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:51.407165Z","gw_timestamp":195665219,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.199999809265137,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (425, '2016-08-10 15:16:42', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:27:58.088801Z","gw_timestamp":202346499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (426, '2016-08-10 15:16:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:04.784806Z","gw_timestamp":209028395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAAAAAAAAAAAAAAAAAAAA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (427, '2016-08-10 15:16:57', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:18.142209Z","gw_timestamp":222388979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (428, '2016-08-10 15:17:10', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":4,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:24.818937Z","gw_timestamp":229070779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (429, '2016-08-10 15:17:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":5,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:31.498682Z","gw_timestamp":235752683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (430, '2016-08-10 15:17:23', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":779,"f_cnt_down":1467,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:17:19.991345Z","gw_timestamp":3286206212,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:20.692554Z","gw_timestamp":1922049940,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjkwMDYxMzAxMjI2MDA0NDAJgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (431, '2016-08-10 15:17:23', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":6,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:44.865676Z","gw_timestamp":249116291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (432, '2016-08-10 15:17:33', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":8,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:28:51.541299Z","gw_timestamp":255798091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (433, '2016-08-10 15:17:49', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":9,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:04.912681Z","gw_timestamp":269161795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (434, '2016-08-10 15:17:56', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":11,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:11.583422Z","gw_timestamp":275843595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/t/+6/7kAPAA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (435, '2016-08-10 15:18:03', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":12,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:18.265257Z","gw_timestamp":282523419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7r/t/+6/7kAPgA8AD4APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (436, '2016-08-10 15:18:10', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":13,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:24.953807Z","gw_timestamp":289202931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7H/sf+6/7cAOQA5AD4APA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (438, '2016-08-10 15:18:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":15,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:07.466351Z","gw_timestamp":331723043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7D/sP+6/7UAPgA5AD4APA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (440, '2016-08-10 15:19:03', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":18,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:20.833186Z","gw_timestamp":345086739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7D/sP+6/7UAPgA5AD4APA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (442, '2016-08-10 15:19:06', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":774,"f_cnt_down":1421,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:06.39273Z","gw_timestamp":2027750116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbYwMDU1MjAxMjM5MDA0MDYMsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (443, '2016-08-10 15:19:12', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":775,"f_cnt_down":1422,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:19:05.691524Z","gw_timestamp":3391906444,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbYwMDU1MjAxMjM5MDA0MDYMsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (444, '2016-08-10 15:19:13', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":20,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:34.193552Z","gw_timestamp":358448051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-45,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/D/7YAPAAyAD4AOg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (446, '2016-08-10 15:19:39', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":22,"f_cnt_down":19,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:54.234535Z","gw_timestamp":378489811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-34,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/83/sP/N/7kANwAyAD4AOQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (449, '2016-08-10 15:20:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":26,"f_cnt_down":22,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:20.961311Z","gw_timestamp":405214099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-39,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9v/sP/b/7wAQQAyAEEAOg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (451, '2016-08-10 15:20:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":29,"f_cnt_down":24,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:34.31582Z","gw_timestamp":418575419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/m/8AAQwAyAEMAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (453, '2016-08-10 15:20:44', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":33,"f_cnt_down":26,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:01.05343Z","gw_timestamp":445302099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-5,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/m/8AAQwAyAEMAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (455, '2016-08-10 15:20:59', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":35,"f_cnt_down":28,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:14.416582Z","gw_timestamp":458661427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-5,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/s/8cAPAAyAEgAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (457, '2016-08-10 15:21:09', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":37,"f_cnt_down":30,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:27.772012Z","gw_timestamp":472022331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-4,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+r/sP/s/8oATQAyAE0APQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (459, '2016-08-10 15:21:26', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":40,"f_cnt_down":32,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:47.807322Z","gw_timestamp":492063467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+j/sP/t/84APgAyAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (461, '2016-08-10 15:21:46', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":42,"f_cnt_down":34,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:01.163561Z","gw_timestamp":505422795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":8.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/t/9EAOQAyAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (437, '2016-08-10 15:18:36', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":14,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:29:54.109434Z","gw_timestamp":318359651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7D/sP+6/7UAPgA5AD4APA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (439, '2016-08-10 15:18:59', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":17,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:14.147538Z","gw_timestamp":338404947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7D/sP+6/7UAPgA5AD4APA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (441, '2016-08-10 15:19:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":19,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:27.511499Z","gw_timestamp":351768547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7D/sP+6/7UAPgA5AD4APA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (445, '2016-08-10 15:19:22', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":21,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:30:40.877566Z","gw_timestamp":365129131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/D/7YAPAAyAD4AOg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (447, '2016-08-10 15:19:45', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":24,"f_cnt_down":20,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:00.917457Z","gw_timestamp":385171611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-25,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/83/sP/N/7kANwAyAD4AOQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (448, '2016-08-10 15:19:49', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":25,"f_cnt_down":21,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:07.610823Z","gw_timestamp":391853523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-24,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/83/sP/N/7kANwAyAD4AOQ==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (450, '2016-08-10 15:20:12', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":28,"f_cnt_down":23,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:27.636062Z","gw_timestamp":411895899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-6,"snr":11.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9v/sP/b/7wAQQAyAEEAOg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (452, '2016-08-10 15:20:35', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":30,"f_cnt_down":25,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:31:54.368685Z","gw_timestamp":438620187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/m/8AAQwAyAEMAOw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (454, '2016-08-10 15:20:53', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":34,"f_cnt_down":27,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:07.722995Z","gw_timestamp":451981915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+z/sP/s/8QASAAyAEgAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (456, '2016-08-10 15:21:02', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":36,"f_cnt_down":29,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:21.086672Z","gw_timestamp":465342507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-6,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/s/8cAPAAyAEgAPA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (458, '2016-08-10 15:21:25', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":38,"f_cnt_down":31,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:41.129431Z","gw_timestamp":485383955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+3/sP/t/8wASwAyAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (460, '2016-08-10 15:21:39', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":41,"f_cnt_down":33,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:32:54.494082Z","gw_timestamp":498743291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-1,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+z/sP/t/9AATQAyAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (462, '2016-08-10 15:21:52', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":43,"f_cnt_down":35,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:07.849193Z","gw_timestamp":512102315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-10,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+T/sP/t/9IANAAyAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (464, '2016-08-10 15:22:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":45,"f_cnt_down":37,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:21.212568Z","gw_timestamp":525463627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-9,"snr":7,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/t/9MAQwAyAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (463, '2016-08-10 15:21:53', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":44,"f_cnt_down":36,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:14.535136Z","gw_timestamp":518784107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+T/sP/t/9IANAAyAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (465, '2016-08-10 15:22:10', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":46,"f_cnt_down":38,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:27.893192Z","gw_timestamp":532143139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-1,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+b/sP/t/9QAPAAyAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (467, '2016-08-10 15:22:25', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":48,"f_cnt_down":40,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:41.264908Z","gw_timestamp":545502475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-34,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+X/sP/t/9YAOQAyAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (469, '2016-08-10 15:22:39', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":50,"f_cnt_down":42,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:54.612939Z","gw_timestamp":558863995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-41,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9z/sP/t/9YASAAyAE0AQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (471, '2016-08-10 15:23:00', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":52,"f_cnt_down":44,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:14.656937Z","gw_timestamp":578906491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-6,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9T/sP/t/9YAPgAyAE0AQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (473, '2016-08-10 15:23:12', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":55,"f_cnt_down":46,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:28.01731Z","gw_timestamp":592267179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-18,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+f/sP/t/9YARgAyAE0AQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (475, '2016-08-10 15:23:26', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":57,"f_cnt_down":48,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:41.374671Z","gw_timestamp":605628499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-5,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+L/sP/t/9YALQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (477, '2016-08-10 15:23:39', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":59,"f_cnt_down":50,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:54.734074Z","gw_timestamp":618987835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-5,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+j/sP/0/9gAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (479, '2016-08-10 15:23:47', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1256,"f_cnt_down":2058,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:23:44.685617Z","gw_timestamp":3670900676,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ab8wMDYyNTAxMjI5MDA0MTcL4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (480, '2016-08-10 15:23:49', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":61,"f_cnt_down":52,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:08.087613Z","gw_timestamp":632346859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-23,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9P/sP/0/9kAOQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (482, '2016-08-10 15:24:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":64,"f_cnt_down":54,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:28.138443Z","gw_timestamp":652391643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-40,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9P/sP/0/9kAOQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (484, '2016-08-10 15:24:39', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":66,"f_cnt_down":56,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:54.856647Z","gw_timestamp":679115939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/9gARgAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (486, '2016-08-10 15:24:53', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":70,"f_cnt_down":58,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:08.2497Z","gw_timestamp":692474971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAPAAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (488, '2016-08-10 15:25:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":72,"f_cnt_down":60,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:21.57695Z","gw_timestamp":705838155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-47,"snr":6.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAPAAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (466, '2016-08-10 15:22:19', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":47,"f_cnt_down":39,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:34.561939Z","gw_timestamp":538822963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-3,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+z/sP/t/9YASAAyAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (468, '2016-08-10 15:22:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":49,"f_cnt_down":41,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:33:47.934314Z","gw_timestamp":552184275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-27,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+X/sP/t/9YAOQAyAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (470, '2016-08-10 15:22:43', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":51,"f_cnt_down":43,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:01.300904Z","gw_timestamp":565545899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-42,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9z/sP/t/9YASAAyAE0AQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (472, '2016-08-10 15:23:00', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":54,"f_cnt_down":45,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:21.336154Z","gw_timestamp":585586003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":3,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+f/sP/t/9YARgAyAE0AQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (474, '2016-08-10 15:23:17', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":56,"f_cnt_down":47,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:34.692013Z","gw_timestamp":598948979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-7,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+f/sP/t/9YARgAyAE0AQA==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (476, '2016-08-10 15:23:33', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":58,"f_cnt_down":49,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:34:48.058072Z","gw_timestamp":612308323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":1,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"//T/sP/0/9cASAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (478, '2016-08-10 15:23:45', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":60,"f_cnt_down":51,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:01.435068Z","gw_timestamp":625667347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-6,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/+f/sP/0/9kAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (481, '2016-08-10 15:24:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":62,"f_cnt_down":53,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:21.458817Z","gw_timestamp":645709739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/9P/sP/0/9kAOQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (483, '2016-08-10 15:24:17', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":65,"f_cnt_down":55,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:35:34.817197Z","gw_timestamp":659071155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":8.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/9gARgAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (485, '2016-08-10 15:24:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":69,"f_cnt_down":57,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:01.533953Z","gw_timestamp":685795451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":8.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/9gALwAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (487, '2016-08-10 15:24:53', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":71,"f_cnt_down":59,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:14.90538Z","gw_timestamp":699156347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-46,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAPAAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (489, '2016-08-10 15:25:15', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":73,"f_cnt_down":61,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:28.27653Z","gw_timestamp":712517667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/9gAOQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (491, '2016-08-10 15:25:20', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":75,"f_cnt_down":63,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:41.627939Z","gw_timestamp":725878667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAQQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (493, '2016-08-10 15:25:33', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":77,"f_cnt_down":65,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:54.97832Z","gw_timestamp":739240291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8r/sP/0/9gASAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (490, '2016-08-10 15:25:19', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":74,"f_cnt_down":62,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:34.945382Z","gw_timestamp":719197179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAQQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (492, '2016-08-10 15:25:33', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":76,"f_cnt_down":64,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:36:48.303169Z","gw_timestamp":732560475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAQQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (496, '2016-08-10 15:25:59', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":80,"f_cnt_down":68,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:15.018322Z","gw_timestamp":759279139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/9gASAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (500, '2016-08-10 15:26:32', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":85,"f_cnt_down":72,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:48.418708Z","gw_timestamp":792679619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8H/sP/0/9UAQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (504, '2016-08-10 15:26:49', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":88,"f_cnt_down":75,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:08.465951Z","gw_timestamp":812720355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/9MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (508, '2016-08-10 15:27:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":92,"f_cnt_down":79,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:35.202693Z","gw_timestamp":839440795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7//sP/0/9AAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (494, '2016-08-10 15:25:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":78,"f_cnt_down":66,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:01.670564Z","gw_timestamp":745919819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gASAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (495, '2016-08-10 15:25:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":79,"f_cnt_down":67,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:08.349957Z","gw_timestamp":752599635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (497, '2016-08-10 15:26:02', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":81,"f_cnt_down":69,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:21.697066Z","gw_timestamp":765958867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/9gAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (498, '2016-08-10 15:26:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":82,"f_cnt_down":70,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:35.067569Z","gw_timestamp":779320291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8r/sP/0/9cAQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (499, '2016-08-10 15:26:26', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":84,"f_cnt_down":71,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:41.742082Z","gw_timestamp":785999803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/9YARgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (501, '2016-08-10 15:26:39', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":86,"f_cnt_down":73,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:37:55.129719Z","gw_timestamp":799359139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8T/sP/0/9QANAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (502, '2016-08-10 15:26:40', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":87,"f_cnt_down":74,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:01.796128Z","gw_timestamp":806038651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/9MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (503, '2016-08-10 15:26:47', '{"dev_eui":"008000000000b1a1","DevAddr":"25753cf1","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:02.139076Z","gw_timestamp":806389604,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"H+swMjAwMTAxMjI0MDA1MDYJMA==","topic":"iot-2/type/mDot/id/HIE-smart-campus-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (505, '2016-08-10 15:26:59', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":89,"f_cnt_down":76,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:15.163594Z","gw_timestamp":819402259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/9MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (506, '2016-08-10 15:27:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":90,"f_cnt_down":77,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:21.828589Z","gw_timestamp":826081771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/9IAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (507, '2016-08-10 15:27:13', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":91,"f_cnt_down":78,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:38:28.498824Z","gw_timestamp":832761275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-47,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/9EASwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (509, '2016-08-10 15:27:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":93,"f_cnt_down":80,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:01.912151Z","gw_timestamp":866168003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7//sP/0/9AAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (510, '2016-08-10 15:27:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":97,"f_cnt_down":81,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:08.596557Z","gw_timestamp":872847523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8H/sP/0/88ARgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (511, '2016-08-10 15:27:55', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":98,"f_cnt_down":82,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:15.281822Z","gw_timestamp":879528595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8H/sP/0/88ARgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (512, '2016-08-10 15:27:57', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":695,"f_cnt_down":1273,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:27:54.553502Z","gw_timestamp":3920768684,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFUwMDU3MjAxMjI0MDA0NTIJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (514, '2016-08-10 15:28:31', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":102,"f_cnt_down":84,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:48.670956Z","gw_timestamp":912934795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/84AQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (513, '2016-08-10 15:28:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":99,"f_cnt_down":83,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:39:35.344097Z","gw_timestamp":899571083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/84AQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (515, '2016-08-10 15:28:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":104,"f_cnt_down":85,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:02.077391Z","gw_timestamp":926298411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":11,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/84AQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (516, '2016-08-10 15:28:53', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":106,"f_cnt_down":86,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:08.727955Z","gw_timestamp":932980211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/84AQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (517, '2016-08-10 15:28:58', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":107,"f_cnt_down":87,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:15.405585Z","gw_timestamp":939662019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-46,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/84AQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (518, '2016-08-10 15:29:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":108,"f_cnt_down":88,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:22.100194Z","gw_timestamp":946341531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-45,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8L/sP/0/80APAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (519, '2016-08-10 15:29:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":109,"f_cnt_down":89,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:28.759955Z","gw_timestamp":953021043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/77/sP/0/8wANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (520, '2016-08-10 15:29:20', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":110,"f_cnt_down":90,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:35.449481Z","gw_timestamp":959700547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8T/sP/0/8sAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (521, '2016-08-10 15:29:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":111,"f_cnt_down":91,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:42.146586Z","gw_timestamp":966382355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-46,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8T/sP/0/8sAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (522, '2016-08-10 15:29:30', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":112,"f_cnt_down":92,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:40:48.812033Z","gw_timestamp":973061867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-45,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/8oAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (523, '2016-08-10 15:29:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":113,"f_cnt_down":93,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:02.16933Z","gw_timestamp":986424851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/8oAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (524, '2016-08-10 15:29:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":115,"f_cnt_down":94,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:08.851389Z","gw_timestamp":993104363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8kAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (525, '2016-08-10 15:30:05', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":116,"f_cnt_down":95,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:15.519902Z","gw_timestamp":999785435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8kAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (526, '2016-08-10 15:30:05', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":117,"f_cnt_down":96,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:22.20146Z","gw_timestamp":1006464955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7z/sP/0/8gAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (527, '2016-08-10 15:30:12', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":118,"f_cnt_down":97,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:28.884672Z","gw_timestamp":1013146123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7z/sP/0/8gAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (528, '2016-08-10 15:30:20', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":119,"f_cnt_down":98,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:35.568184Z","gw_timestamp":1019825843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/77/sP/0/8cASAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (530, '2016-08-10 15:30:33', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":121,"f_cnt_down":100,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:48.940315Z","gw_timestamp":1033185187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8YAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (532, '2016-08-10 15:30:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":123,"f_cnt_down":102,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:02.290461Z","gw_timestamp":1046544211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7v/sP/0/8QAPAAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (534, '2016-08-10 15:31:00', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":125,"f_cnt_down":104,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:15.644829Z","gw_timestamp":1059904899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/8QAQQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (536, '2016-08-10 15:31:12', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":127,"f_cnt_down":106,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:29.012477Z","gw_timestamp":1073264131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-47,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/8QAPgAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (540, '2016-08-10 15:31:38', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":131,"f_cnt_down":110,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:55.72483Z","gw_timestamp":1099984883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8QAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (544, '2016-08-10 15:32:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":136,"f_cnt_down":114,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:29.137541Z","gw_timestamp":1133387339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (548, '2016-08-10 15:32:32', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":780,"f_cnt_down":1468,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:24:57.136913Z","gw_timestamp":2833461596,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AlQwMDYyMzAxMjI2MDA0NDAOoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (550, '2016-08-10 15:32:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":140,"f_cnt_down":118,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:55.851963Z","gw_timestamp":1160107267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (554, '2016-08-10 15:33:07', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":144,"f_cnt_down":122,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:22.563592Z","gw_timestamp":1186826875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8MALwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (558, '2016-08-10 15:33:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":148,"f_cnt_down":126,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:49.282845Z","gw_timestamp":1213546899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-47,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8T/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (562, '2016-08-10 15:34:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":152,"f_cnt_down":130,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:16.02933Z","gw_timestamp":1240266827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (566, '2016-08-10 15:34:17', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":775,"f_cnt_down":1423,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:34:16.527207Z","gw_timestamp":7775284,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BeowMDYxODAxMjM5MDA0MDcLgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (568, '2016-08-10 15:34:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":156,"f_cnt_down":134,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:42.719721Z","gw_timestamp":1266987163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":11.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/77/sP/0/8MANAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (529, '2016-08-10 15:30:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":120,"f_cnt_down":99,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:42.24045Z","gw_timestamp":1026505363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8H/sP/0/8YAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (531, '2016-08-10 15:30:40', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":122,"f_cnt_down":101,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:41:55.601089Z","gw_timestamp":1039864699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8T/sP/0/8UAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (533, '2016-08-10 15:30:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":124,"f_cnt_down":103,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:08.970172Z","gw_timestamp":1053223723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":7,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/8QAQQAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (535, '2016-08-10 15:31:05', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":126,"f_cnt_down":105,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:22.322718Z","gw_timestamp":1066584411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8QAPgAtAE0APg==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (537, '2016-08-10 15:31:19', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":128,"f_cnt_down":107,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:35.679983Z","gw_timestamp":1079943955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8z/sP/0/8QATQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (538, '2016-08-10 15:31:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":129,"f_cnt_down":108,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:42.368536Z","gw_timestamp":1086623675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8X/sP/0/8QAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (539, '2016-08-10 15:31:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":130,"f_cnt_down":109,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:42:49.070551Z","gw_timestamp":1093303187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":7.800000190734863,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8QAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (541, '2016-08-10 15:31:44', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":132,"f_cnt_down":111,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:02.405724Z","gw_timestamp":1106664603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/8QAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (542, '2016-08-10 15:32:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":133,"f_cnt_down":112,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:15.771772Z","gw_timestamp":1120028315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-54,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8f/sP/0/8QAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (543, '2016-08-10 15:32:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":135,"f_cnt_down":113,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:22.450589Z","gw_timestamp":1126707827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (545, '2016-08-10 15:32:20', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":137,"f_cnt_down":115,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:35.809222Z","gw_timestamp":1140067171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-48,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8j/sP/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (546, '2016-08-10 15:32:28', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":138,"f_cnt_down":116,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:42.483583Z","gw_timestamp":1146746675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (547, '2016-08-10 15:32:29', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":139,"f_cnt_down":117,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:43:49.165246Z","gw_timestamp":1153426195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (549, '2016-08-10 15:32:34', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":781,"f_cnt_down":1469,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:32:31.402955Z","gw_timestamp":4197618276,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AlQwMDYyMzAxMjI2MDA0NDAOoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (551, '2016-08-10 15:32:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":141,"f_cnt_down":119,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:02.524584Z","gw_timestamp":1166786779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (555, '2016-08-10 15:33:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":145,"f_cnt_down":123,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:29.253039Z","gw_timestamp":1193506387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/77/sP/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (559, '2016-08-10 15:33:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":149,"f_cnt_down":127,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:55.971243Z","gw_timestamp":1220226411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (563, '2016-08-10 15:34:08', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":153,"f_cnt_down":131,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:22.678667Z","gw_timestamp":1246946331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7z/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (567, '2016-08-10 15:34:21', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":776,"f_cnt_down":1424,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:26:42.261169Z","gw_timestamp":2938585852,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BeowMDYxODAxMjM5MDA0MDcLgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (569, '2016-08-10 15:34:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":157,"f_cnt_down":135,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:49.405419Z","gw_timestamp":1273666667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7z/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (573, '2016-08-10 15:35:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":161,"f_cnt_down":139,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:16.130286Z","gw_timestamp":1300386603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7n/sP/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (577, '2016-08-10 15:35:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":165,"f_cnt_down":143,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:42.839837Z","gw_timestamp":1327106203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (581, '2016-08-10 15:35:55', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":169,"f_cnt_down":147,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:09.571473Z","gw_timestamp":1353828211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (585, '2016-08-10 15:36:21', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":173,"f_cnt_down":151,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:36.282222Z","gw_timestamp":1380550115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (589, '2016-08-10 15:36:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":177,"f_cnt_down":155,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:03.000836Z","gw_timestamp":1407269835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8MANAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (593, '2016-08-10 15:37:21', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":182,"f_cnt_down":159,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:36.418228Z","gw_timestamp":1440673843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/73/sP/0/8MASwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (597, '2016-08-10 15:37:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":186,"f_cnt_down":163,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:03.136089Z","gw_timestamp":1467392515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7b/sP/0/8MASAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (601, '2016-08-10 15:38:15', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":190,"f_cnt_down":167,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:29.843605Z","gw_timestamp":1494112123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/q//0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (552, '2016-08-10 15:32:54', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":142,"f_cnt_down":120,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:09.208338Z","gw_timestamp":1173467851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8b/sP/0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (556, '2016-08-10 15:33:22', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":146,"f_cnt_down":124,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:35.952238Z","gw_timestamp":1200185899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":7,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7r/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (560, '2016-08-10 15:33:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":150,"f_cnt_down":128,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:02.650717Z","gw_timestamp":1226905931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8MANAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (564, '2016-08-10 15:34:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":154,"f_cnt_down":132,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:29.365491Z","gw_timestamp":1253625843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8MAQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (570, '2016-08-10 15:34:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":158,"f_cnt_down":136,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:56.095615Z","gw_timestamp":1280346195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (574, '2016-08-10 15:35:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":162,"f_cnt_down":140,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:22.800717Z","gw_timestamp":1307066107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (578, '2016-08-10 15:35:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":166,"f_cnt_down":144,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:49.527724Z","gw_timestamp":1333787699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (582, '2016-08-10 15:36:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":170,"f_cnt_down":148,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:16.249092Z","gw_timestamp":1360507731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (586, '2016-08-10 15:36:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":174,"f_cnt_down":152,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:42.97997Z","gw_timestamp":1387231299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8D/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (590, '2016-08-10 15:37:02', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":178,"f_cnt_down":156,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:09.693421Z","gw_timestamp":1413949339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8L/sP/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (594, '2016-08-10 15:37:28', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":183,"f_cnt_down":160,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:43.086111Z","gw_timestamp":1447353363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7z/sP/0/8MASwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (598, '2016-08-10 15:37:55', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":187,"f_cnt_down":164,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:09.806594Z","gw_timestamp":1474072027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/63/rf/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (602, '2016-08-10 15:38:21', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":191,"f_cnt_down":168,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:36.526238Z","gw_timestamp":1500791627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/q//0/8MAMgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (606, '2016-08-10 15:38:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":195,"f_cnt_down":172,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:03.269109Z","gw_timestamp":1527511651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/q//0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (553, '2016-08-10 15:33:00', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":143,"f_cnt_down":121,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:15.901232Z","gw_timestamp":1180147363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7v/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (557, '2016-08-10 15:33:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":147,"f_cnt_down":125,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:44:42.599708Z","gw_timestamp":1206865411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":11,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8T/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (561, '2016-08-10 15:33:54', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":151,"f_cnt_down":129,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:09.333595Z","gw_timestamp":1233587315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":10.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8MANAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (565, '2016-08-10 15:34:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":155,"f_cnt_down":133,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:45:36.07037Z","gw_timestamp":1260307651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-52,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8P/sP/0/8MAQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (571, '2016-08-10 15:34:48', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":159,"f_cnt_down":137,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:02.768723Z","gw_timestamp":1287025707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8H/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (575, '2016-08-10 15:35:15', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":163,"f_cnt_down":141,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:29.479453Z","gw_timestamp":1313747179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-49,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (579, '2016-08-10 15:35:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":167,"f_cnt_down":145,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:56.207091Z","gw_timestamp":1340467211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":7.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/73/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (583, '2016-08-10 15:36:07', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":171,"f_cnt_down":149,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:22.935967Z","gw_timestamp":1367188803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (587, '2016-08-10 15:36:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":175,"f_cnt_down":153,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:49.644473Z","gw_timestamp":1393910803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7z/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (591, '2016-08-10 15:37:08', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":179,"f_cnt_down":157,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:23.04785Z","gw_timestamp":1427310243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-47,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/73/sP/0/8MASwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (595, '2016-08-10 15:37:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":184,"f_cnt_down":161,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:49.775731Z","gw_timestamp":1454033187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8L/sP/0/8MAQwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (599, '2016-08-10 15:38:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":188,"f_cnt_down":165,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:16.494218Z","gw_timestamp":1480751539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6v/q//0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (603, '2016-08-10 15:38:28', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":192,"f_cnt_down":169,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:43.239255Z","gw_timestamp":1507473115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/q//0/8MAMgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (607, '2016-08-10 15:38:55', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":196,"f_cnt_down":173,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:09.938603Z","gw_timestamp":1534193451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/q//0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (572, '2016-08-10 15:34:54', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":160,"f_cnt_down":138,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:09.442475Z","gw_timestamp":1293705211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7n/sP/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (576, '2016-08-10 15:35:21', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":164,"f_cnt_down":142,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:46:36.171096Z","gw_timestamp":1320426699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/8H/sP/0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (580, '2016-08-10 15:35:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":168,"f_cnt_down":146,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:02.887252Z","gw_timestamp":1347146715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/sP/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (584, '2016-08-10 15:36:15', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":172,"f_cnt_down":150,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:29.603473Z","gw_timestamp":1373870603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (588, '2016-08-10 15:36:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":176,"f_cnt_down":154,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:47:56.32923Z","gw_timestamp":1400590315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-51,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7//sP/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (592, '2016-08-10 15:37:14', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":181,"f_cnt_down":158,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:29.733856Z","gw_timestamp":1433992051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-53,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/73/sP/0/8MASwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (596, '2016-08-10 15:37:41', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":185,"f_cnt_down":162,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:48:56.457223Z","gw_timestamp":1460713011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7T/sP/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (600, '2016-08-10 15:38:08', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":189,"f_cnt_down":166,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:23.180231Z","gw_timestamp":1487432603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6v/q//0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (604, '2016-08-10 15:38:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":193,"f_cnt_down":170,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:49.883598Z","gw_timestamp":1514152635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7f/q//0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (608, '2016-08-10 15:38:56', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":197,"f_cnt_down":174,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:16.61136Z","gw_timestamp":1540872963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/q//0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (612, '2016-08-10 15:39:21', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":200,"f_cnt_down":177,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:36.651358Z","gw_timestamp":1560915355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6z/q//0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (605, '2016-08-10 15:38:42', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":194,"f_cnt_down":171,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:49:56.575659Z","gw_timestamp":1520832139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7b/q//0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (609, '2016-08-10 15:39:02', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1257,"f_cnt_down":2059,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:38:55.499013Z","gw_timestamp":286747228,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AcAwMDU4ODAxMjI5MDA0MjAKgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (611, '2016-08-10 15:39:15', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":199,"f_cnt_down":176,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:29.978607Z","gw_timestamp":1554235835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/q//0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (615, '2016-08-10 15:39:35', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":202,"f_cnt_down":179,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:50.008614Z","gw_timestamp":1574276035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7H/q//0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (610, '2016-08-10 15:39:08', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":198,"f_cnt_down":175,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:23.299258Z","gw_timestamp":1547554035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/q//0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (614, '2016-08-10 15:39:28', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:45.099043Z","gw_timestamp":1569366011,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDcwMTAxMjExMDA0NzYDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (616, '2016-08-10 15:39:42', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":203,"f_cnt_down":180,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:56.697482Z","gw_timestamp":1580955547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/63/q//0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (613, '2016-08-10 15:39:23', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":201,"f_cnt_down":178,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:50:43.343774Z","gw_timestamp":1567596523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6z/q//0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (617, '2016-08-10 15:39:45', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":204,"f_cnt_down":181,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:03.394247Z","gw_timestamp":1587635059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6n/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (618, '2016-08-10 15:39:48', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:06.64286Z","gw_timestamp":1590911083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDY3NzAxMjEyMDA0NzYDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (619, '2016-08-10 15:39:52', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":205,"f_cnt_down":182,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:10.052614Z","gw_timestamp":1594316859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6n/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (620, '2016-08-10 15:39:54', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":3,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:13.849754Z","gw_timestamp":1598092811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDY1MDAxMjEyMDA0NzUDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (621, '2016-08-10 15:39:59', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":206,"f_cnt_down":183,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:16.736303Z","gw_timestamp":1600996371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/67/qf/0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (622, '2016-08-10 15:40:01', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":4,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:21.009096Z","gw_timestamp":1605274643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDY3MjAxMjEyMDA0NzUDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (623, '2016-08-10 15:40:06', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":207,"f_cnt_down":184,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:23.420257Z","gw_timestamp":1607675875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6v/qf/0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (624, '2016-08-10 15:40:08', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":5,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:28.221271Z","gw_timestamp":1612456475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlAwMDYyNjAxMjEyMDA0NzUDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (625, '2016-08-10 15:40:12', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":208,"f_cnt_down":185,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:30.086598Z","gw_timestamp":1614355395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6r/qf/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (626, '2016-08-10 15:40:14', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":6,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:35.376365Z","gw_timestamp":1619638403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDU5NTAxMjEyMDA0NzYDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (627, '2016-08-10 15:40:22', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":209,"f_cnt_down":186,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:36.777726Z","gw_timestamp":1621034899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6r/qf/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (628, '2016-08-10 15:40:22', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":7,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:42.555959Z","gw_timestamp":1626820139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDY0MTAxMjEyMDA0NzYDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (629, '2016-08-10 15:40:27', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":210,"f_cnt_down":187,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:43.459252Z","gw_timestamp":1627714411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/qf/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (630, '2016-08-10 15:40:27', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":8,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:49.743735Z","gw_timestamp":1634002075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjkwMDY0OTAxMjEyMDA0NzYDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (632, '2016-08-10 15:40:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":212,"f_cnt_down":189,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:56.813486Z","gw_timestamp":1641075307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/qf/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (636, '2016-08-10 15:41:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":214,"f_cnt_down":191,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:10.168735Z","gw_timestamp":1654436203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/qf/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (640, '2016-08-10 15:41:17', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":218,"f_cnt_down":194,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:36.898865Z","gw_timestamp":1681161523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7T/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (644, '2016-08-10 15:41:32', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":220,"f_cnt_down":196,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:50.253723Z","gw_timestamp":1694523163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7n/qf/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (648, '2016-08-10 15:41:47', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":222,"f_cnt_down":198,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:03.624417Z","gw_timestamp":1707882179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/qf/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (652, '2016-08-10 15:42:01', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":224,"f_cnt_down":200,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:16.974358Z","gw_timestamp":1721243491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7b/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (656, '2016-08-10 15:42:15', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:31.156734Z","gw_timestamp":1735425787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgowMDc5NDAxMjEyMDA0OTAEoA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (658, '2016-08-10 15:42:17', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":22,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:37.471362Z","gw_timestamp":1741729883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AagwMDYwODAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (660, '2016-08-10 15:42:24', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":228,"f_cnt_down":203,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:43.735537Z","gw_timestamp":1747963403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/6//qf/0/8MANwAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (674, '2016-08-10 15:43:06', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":697,"f_cnt_down":1275,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:31.056234Z","gw_timestamp":3467380916,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEYwMDU3NTAxMjIxMDA0NTIIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (676, '2016-08-10 15:43:13', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":8,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:28.616858Z","gw_timestamp":1792880571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AfYwMDc2NjAxMjEyMDA0OTAHAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (678, '2016-08-10 15:43:20', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":9,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:35.795747Z","gw_timestamp":1800062499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ad8wMDczODAxMjEyMDA0ODkbYQ==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (708, '2016-08-10 15:45:08', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":24,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:23.517124Z","gw_timestamp":1907787131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ANcwMDU4MzAxMjEyMDA0ODgHgA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (631, '2016-08-10 15:40:34', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":211,"f_cnt_down":188,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:50.145964Z","gw_timestamp":1634395787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7X/qf/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (639, '2016-08-10 15:41:16', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":11,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:32.83509Z","gw_timestamp":1677093171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":-6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbIwMDYwNjAxMjEyMDA0NzcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (641, '2016-08-10 15:41:21', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":15,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:40.007146Z","gw_timestamp":1684275003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aa8wMDYzMDAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (643, '2016-08-10 15:41:28', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":16,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:47.198861Z","gw_timestamp":1691456939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbAwMDYxMTAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (645, '2016-08-10 15:41:34', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":17,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:54.373485Z","gw_timestamp":1698638675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbIwMDY2ODAxMjEyMDA0NzcDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (647, '2016-08-10 15:41:41', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":18,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:01.553111Z","gw_timestamp":1705820611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbIwMDU5OTAxMjEyMDA0NzcDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (649, '2016-08-10 15:41:48', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":19,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:08.759952Z","gw_timestamp":1713002443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbMwMDYxMTAxMjEyMDA0NzcDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (651, '2016-08-10 15:41:55', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":20,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:15.914468Z","gw_timestamp":1720184171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbIwMDYyMjAxMjEyMDA0NzcDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (653, '2016-08-10 15:42:02', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":21,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:23.1083Z","gw_timestamp":1727366107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbowMDYzNzAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (655, '2016-08-10 15:42:10', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:23.999256Z","gw_timestamp":1728244587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhAwMDgwNTAxMjEyMDA0OTEIIA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (659, '2016-08-10 15:42:22', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":1,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:38.343299Z","gw_timestamp":1742607715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhAwMDczODAxMjEyMDA0ODkKgA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (661, '2016-08-10 15:42:24', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":24,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:44.641982Z","gw_timestamp":1748911715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AaowMDU5OTAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (663, '2016-08-10 15:42:31', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":25,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:51.825594Z","gw_timestamp":1756093547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AaswMDYxNTAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (665, '2016-08-10 15:42:38', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":26,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:59.032517Z","gw_timestamp":1763275483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AakwMDY2NjAxMjEyMDA0NzcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (633, '2016-08-10 15:40:42', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":9,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:51:56.917434Z","gw_timestamp":1641183907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Af8wMDY3NzAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (635, '2016-08-10 15:40:47', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":10,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:04.10398Z","gw_timestamp":1648365739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbMwMDY5NDAxMjEyMDA0NzcDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (637, '2016-08-10 15:41:10', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":215,"f_cnt_down":192,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:23.541041Z","gw_timestamp":1667799907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/qf/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (657, '2016-08-10 15:42:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":226,"f_cnt_down":202,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:37.02543Z","gw_timestamp":1741283891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7b/qf/0/8MAPAAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (669, '2016-08-10 15:42:53', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":28,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:13.375749Z","gw_timestamp":1777639155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AZIwMDY1NDAxMjEyMDA0NzcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (671, '2016-08-10 15:42:59', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":29,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:20.557242Z","gw_timestamp":1784820987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDYzMDAxMjEyMDA0NzgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (673, '2016-08-10 15:43:06', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":696,"f_cnt_down":1274,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:43:05.322241Z","gw_timestamp":536570580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEYwMDU3NTAxMjIxMDA0NTIIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (675, '2016-08-10 15:43:06', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":30,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:27.743868Z","gw_timestamp":1792002715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbAwMDYzMDAxMjEyMDA0NzgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (677, '2016-08-10 15:43:14', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":31,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:34.91849Z","gw_timestamp":1799183819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aa0wMDYxMTAxMjEyMDA0NzgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (679, '2016-08-10 15:43:21', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":32,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:42.104627Z","gw_timestamp":1806365651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AaUwMDU5NTAxMjEyMDA0NzgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (681, '2016-08-10 15:43:28', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":33,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:49.308993Z","gw_timestamp":1813547275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDYwNDAxMjEyMDA0NzgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (683, '2016-08-10 15:43:35', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":34,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:56.462492Z","gw_timestamp":1820729323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYzMjAxMjEyMDA0NzgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (685, '2016-08-10 15:43:43', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":35,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:03.650557Z","gw_timestamp":1827911155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4ODAxMjEyMDA0NzgDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (687, '2016-08-10 15:43:50', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":36,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:10.820746Z","gw_timestamp":1835092995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjEyMDA0NzgDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (634, '2016-08-10 15:40:42', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":213,"f_cnt_down":190,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:03.510349Z","gw_timestamp":1647754811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7L/qf/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (638, '2016-08-10 15:41:16', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":217,"f_cnt_down":193,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:30.216728Z","gw_timestamp":1674479731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7T/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (642, '2016-08-10 15:41:24', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":219,"f_cnt_down":195,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:43.601119Z","gw_timestamp":1687843339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7T/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (646, '2016-08-10 15:41:40', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":221,"f_cnt_down":197,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:52:56.940336Z","gw_timestamp":1701202667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7T/qf/0/8MAOQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (650, '2016-08-10 15:41:49', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":223,"f_cnt_down":199,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:10.292725Z","gw_timestamp":1714561683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7b/qf/0/8MAPgAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (654, '2016-08-10 15:42:03', '{"dev_eui":"0080000000009d9c","DevAddr":"25024c96","f_port":1,"f_cnt_up":225,"f_cnt_down":201,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:23.672174Z","gw_timestamp":1727923003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":29,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"/7n/qf/0/8MAQQAtAE0APw==","topic":"iot-2/type/mDot/id/HIE-mDot-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (662, '2016-08-10 15:42:31', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":2,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:45.528024Z","gw_timestamp":1749789531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgowMDc3MTAxMjEyMDA0ODkEQA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (664, '2016-08-10 15:42:38', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":3,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:52.703739Z","gw_timestamp":1756971563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhQwMDc2OTAxMjEyMDA0ODkEcA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (666, '2016-08-10 15:42:43', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":4,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:53:59.890247Z","gw_timestamp":1764153275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiEwMDc5NTAxMjEyMDA0ODkNoA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (668, '2016-08-10 15:42:52', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":5,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:07.068871Z","gw_timestamp":1771335099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhMwMDc4NzAxMjEyMDA0ODkWwQ==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (670, '2016-08-10 15:42:58', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":6,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:14.281848Z","gw_timestamp":1778517035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeMwMDc1NTAxMjEyMDA0ODkFgA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (672, '2016-08-10 15:43:05', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":7,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:21.428487Z","gw_timestamp":1785698851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AfgwMDc1MDAxMjEyMDA0ODkDsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (680, '2016-08-10 15:43:27', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":10,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:42.973113Z","gw_timestamp":1807244315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDc3MTAxMjEyMDA0ODkoUg==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (682, '2016-08-10 15:43:35', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":11,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:50.168126Z","gw_timestamp":1814426243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhkwMDc0MzAxMjEyMDA0OTE3Mw==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (667, '2016-08-10 15:42:44', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":27,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:06.19099Z","gw_timestamp":1770457315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AakwMDY2ODAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (691, '2016-08-10 15:44:04', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":38,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:25.184996Z","gw_timestamp":1849456555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NzAxMjEyMDA0NzcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (693, '2016-08-10 15:44:11', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":39,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:32.374614Z","gw_timestamp":1856638595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYxNTAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (695, '2016-08-10 15:44:18', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":40,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:39.567465Z","gw_timestamp":1863820435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwMjAxMjEyMDA0NzcDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (697, '2016-08-10 15:44:25', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":41,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:46.734992Z","gw_timestamp":1871002163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MTAxMjEyMDA0NzcDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (699, '2016-08-10 15:44:33', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":42,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:53.924613Z","gw_timestamp":1878184099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3ODAxMjEyMDA0NzYDMA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (701, '2016-08-10 15:44:40', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":43,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:01.105954Z","gw_timestamp":1885365931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2OTAxMjEyMDA0NzYDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (703, '2016-08-10 15:44:47', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":44,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:08.285851Z","gw_timestamp":1892547867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NzAxMjEyMDA0NzYDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (705, '2016-08-10 15:44:54', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":45,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:15.460488Z","gw_timestamp":1899729603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AyYwMDU1ODAxMjEyMDA0NzYDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (707, '2016-08-10 15:45:01', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":46,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:22.654123Z","gw_timestamp":1906911547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AxgwMDU4MTAxMjEyMDA0NzYDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (709, '2016-08-10 15:45:09', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":47,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:29.849998Z","gw_timestamp":1914093379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AyYwMDU3NDAxMjEyMDA0NzYDYA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (684, '2016-08-10 15:43:42', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":12,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:54:57.337376Z","gw_timestamp":1821607755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjwwMDcwNTAxMjEyMDA0OTEiwg==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (686, '2016-08-10 15:43:49', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":13,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:04.555612Z","gw_timestamp":1828788851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDcwMzAxMjEyMDA0OTEIYA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (688, '2016-08-10 15:43:56', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":14,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:11.711743Z","gw_timestamp":1835970467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDY2MzAxMjEyMDA0OTEEwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (690, '2016-08-10 15:44:03', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":15,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:18.899619Z","gw_timestamp":1843151659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlEwMDY5MjAxMjEyMDA0OTAEEA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (692, '2016-08-10 15:44:11', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":16,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:26.062985Z","gw_timestamp":1850333067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnMwMDY4MjAxMjEyMDA0ODkFsA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (694, '2016-08-10 15:44:17', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":17,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:33.242606Z","gw_timestamp":1857514267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AqQwMDY5MjAxMjEyMDA0ODkKYA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (696, '2016-08-10 15:44:24', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":18,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:40.425306Z","gw_timestamp":1864696091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkMwMDYzMTAxMjEyMDA0ODkJUA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (698, '2016-08-10 15:44:32', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":19,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:47.616802Z","gw_timestamp":1871877907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkUwMDY2MDAxMjEyMDA0ODgGAA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (700, '2016-08-10 15:44:40', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":20,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:54.804823Z","gw_timestamp":1879059843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDY0NDAxMjEyMDA0ODgIwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (702, '2016-08-10 15:44:47', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":21,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:01.97224Z","gw_timestamp":1886241667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AokwMDYyMzAxMjEyMDA0ODgEkA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (704, '2016-08-10 15:44:54', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":22,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:09.152818Z","gw_timestamp":1893423483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ap4wMDYxMTAxMjEyMDA0ODcGwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (706, '2016-08-10 15:45:01', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":23,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:16.332501Z","gw_timestamp":1900605307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AJwwMDYxMzAxMjEyMDA0ODcRwQ==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (712, '2016-08-10 15:45:23', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":26,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:37.883368Z","gw_timestamp":1922149947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ae0wMDYyNzAxMjEyMDA0ODgSUQ==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (714, '2016-08-10 15:45:37', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":27,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:45.088263Z","gw_timestamp":1929331763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AckwMDYyNzAxMjEzMDA0ODcDwA==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (689, '2016-08-10 15:43:57', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":37,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:55:18.002369Z","gw_timestamp":1842274723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYwNDAxMjEyMDA0NzgDUA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (711, '2016-08-10 15:45:16', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":48,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:37.009487Z","gw_timestamp":1921275107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AwIwMDUzNTAxMjEyMDA0NzcDQA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (713, '2016-08-10 15:45:23', '{"dev_eui":"008000000000b19c","DevAddr":"25f84316","f_port":1,"f_cnt_up":49,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:44.194124Z","gw_timestamp":1928457147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AyQwMDU1ODAxMjEyMDA0NzcDcA==","topic":"iot-2/type/mDot/id/HIE-mobile-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (715, '2016-08-10 15:45:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:58.685762Z","gw_timestamp":1942948675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDYzMjAxMjA4MDA0NzexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (717, '2016-08-10 15:45:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:13.043618Z","gw_timestamp":1957311795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AKQwMDYxMzAxMjA5MDA0Nzev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (719, '2016-08-10 15:46:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:27.410002Z","gw_timestamp":1971675435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU5OTAxMjA5MDA0Nziyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (721, '2016-08-10 15:46:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:41.768249Z","gw_timestamp":1986038139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDY0NTAxMjA5MDA0NziuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (723, '2016-08-10 15:46:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:56.173762Z","gw_timestamp":2000401779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU3NzAxMjA5MDA0Nzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (725, '2016-08-10 15:46:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:10.513723Z","gw_timestamp":2014764691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDYwODAxMjA5MDA0Nzi0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (727, '2016-08-10 15:47:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":11,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:24.857121Z","gw_timestamp":2029128027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDYzMzAxMjA5MDA0Nziyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (729, '2016-08-10 15:47:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":14,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:46.41Z","gw_timestamp":2050672651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATEwMDYzNjAxMjA5MDA0NzivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (731, '2016-08-10 15:47:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":16,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:00.775325Z","gw_timestamp":2065036395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU5NTAxMjA5MDA0Nzi3Sw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (710, '2016-08-10 15:45:16', '{"dev_eui":"008000000000b19a","DevAddr":"25bc1ca8","f_port":1,"f_cnt_up":25,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:56:30.701737Z","gw_timestamp":1914968955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AfowMDYzMDAxMjEyMDA0ODgO0A==","topic":"iot-2/type/mDot/id/HIE-mobile-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (732, '2016-08-10 15:47:47', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":781,"f_cnt_down":1470,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:47:42.166544Z","gw_timestamp":813415020,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AlkwMDYzNjAxMjI1MDA0NDUIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (716, '2016-08-10 15:45:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:05.861999Z","gw_timestamp":1950129875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU5NzAxMjA5MDA0Nzex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (718, '2016-08-10 15:46:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:20.232942Z","gw_timestamp":1964493723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDYxODAxMjA5MDA0Nzitug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (720, '2016-08-10 15:46:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:34.596871Z","gw_timestamp":1978856523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDYwNDAxMjA5MDA0NziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (722, '2016-08-10 15:46:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:57:48.958872Z","gw_timestamp":1993219851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDYwMjAxMjA5MDA0NziyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (724, '2016-08-10 15:46:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:03.326266Z","gw_timestamp":2007583603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDYwMjAxMjA5MDA0NzixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (726, '2016-08-10 15:47:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":10,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:17.678503Z","gw_timestamp":2021946203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"APgwMDU5MjAxMjA5MDA0Nzivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (728, '2016-08-10 15:47:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":12,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:39.218362Z","gw_timestamp":2043490723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ASkwMDYwNjAxMjA5MDA0Nziwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (730, '2016-08-10 15:47:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":15,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:58:53.58475Z","gw_timestamp":2057854579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDYyNDAxMjA5MDA0Nziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (733, '2016-08-10 15:47:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":17,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:07.973012Z","gw_timestamp":2072218219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDYxODAxMjA5MDA0NzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (734, '2016-08-10 15:48:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":18,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:15.130623Z","gw_timestamp":2079399939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU3MDAxMjA5MDA0Nziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (735, '2016-08-10 15:48:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":19,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:22.320466Z","gw_timestamp":2086581859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU5NzAxMjA5MDA0Nziyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (736, '2016-08-10 15:48:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":20,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:29.497006Z","gw_timestamp":2093762851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXEwMDYwMjAxMjA5MDA0NziyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (737, '2016-08-10 15:48:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":21,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:36.677501Z","gw_timestamp":2100944571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU5NTAxMjA5MDA0Nziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (738, '2016-08-10 15:48:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":22,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:43.876333Z","gw_timestamp":2108126291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU5NzAxMjA5MDA0Nziwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (739, '2016-08-10 15:48:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":23,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:51.037222Z","gw_timestamp":2115307275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU2MTAxMjA5MDA0Nziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (743, '2016-08-10 15:49:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":27,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:19.764372Z","gw_timestamp":2144034667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYwMjAxMjEwMDA0NziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (751, '2016-08-10 15:49:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":34,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:10.043877Z","gw_timestamp":2194307539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-90,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU5MjAxMjEwMDA0Nziwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (753, '2016-08-10 15:50:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":36,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:24.422386Z","gw_timestamp":2208671179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYyMDAxMjEwMDA0NziyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (755, '2016-08-10 15:50:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":38,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:38.762378Z","gw_timestamp":2223033787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU1OTAxMjEwMDA0Nziyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (781, '2016-08-10 15:53:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":64,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:45.483013Z","gw_timestamp":2409756915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU3OTAxMjEwMDA0NziwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (783, '2016-08-10 15:53:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":66,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:59.856262Z","gw_timestamp":2424120563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYwMjAxMjEwMDA0NzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (785, '2016-08-10 15:54:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":68,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:14.222633Z","gw_timestamp":2438484211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU3NDAxMjEwMDA0Nzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (787, '2016-08-10 15:54:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":70,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:28.610164Z","gw_timestamp":2452847547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU2ODAxMjEwMDA0Nzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (789, '2016-08-10 15:54:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":71,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:35.760518Z","gw_timestamp":2460028747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2ODAxMjEwMDA0NziyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (791, '2016-08-10 15:54:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":73,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:50.117767Z","gw_timestamp":2474392387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYwMjAxMjEwMDA0Nziwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (799, '2016-08-10 15:55:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":81,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:47.580894Z","gw_timestamp":2531846971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU4ODAxMjEwMDA0Nzixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (801, '2016-08-10 15:55:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":83,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:01.932141Z","gw_timestamp":2546209891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDUzNzAxMjEwMDA0Nziwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (805, '2016-08-10 15:56:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":88,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:37.847386Z","gw_timestamp":2582119115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU4NjAxMjEwMDA0NziwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (740, '2016-08-10 15:48:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":24,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T15:59:58.216501Z","gw_timestamp":2122489099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDYyMDAxMjEwMDA0Nziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (742, '2016-08-10 15:48:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":26,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:12.583762Z","gw_timestamp":2136852747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDYwNDAxMjEwMDA0Nzix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (744, '2016-08-10 15:49:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":28,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:26.956992Z","gw_timestamp":2151216387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDYyNDAxMjEwMDA0Nziyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (746, '2016-08-10 15:49:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":30,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:41.317243Z","gw_timestamp":2165580139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDYxMzAxMjEwMDA0Nzixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (750, '2016-08-10 15:49:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":33,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:02.863258Z","gw_timestamp":2187125707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDYzMTAxMjEwMDA0Nziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (756, '2016-08-10 15:50:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":39,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:45.946005Z","gw_timestamp":2230214771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU3NzAxMjEwMDA0Nziv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (758, '2016-08-10 15:50:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":41,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:00.308387Z","gw_timestamp":2244578419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU5MjAxMjEwMDA0NzizOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (760, '2016-08-10 15:51:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":43,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:14.678622Z","gw_timestamp":2258942275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU5NTAxMjEwMDA0NzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (762, '2016-08-10 15:51:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":45,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:29.035868Z","gw_timestamp":2273305923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU5MDAxMjEwMDA0Nziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (764, '2016-08-10 15:51:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":47,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:43.398131Z","gw_timestamp":2287669563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYwODAxMjEwMDA0Nzixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (766, '2016-08-10 15:51:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":49,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:57.767385Z","gw_timestamp":2302032067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYwODAxMjEwMDA0NzixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (768, '2016-08-10 15:51:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":51,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:12.134121Z","gw_timestamp":2316394875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU4MzAxMjEwMDA0NzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (770, '2016-08-10 15:52:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":53,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:26.494613Z","gw_timestamp":2330757587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU4MzAxMjEwMDA0Nziwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (772, '2016-08-10 15:52:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":55,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:40.847381Z","gw_timestamp":2345121131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDYwNDAxMjEwMDA0Nziwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (741, '2016-08-10 15:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":25,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:05.398507Z","gw_timestamp":2129670819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU4MTAxMjA5MDA0NziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (745, '2016-08-10 15:49:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":29,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:34.149894Z","gw_timestamp":2158398211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDYwNDAxMjEwMDA0Nziuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (747, '2016-08-10 15:49:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":31,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:48.506632Z","gw_timestamp":2172762067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDYwODAxMjEwMDA0Nziwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (748, '2016-08-10 15:49:35', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":776,"f_cnt_down":1425,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:49:27.362622Z","gw_timestamp":918611148,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:41:53.096633Z","gw_timestamp":3849421316,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A5QwMDUzNjAxMjQwMDA0MDkIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (749, '2016-08-10 15:49:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":32,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:00:55.680504Z","gw_timestamp":2179943987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYwMjAxMjEwMDA0Nziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (752, '2016-08-10 15:50:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":35,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:17.222504Z","gw_timestamp":2201489355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU4MzAxMjEwMDA0Nziy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (754, '2016-08-10 15:50:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":37,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:31.591264Z","gw_timestamp":2215852691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU5NTAxMjEwMDA0Nzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (757, '2016-08-10 15:50:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":40,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:01:53.132115Z","gw_timestamp":2237396491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU5NzAxMjEwMDA0Nzivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (759, '2016-08-10 15:50:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":42,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:07.489011Z","gw_timestamp":2251760347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDYwODAxMjEwMDA0Nziyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (761, '2016-08-10 15:51:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":44,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:21.851257Z","gw_timestamp":2266123987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU3NzAxMjEwMDA0NzixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (763, '2016-08-10 15:51:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":46,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:36.232804Z","gw_timestamp":2280487643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU4NjAxMjEwMDA0Nziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (765, '2016-08-10 15:51:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":48,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:02:50.57875Z","gw_timestamp":2294850867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWowMDU4MzAxMjEwMDA0NzixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (767, '2016-08-10 15:51:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":50,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:04.945127Z","gw_timestamp":2309213051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU3MjAxMjEwMDA0NzizKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (769, '2016-08-10 15:51:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":52,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:19.304382Z","gw_timestamp":2323576603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU4NjAxMjEwMDA0Nzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (771, '2016-08-10 15:52:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":54,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:33.669628Z","gw_timestamp":2337939307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDYwNDAxMjEwMDA0Nziy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (773, '2016-08-10 15:52:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":56,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:48.02689Z","gw_timestamp":2352302115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDYwNDAxMjEwMDA0NziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (775, '2016-08-10 15:52:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":58,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:02.39186Z","gw_timestamp":2366665763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU2NTAxMjEwMDA0Nziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (777, '2016-08-10 15:53:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":60,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:16.786767Z","gw_timestamp":2381029523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU0ODAxMjEwMDA0Nzixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (779, '2016-08-10 15:53:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":62,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:31.125598Z","gw_timestamp":2395393059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU4ODAxMjEwMDA0Nziyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (793, '2016-08-10 15:54:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":75,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:04.501271Z","gw_timestamp":2488756139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU4MTAxMjEwMDA0NziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (795, '2016-08-10 15:55:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":77,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:18.851201Z","gw_timestamp":2503119787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU5MjAxMjEwMDA0NzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (797, '2016-08-10 15:55:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":79,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:33.209646Z","gw_timestamp":2517483539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU2ODAxMjEwMDA0Nzivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (803, '2016-08-10 15:56:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":86,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:23.488152Z","gw_timestamp":2567755467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU3MDAxMjEwMDA0Nziy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (807, '2016-08-10 15:56:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":90,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:52.21165Z","gw_timestamp":2596482867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDUxMDAxMjEwMDA0Nzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (811, '2016-08-10 15:57:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":95,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:08:28.111901Z","gw_timestamp":2632391043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU3NDAxMjEwMDA0NzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (813, '2016-08-10 15:57:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":97,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:08:49.68327Z","gw_timestamp":2653936627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU0MzAxMjEwMDA0Nzmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (815, '2016-08-10 15:57:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:04.030023Z","gw_timestamp":2668300267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU3MDAxMjEwMDA0Nzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (774, '2016-08-10 15:52:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":57,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:03:55.210514Z","gw_timestamp":2359483939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDU4MzAxMjEwMDA0Nziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (776, '2016-08-10 15:52:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":59,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:09.582883Z","gw_timestamp":2373847691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU3OTAxMjEwMDA0Nziw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (778, '2016-08-10 15:53:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":61,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:23.937389Z","gw_timestamp":2388211339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU2NTAxMjEwMDA0Nziyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (800, '2016-08-10 15:55:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":82,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:54.758523Z","gw_timestamp":2539028067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDYxMzAxMjEwMDA0NzixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (802, '2016-08-10 15:56:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":84,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:16.296528Z","gw_timestamp":2560573651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU2ODAxMjEwMDA0NzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (804, '2016-08-10 15:56:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":87,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:30.660767Z","gw_timestamp":2574937187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU4NjAxMjEwMDA0Nziyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (806, '2016-08-10 15:56:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":89,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:45.035017Z","gw_timestamp":2589300939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU2ODAxMjEwMDA0Nziw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (808, '2016-08-10 15:56:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":91,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:07:59.402495Z","gw_timestamp":2603664691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-86,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDUwNjAxMjEwMDA0NziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (812, '2016-08-10 15:57:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":96,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:08:35.303517Z","gw_timestamp":2639572771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2NTAxMjEwMDA0Nzixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (814, '2016-08-10 15:57:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":99,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:08:56.845453Z","gw_timestamp":2661118339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU5NzAxMjEwMDA0NzmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (816, '2016-08-10 15:57:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:11.208644Z","gw_timestamp":2675482091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU4ODAxMjEwMDA0Nzmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (818, '2016-08-10 15:58:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:25.57102Z","gw_timestamp":2689845107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXEwMDYxNTAxMjEwMDA0Nzmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (820, '2016-08-10 15:58:18', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":697,"f_cnt_down":1276,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:58:16.090079Z","gw_timestamp":1447338868,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:50:41.824114Z","gw_timestamp":83181500,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFYwMDU5NzAxMjIxMDA0NzAJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (780, '2016-08-10 15:53:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":63,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:38.312808Z","gw_timestamp":2402574987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU4NjAxMjEwMDA0NzizSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (782, '2016-08-10 15:53:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":65,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:04:52.674701Z","gw_timestamp":2416938843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU0ODAxMjEwMDA0Nzix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (784, '2016-08-10 15:53:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":67,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:07.027003Z","gw_timestamp":2431302387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWowMDU3OTAxMjEwMDA0Nzivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (786, '2016-08-10 15:54:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":69,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:21.390273Z","gw_timestamp":2445666139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU3MjAxMjEwMDA0Nzivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (788, '2016-08-10 15:54:15', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1258,"f_cnt_down":2060,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T15:54:06.312651Z","gw_timestamp":1197561316,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AagwMDYyMDAxMjI5MDA0MjIIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (790, '2016-08-10 15:54:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":72,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:42.940143Z","gw_timestamp":2467210563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDYxMzAxMjEwMDA0Nzixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (792, '2016-08-10 15:54:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":74,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:05:57.302406Z","gw_timestamp":2481574211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDYwODAxMjEwMDA0Nziu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (794, '2016-08-10 15:54:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":76,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:11.66977Z","gw_timestamp":2495937859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDUzMjAxMjEwMDA0Nziyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (796, '2016-08-10 15:55:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":78,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:26.043478Z","gw_timestamp":2510301715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU5NTAxMjEwMDA0NzivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (798, '2016-08-10 15:55:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":80,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:06:40.394267Z","gw_timestamp":2524665259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU3NzAxMjEwMDA0NziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (810, '2016-08-10 15:57:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":93,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:08:20.931276Z","gw_timestamp":2625210059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU3MDAxMjEwMDA0Nziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (828, '2016-08-10 15:59:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:30.237993Z","gw_timestamp":2754481427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU1OTAxMjEwMDA0Nzmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (830, '2016-08-10 15:59:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:51.75165Z","gw_timestamp":2776025851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU1MjAxMjEwMDA0Nzmuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (832, '2016-08-10 15:59:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:06.114035Z","gw_timestamp":2790389603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU4MzAxMjEwMDA0Nzmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (809, '2016-08-10 15:56:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":92,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:08:06.578897Z","gw_timestamp":2610846411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU1MjAxMjEwMDA0NzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (819, '2016-08-10 15:58:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:32.760652Z","gw_timestamp":2697026627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU3NzAxMjEwMDA0Nzmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (821, '2016-08-10 15:58:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:39.953391Z","gw_timestamp":2704208451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU4MzAxMjEwMDA0NzmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (823, '2016-08-10 15:58:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:54.348805Z","gw_timestamp":2718572099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXIwMDU4NjAxMjEwMDA0Nzmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (825, '2016-08-10 15:58:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:08.65977Z","gw_timestamp":2732935755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXEwMDU2NTAxMjEwMDA0NzmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (827, '2016-08-10 15:59:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:23.031031Z","gw_timestamp":2747299595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU0MzAxMjEwMDA0Nzmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (829, '2016-08-10 15:59:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:37.384398Z","gw_timestamp":2761663243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXIwMDU4MTAxMjEwMDA0NzmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (831, '2016-08-10 15:59:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:58.935353Z","gw_timestamp":2783207779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU1OTAxMjEwMDA0NzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (833, '2016-08-10 15:59:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:13.30153Z","gw_timestamp":2797571427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU0ODAxMjEwMDA0Nzmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (835, '2016-08-10 16:00:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:27.659782Z","gw_timestamp":2811934035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU4NjAxMjEwMDA0NzmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (837, '2016-08-10 16:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:42.018158Z","gw_timestamp":2826297891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXEwMDU1MDAxMjEwMDA0Nzmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (839, '2016-08-10 16:00:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:56.394394Z","gw_timestamp":2840661531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU5MjAxMjEwMDA0ODCzSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (841, '2016-08-10 16:00:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:10.747526Z","gw_timestamp":2855024243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXEwMDUzOTAxMjEwMDA0ODCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (843, '2016-08-10 16:01:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:25.112909Z","gw_timestamp":2869387787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU1NDAxMjEwMDA0ODCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (817, '2016-08-10 15:58:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:18.39428Z","gw_timestamp":2682663915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU0MzAxMjEwMDA0Nzmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (845, '2016-08-10 16:01:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:39.473147Z","gw_timestamp":2883750595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDUxMjAxMjEwMDA0ODCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (847, '2016-08-10 16:01:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:01.024096Z","gw_timestamp":2905296171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU1MjAxMjEwMDA0ODCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (822, '2016-08-10 15:58:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:09:47.120145Z","gw_timestamp":2711390379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU5NzAxMjEwMDA0Nzmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (824, '2016-08-10 15:58:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:01.529407Z","gw_timestamp":2725754027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU3NDAxMjEwMDA0Nzmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (826, '2016-08-10 15:59:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:10:15.841389Z","gw_timestamp":2740117675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU4NjAxMjEwMDA0NzmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (836, '2016-08-10 16:00:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:34.844395Z","gw_timestamp":2819115963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU5MDAxMjEwMDA0Nzmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (848, '2016-08-10 16:01:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:08.199788Z","gw_timestamp":2912478003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU1NDAxMjEwMDA0ODCt+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (850, '2016-08-10 16:02:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:22.571224Z","gw_timestamp":2926841539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDUzNzAxMjEwMDA0ODCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (852, '2016-08-10 16:02:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:36.943546Z","gw_timestamp":2941205395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU5MDAxMjEwMDA0ODCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (854, '2016-08-10 16:02:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:51.296542Z","gw_timestamp":2955569043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2MzAxMjEwMDA0ODCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (834, '2016-08-10 16:00:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:20.499443Z","gw_timestamp":2804752411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU5NTAxMjEwMDA0Nzm0Ww==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (838, '2016-08-10 16:00:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:11:49.208047Z","gw_timestamp":2833479603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU4MTAxMjEwMDA0ODCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (840, '2016-08-10 16:00:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:03.564029Z","gw_timestamp":2847842627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU5NTAxMjEwMDA0ODCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (842, '2016-08-10 16:01:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:17.926289Z","gw_timestamp":2862205963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU1NDAxMjEwMDA0ODCyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (844, '2016-08-10 16:01:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:32.293783Z","gw_timestamp":2876569611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU0NjAxMjEwMDA0ODCy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (846, '2016-08-10 16:01:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:12:53.837415Z","gw_timestamp":2898114251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU3OTAxMjEwMDA0ODCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (849, '2016-08-10 16:02:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:15.388403Z","gw_timestamp":2919659819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU0ODAxMjEwMDA0ODCyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (851, '2016-08-10 16:02:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:29.746667Z","gw_timestamp":2934023475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU1NzAxMjEwMDA0ODCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (853, '2016-08-10 16:02:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:44.131196Z","gw_timestamp":2948387115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU5OTAxMjEwMDA0ODCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (855, '2016-08-10 16:02:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:13:58.478016Z","gw_timestamp":2962750763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2MTAxMjEwMDA0ODCvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (856, '2016-08-10 16:02:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:05.655768Z","gw_timestamp":2969932691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU0ODAxMjEwMDA0ODCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (857, '2016-08-10 16:02:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:12.846288Z","gw_timestamp":2977114619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWowMDU4NjAxMjEwMDA0ODCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (858, '2016-08-10 16:02:58', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":782,"f_cnt_down":1471,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:02:52.931585Z","gw_timestamp":1724180508,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkQwMDY2MzAxMjI2MDA0NTQJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (859, '2016-08-10 16:03:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:20.019166Z","gw_timestamp":2984296443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU1OTAxMjEwMDA0ODCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (860, '2016-08-10 16:03:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:27.216601Z","gw_timestamp":2991478163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU1MjAxMjEwMDA0ODCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (861, '2016-08-10 16:03:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:34.386396Z","gw_timestamp":2998660091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDUyNjAxMjEwMDA0ODCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (862, '2016-08-10 16:03:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:41.569083Z","gw_timestamp":3005841499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDUzMDAxMjEwMDA0ODCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (863, '2016-08-10 16:03:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:14:55.934287Z","gw_timestamp":3020204627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2NTAxMjEwMDA0ODCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (864, '2016-08-10 16:03:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:03.136461Z","gw_timestamp":3027386443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDUzMjAxMjEwMDA0ODCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (865, '2016-08-10 16:03:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:10.286525Z","gw_timestamp":3034568267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDUyMzAxMjEwMDA0ODCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (866, '2016-08-10 16:04:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:17.469162Z","gw_timestamp":3041750195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU2MTAxMjEwMDA0ODCyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (870, '2016-08-10 16:04:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:46.202791Z","gw_timestamp":3070476555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDQ5ODAxMjEwMDA0ODCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (872, '2016-08-10 16:04:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":777,"f_cnt_down":1426,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:04:38.198525Z","gw_timestamp":1829447500,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:03.932577Z","gw_timestamp":465289964,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-108,"snr":-6.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbIwMDUzNzAxMjQyMDA0MTMJ8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (878, '2016-08-10 16:05:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:36.474508Z","gw_timestamp":3120748483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU2ODAxMjEwMDA0ODCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (896, '2016-08-10 16:07:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:45.736788Z","gw_timestamp":3250018603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWowMDU2NTAxMjEwMDA0NzmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (898, '2016-08-10 16:07:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:07.285056Z","gw_timestamp":3271564075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDUzMjAxMjEwMDA0Nzmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (900, '2016-08-10 16:08:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:21.652927Z","gw_timestamp":3285926987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU4ODAxMjEwMDA0Nzmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (902, '2016-08-10 16:08:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:36.019164Z","gw_timestamp":3300290531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU1OTAxMjEwMDA0NzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (904, '2016-08-10 16:08:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:50.37042Z","gw_timestamp":3314654283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDU3OTAxMjEwMDA0NzmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (906, '2016-08-10 16:08:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:04.768924Z","gw_timestamp":3329017931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU3MDAxMjEwMDA0Nzmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (908, '2016-08-10 16:09:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:19.131318Z","gw_timestamp":3343381683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDQ5NDAxMjEwMDA0NzmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (910, '2016-08-10 16:09:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:33.467181Z","gw_timestamp":3357744387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU2ODAxMjEwMDA0Nzmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (912, '2016-08-10 16:09:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:40.648802Z","gw_timestamp":3364926115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU1NDAxMjEwMDA0Nzmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (867, '2016-08-10 16:04:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:24.660913Z","gw_timestamp":3048932019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU1NDAxMjEwMDA0ODCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (871, '2016-08-10 16:04:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:53.387418Z","gw_timestamp":3077658275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2MzAxMjEwMDA0ODCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (873, '2016-08-10 16:04:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:00.571238Z","gw_timestamp":3084839267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2NTAxMjEwMDA0ODCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (875, '2016-08-10 16:05:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:14.930287Z","gw_timestamp":3099202907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDUyODAxMjEwMDA0ODCyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (877, '2016-08-10 16:05:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:29.290663Z","gw_timestamp":3113566659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU2MTAxMjEwMDA0ODCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (879, '2016-08-10 16:05:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:43.651128Z","gw_timestamp":3127930411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDUyMzAxMjEwMDA0ODCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (881, '2016-08-10 16:05:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:58.012174Z","gw_timestamp":3142293955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXEwMDQ5ODAxMjEwMDA0ODCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (883, '2016-08-10 16:05:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:12.380594Z","gw_timestamp":3156657707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU0MzAxMjEwMDA0ODCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (885, '2016-08-10 16:06:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:26.746665Z","gw_timestamp":3171020307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU2NTAxMjEwMDA0ODCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (887, '2016-08-10 16:06:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:41.10392Z","gw_timestamp":3185384059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU0MzAxMjEwMDA0ODCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (889, '2016-08-10 16:06:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:55.464162Z","gw_timestamp":3199747715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU1NzAxMjEwMDA0NzmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (891, '2016-08-10 16:06:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:09.831552Z","gw_timestamp":3214110523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2MzAxMjEwMDA0NzmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (893, '2016-08-10 16:07:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:24.211065Z","gw_timestamp":3228474171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU4MzAxMjEwMDA0Nzmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (895, '2016-08-10 16:07:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:38.564684Z","gw_timestamp":3242837299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU1MDAxMjEwMDA0NzmuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (868, '2016-08-10 16:04:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:31.843544Z","gw_timestamp":3056113739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDUyMzAxMjEwMDA0ODCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (869, '2016-08-10 16:04:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:15:39.016159Z","gw_timestamp":3063294731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU4MTAxMjEwMDA0ODCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (874, '2016-08-10 16:04:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:07.74367Z","gw_timestamp":3092021083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU1MjAxMjEwMDA0ODCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (876, '2016-08-10 16:05:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:22.108917Z","gw_timestamp":3106384731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2ODAxMjEwMDA0ODCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (880, '2016-08-10 16:05:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:16:50.839549Z","gw_timestamp":3135112027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDUzMDAxMjEwMDA0ODCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (882, '2016-08-10 16:05:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:05.195933Z","gw_timestamp":3149475883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXAwMDU0NjAxMjEwMDA0ODCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (884, '2016-08-10 16:06:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:19.566166Z","gw_timestamp":3163839011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU1MjAxMjEwMDA0ODCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (886, '2016-08-10 16:06:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:33.923295Z","gw_timestamp":3178202131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU4MzAxMjEwMDA0ODCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (888, '2016-08-10 16:06:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:17:48.290757Z","gw_timestamp":3192565779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU0ODAxMjEwMDA0Nzmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (890, '2016-08-10 16:06:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:02.647926Z","gw_timestamp":3206929531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU0NjAxMjEwMDA0Nzmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (892, '2016-08-10 16:07:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:17.015231Z","gw_timestamp":3221292243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU2NTAxMjEwMDA0Nzmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (894, '2016-08-10 16:07:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:18:31.37242Z","gw_timestamp":3235655891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU2MTAxMjEwMDA0NzmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (899, '2016-08-10 16:08:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:14.469177Z","gw_timestamp":3278745267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDU3OTAxMjEwMDA0NzmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (916, '2016-08-10 16:10:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:16.553059Z","gw_timestamp":3400834395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDUyNjAxMjEwMDA0Nziv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (897, '2016-08-10 16:07:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:00.098924Z","gw_timestamp":3264382251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW8wMDUzNDAxMjEwMDA0Nzmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (901, '2016-08-10 16:08:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:28.853685Z","gw_timestamp":3293108603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU2NTAxMjEwMDA0Nzmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (903, '2016-08-10 16:08:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:43.195927Z","gw_timestamp":3307472459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW4wMDU1NDAxMjEwMDA0NzmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (905, '2016-08-10 16:08:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:19:57.561051Z","gw_timestamp":3321836107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AW0wMDU2MTAxMjEwMDA0Nzmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (907, '2016-08-10 16:08:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:11.915485Z","gw_timestamp":3336199755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU3NzAxMjEwMDA0Nzmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (909, '2016-08-10 16:09:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:26.284553Z","gw_timestamp":3350563403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU0MzAxMjEwMDA0Nzmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (911, '2016-08-10 16:09:20', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1259,"f_cnt_down":2061,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:09:17.12633Z","gw_timestamp":2108375444,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AbAwMDY2ODAxMjI5MDA0MjUIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (913, '2016-08-10 16:09:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:20:47.833556Z","gw_timestamp":3372107939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWwwMDU3NDAxMjEwMDA0Nzmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (915, '2016-08-10 16:09:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:09.383704Z","gw_timestamp":3393653403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWowMDUzNzAxMjEwMDA0Nziymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (917, '2016-08-10 16:10:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:23.734671Z","gw_timestamp":3408016219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDU3NzAxMjEwMDA0Nzixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (919, '2016-08-10 16:10:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:38.101059Z","gw_timestamp":3422379971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDU1MDAxMjEwMDA0Nziyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (921, '2016-08-10 16:10:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:52.470189Z","gw_timestamp":3436743619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDUzMjAxMjEwMDA0Nziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (923, '2016-08-10 16:10:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:06.826433Z","gw_timestamp":3451107267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU1NDAxMjEwMDA0NziyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (925, '2016-08-10 16:11:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:21.190931Z","gw_timestamp":3465471019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU2MzAxMjEwMDA0NziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (914, '2016-08-10 16:09:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:02.23117Z","gw_timestamp":3386471691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDU0MTAxMjEwMDA0Nzixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (920, '2016-08-10 16:10:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:45.28554Z","gw_timestamp":3429561795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDU0ODAxMjEwMDA0Nzixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (922, '2016-08-10 16:10:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:59.658027Z","gw_timestamp":3443925339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDU3MDAxMjEwMDA0NziySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (924, '2016-08-10 16:10:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:14.010132Z","gw_timestamp":3458289195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDU4MTAxMjEwMDA0Nziuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (926, '2016-08-10 16:11:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:28.375505Z","gw_timestamp":3472652835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDU0MzAxMjEwMDA0Nziv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (956, '2016-08-10 16:14:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:03.825445Z","gw_timestamp":3688106099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU3MjAxMjExMDA0NzayWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (986, '2016-08-10 16:18:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:46.462495Z","gw_timestamp":3910739307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU0NjAxMjExMDA0NzSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (988, '2016-08-10 16:18:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:00.823439Z","gw_timestamp":3925101907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU0ODAxMjExMDA0NzSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (918, '2016-08-10 16:10:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:21:30.919309Z","gw_timestamp":3415198051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-80,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWswMDUzNzAxMjEwMDA0NzixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (928, '2016-08-10 16:11:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:42.743185Z","gw_timestamp":3487016491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU2MzAxMjEwMDA0Nziw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (930, '2016-08-10 16:11:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:57.099953Z","gw_timestamp":3501380243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDU2MTAxMjEwMDA0Nziveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (932, '2016-08-10 16:12:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:18.661067Z","gw_timestamp":3522925819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDUxNzAxMjEwMDA0NziyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (934, '2016-08-10 16:12:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:33.005055Z","gw_timestamp":3537289459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU3NzAxMjEwMDA0Nziwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (936, '2016-08-10 16:12:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:47.373431Z","gw_timestamp":3551653107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU4MzAxMjExMDA0Nzixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (938, '2016-08-10 16:12:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:01.740694Z","gw_timestamp":3566015819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU2MTAxMjExMDA0NzewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (940, '2016-08-10 16:13:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:16.120217Z","gw_timestamp":3580379363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWkwMDU4NjAxMjExMDA0NzewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (942, '2016-08-10 16:13:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:30.462184Z","gw_timestamp":3594743219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDU2MTAxMjExMDA0NzevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (944, '2016-08-10 16:13:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:44.826694Z","gw_timestamp":3609106763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU0MzAxMjExMDA0Nzey+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (946, '2016-08-10 16:13:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:52.032192Z","gw_timestamp":3616287755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU0NjAxMjExMDA0Nzewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (948, '2016-08-10 16:13:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:06.373313Z","gw_timestamp":3630651395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU1MjAxMjExMDA0Nzewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (950, '2016-08-10 16:14:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:20.727687Z","gw_timestamp":3645015051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU4NjAxMjExMDA0Nzavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (952, '2016-08-10 16:14:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:35.10393Z","gw_timestamp":3659378803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU3MjAxMjExMDA0Nzawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (927, '2016-08-10 16:11:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:35.560419Z","gw_timestamp":3479834563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU1MDAxMjEwMDA0Nziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (929, '2016-08-10 16:11:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:22:49.930127Z","gw_timestamp":3494198307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU1MjAxMjEwMDA0NziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (931, '2016-08-10 16:11:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:11.467183Z","gw_timestamp":3515743891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU0ODAxMjEwMDA0Nziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (937, '2016-08-10 16:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:54.559061Z","gw_timestamp":3558834307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU2ODAxMjEwMDA0NzeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (939, '2016-08-10 16:12:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:08.918713Z","gw_timestamp":3573197539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU2NTAxMjExMDA0NzexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (941, '2016-08-10 16:13:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:23.296526Z","gw_timestamp":3587561291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU2ODAxMjExMDA0Nzey2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (943, '2016-08-10 16:13:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:37.649813Z","gw_timestamp":3601925043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU3OTAxMjExMDA0NzexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (945, '2016-08-10 16:13:34', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":698,"f_cnt_down":1277,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:13:26.85988Z","gw_timestamp":2358109116,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEwwMDU1ODAxMjI1MDA0NzEHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (947, '2016-08-10 16:13:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:24:59.191686Z","gw_timestamp":3623469579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU0NjAxMjExMDA0NzeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (949, '2016-08-10 16:13:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:13.551051Z","gw_timestamp":3637833123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWcwMDU5MDAxMjExMDA0Nzavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (951, '2016-08-10 16:14:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:27.919317Z","gw_timestamp":3652196979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU1NzAxMjExMDA0Nzay+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (953, '2016-08-10 16:14:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:42.280907Z","gw_timestamp":3666560619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU0ODAxMjExMDA0Nzaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (955, '2016-08-10 16:14:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:56.644942Z","gw_timestamp":3680924379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU5MDAxMjExMDA0NzaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (957, '2016-08-10 16:14:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:11.001057Z","gw_timestamp":3695288019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU0MzAxMjExMDA0NzaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (933, '2016-08-10 16:12:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:25.848703Z","gw_timestamp":3530107643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU3NDAxMjExMDA0Nziqmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (935, '2016-08-10 16:12:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:23:40.208082Z","gw_timestamp":3544471187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU2MzAxMjEwMDA0NzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (961, '2016-08-10 16:15:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:39.728573Z","gw_timestamp":3724014275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU0MTAxMjExMDA0NzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (963, '2016-08-10 16:15:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:54.094945Z","gw_timestamp":3738377195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU1MjAxMjExMDA0NzWy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (965, '2016-08-10 16:16:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:15.637827Z","gw_timestamp":3759922563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU1NDAxMjExMDA0NzWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (967, '2016-08-10 16:16:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:37.179694Z","gw_timestamp":3781468139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU3OTAxMjExMDA0NzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (969, '2016-08-10 16:16:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:51.549934Z","gw_timestamp":3795831267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU0MzAxMjExMDA0NzWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (971, '2016-08-10 16:16:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:05.917337Z","gw_timestamp":3810194395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU2ODAxMjExMDA0NzWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (973, '2016-08-10 16:17:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:20.270684Z","gw_timestamp":3824557107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU0ODAxMjExMDA0NzWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (975, '2016-08-10 16:17:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:34.641815Z","gw_timestamp":3838920859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU3MjAxMjExMDA0NzWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (977, '2016-08-10 16:17:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:49.005272Z","gw_timestamp":3853284603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU2MzAxMjExMDA0NzWvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (979, '2016-08-10 16:17:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:03.372594Z","gw_timestamp":3867648147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDUzMDAxMjExMDA0NzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (981, '2016-08-10 16:18:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:17.735585Z","gw_timestamp":3882012011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU1NzAxMjExMDA0NzWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (983, '2016-08-10 16:18:11', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":783,"f_cnt_down":1472,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:18:03.696145Z","gw_timestamp":2634945516,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AhcwMDYxNDAxMjI3MDA0NTcRwQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (954, '2016-08-10 16:14:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:25:49.467313Z","gw_timestamp":3673742451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWgwMDUzMjAxMjExMDA0NzawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (958, '2016-08-10 16:15:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:18.192693Z","gw_timestamp":3702469851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU3MDAxMjExMDA0Nzaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (960, '2016-08-10 16:15:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:32.561206Z","gw_timestamp":3716833083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDUxMDAxMjExMDA0Nzaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (962, '2016-08-10 16:15:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:46.92483Z","gw_timestamp":3731196203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU1NDAxMjExMDA0NzWyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (964, '2016-08-10 16:15:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:01.27257Z","gw_timestamp":3745558915,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU3MjAxMjExMDA0NzWy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (966, '2016-08-10 16:16:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:22.841889Z","gw_timestamp":3767104387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU2MTAxMjExMDA0NzWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (968, '2016-08-10 16:16:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:44.37153Z","gw_timestamp":3788649859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU1OTAxMjExMDA0NzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (970, '2016-08-10 16:16:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:27:58.756696Z","gw_timestamp":3803012675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU3NDAxMjExMDA0NzWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (972, '2016-08-10 16:16:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:13.109073Z","gw_timestamp":3817375387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU3MjAxMjExMDA0NzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (974, '2016-08-10 16:17:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:27.46524Z","gw_timestamp":3831739035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU3NDAxMjExMDA0NzWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (976, '2016-08-10 16:17:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:41.820452Z","gw_timestamp":3846102675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU5OTAxMjExMDA0NzWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (978, '2016-08-10 16:17:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:28:56.191087Z","gw_timestamp":3860466435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU1NzAxMjExMDA0NzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (980, '2016-08-10 16:17:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:10.54722Z","gw_timestamp":3874830075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU2NTAxMjExMDA0NzWu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (982, '2016-08-10 16:18:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:24.910211Z","gw_timestamp":3889193835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU1NzAxMjExMDA0NzWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (959, '2016-08-10 16:15:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:26:25.363322Z","gw_timestamp":3709651571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU0NjAxMjExMDA0Nzaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (985, '2016-08-10 16:18:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:39.268451Z","gw_timestamp":3903557475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU0ODAxMjExMDA0NzSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (987, '2016-08-10 16:18:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:53.64168Z","gw_timestamp":3917920291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU4ODAxMjExMDA0NzSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (984, '2016-08-10 16:18:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:29:32.09481Z","gw_timestamp":3896375651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDYwMDAxMjExMDA0NzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (989, '2016-08-10 16:18:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:08.003077Z","gw_timestamp":3932282899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU1NTAxMjExMDA0NzSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (990, '2016-08-10 16:19:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:15.198976Z","gw_timestamp":3939464723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU3NTAxMjExMDA0NzSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (991, '2016-08-10 16:19:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:22.364319Z","gw_timestamp":3946646443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU1NzAxMjExMDA0NzSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (992, '2016-08-10 16:19:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:29.549935Z","gw_timestamp":3953827747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU1MjAxMjExMDA0NzSvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (993, '2016-08-10 16:19:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:36.720816Z","gw_timestamp":3961009155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU2NjAxMjExMDA0NzSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (994, '2016-08-10 16:19:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:43.906197Z","gw_timestamp":3968191083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU1MDAxMjExMDA0NzSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (995, '2016-08-10 16:19:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:51.088829Z","gw_timestamp":3975373011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU1NzAxMjExMDA0NzSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (996, '2016-08-10 16:19:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:30:58.26444Z","gw_timestamp":3982554835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUyNDAxMjExMDA0NzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (997, '2016-08-10 16:19:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:05.479352Z","gw_timestamp":3989736659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUyNDAxMjExMDA0NzSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (998, '2016-08-10 16:19:50', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":778,"f_cnt_down":1427,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:19:49.041795Z","gw_timestamp":2740291220,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AxcwMDUyNDAxMjQyMDA0MTcYAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (999, '2016-08-10 16:19:51', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":779,"f_cnt_down":1428,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:12:14.775897Z","gw_timestamp":1376133284,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AxcwMDUyNDAxMjQyMDA0MTcYAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1000, '2016-08-10 16:20:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:12.630701Z","gw_timestamp":3996918379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU1MDAxMjExMDA0NzSzSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1001, '2016-08-10 16:20:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:19.81644Z","gw_timestamp":4004100307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDUzMjAxMjExMDA0NzSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1002, '2016-08-10 16:20:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:27.003164Z","gw_timestamp":4011282235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUxMDAxMjExMDA0NzSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1004, '2016-08-10 16:20:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:41.367576Z","gw_timestamp":4025645883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU3MzAxMjExMDA0NzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1006, '2016-08-10 16:20:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:55.730633Z","gw_timestamp":4040009531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU0NDAxMjExMDA0NzOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1008, '2016-08-10 16:20:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:10.089452Z","gw_timestamp":4054373283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU3NzAxMjExMDA0NzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1010, '2016-08-10 16:21:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:24.44907Z","gw_timestamp":4068736931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDUzMTAxMjExMDA0NzOuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1012, '2016-08-10 16:21:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:46.011186Z","gw_timestamp":4090282507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUyOTAxMjExMDA0NzOu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1016, '2016-08-10 16:22:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:29.093817Z","gw_timestamp":4133372515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDUzMzAxMjExMDA0NzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1018, '2016-08-10 16:22:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:43.453082Z","gw_timestamp":4147736267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU4NzAxMjExMDA0NzOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1026, '2016-08-10 16:23:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:40.900089Z","gw_timestamp":4205188987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU3ODAxMjExMDA0NzOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1028, '2016-08-10 16:23:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:55.268335Z","gw_timestamp":4219552739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU2NjAxMjExMDA0NzOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1030, '2016-08-10 16:23:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:09.637712Z","gw_timestamp":4233916387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0NDAxMjExMDA0NzOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1032, '2016-08-10 16:24:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:24.001092Z","gw_timestamp":4248280035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU4MDAxMjExMDA0NzOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1034, '2016-08-10 16:24:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:38.364199Z","gw_timestamp":4262643779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU3NTAxMjExMDA0NzKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1036, '2016-08-10 16:24:32', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1260,"f_cnt_down":2062,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:24:27.940269Z","gw_timestamp":3019189828,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AVcwMDYyMzAxMjI5MDA0MjgJYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1003, '2016-08-10 16:20:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:34.173693Z","gw_timestamp":4018464059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU4MDAxMjExMDA0NzOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1007, '2016-08-10 16:20:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:02.909451Z","gw_timestamp":4047191459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU3MTAxMjExMDA0NzOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1011, '2016-08-10 16:21:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:38.821315Z","gw_timestamp":4083100683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU0NDAxMjExMDA0NzOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1013, '2016-08-10 16:21:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:53.181714Z","gw_timestamp":4097464331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUyNzAxMjExMDA0NzOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1015, '2016-08-10 16:22:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:21.930572Z","gw_timestamp":4126190691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU4MDAxMjExMDA0NzOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1017, '2016-08-10 16:22:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:36.285368Z","gw_timestamp":4140554339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU0NDAxMjExMDA0NzOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1019, '2016-08-10 16:22:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:50.632704Z","gw_timestamp":4154917987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU3MzAxMjExMDA0NzOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1021, '2016-08-10 16:22:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:04.993952Z","gw_timestamp":4169281739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU4OTAxMjExMDA0NzOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1023, '2016-08-10 16:23:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:19.361466Z","gw_timestamp":4183645387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1ODAxMjExMDA0NzOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1025, '2016-08-10 16:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:33.723463Z","gw_timestamp":4198007995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU1NTAxMjExMDA0NzOzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1027, '2016-08-10 16:23:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:48.087834Z","gw_timestamp":4212370811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0MDAxMjExMDA0NzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1029, '2016-08-10 16:23:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:02.454479Z","gw_timestamp":4226734451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0NzAxMjExMDA0NzOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1031, '2016-08-10 16:24:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:16.813996Z","gw_timestamp":4241098107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU2MDAxMjExMDA0NzOyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1033, '2016-08-10 16:24:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:31.178589Z","gw_timestamp":4255461851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzODAxMjExMDA0NzKy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1005, '2016-08-10 16:20:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:31:48.539955Z","gw_timestamp":4032827603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDYwNTAxMjExMDA0NzOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1009, '2016-08-10 16:21:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:32:17.275484Z","gw_timestamp":4061555107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDUxNTAxMjExMDA0NzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1037, '2016-08-10 16:24:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:52.726455Z","gw_timestamp":4277006491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2NjAxMjExMDA0NzKyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1039, '2016-08-10 16:24:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:07.089717Z","gw_timestamp":4291370139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU0NDAxMjExMDA0NzKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1041, '2016-08-10 16:25:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:21.446469Z","gw_timestamp":10766491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2NjAxMjExMDA0NzKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1043, '2016-08-10 16:25:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:35.814214Z","gw_timestamp":25129099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0NzAxMjExMDA0NzKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1045, '2016-08-10 16:25:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:50.172867Z","gw_timestamp":39492963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2OTAxMjExMDA0NzKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1047, '2016-08-10 16:25:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:04.545259Z","gw_timestamp":53855875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU3NTAxMjExMDA0NzKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1049, '2016-08-10 16:26:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:18.913808Z","gw_timestamp":68219315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1MTAxMjExMDA0NzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1067, '2016-08-10 16:28:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:28.173936Z","gw_timestamp":197490483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU4NzAxMjExMDA0NzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1069, '2016-08-10 16:28:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:42.534987Z","gw_timestamp":211854035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU2NjAxMjExMDA0NzGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1071, '2016-08-10 16:28:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:56.897976Z","gw_timestamp":226216739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU3ODAxMjExMDA0NzGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1103, '2016-08-10 16:32:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:39.528607Z","gw_timestamp":448851523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU2NjAxMjExMDA0NzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1105, '2016-08-10 16:32:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:53.892865Z","gw_timestamp":463214755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU2MjAxMjEyMDA0NzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1014, '2016-08-10 16:22:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:00.355135Z","gw_timestamp":4104646155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDUzODAxMjExMDA0NzOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1020, '2016-08-10 16:22:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:33:57.813318Z","gw_timestamp":4162099915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU5MTAxMjExMDA0NzOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1022, '2016-08-10 16:22:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:12.180799Z","gw_timestamp":4176463667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU4NDAxMjExMDA0NzOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1024, '2016-08-10 16:23:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:34:26.551952Z","gw_timestamp":4190826899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU0MDAxMjExMDA0NzOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1046, '2016-08-10 16:25:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:57.351219Z","gw_timestamp":46674779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1MTAxMjExMDA0NzKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1048, '2016-08-10 16:25:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:11.71646Z","gw_timestamp":61037387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU0MjAxMjExMDA0NzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1050, '2016-08-10 16:26:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:26.07872Z","gw_timestamp":75401139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU1NTAxMjExMDA0NzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1052, '2016-08-10 16:26:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:40.449227Z","gw_timestamp":89764795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2OTAxMjExMDA0NzGyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1054, '2016-08-10 16:26:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:54.814498Z","gw_timestamp":104127603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU2NjAxMjExMDA0NzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1056, '2016-08-10 16:26:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:09.169161Z","gw_timestamp":118491155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU4NDAxMjExMDA0NzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1058, '2016-08-10 16:27:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:23.532721Z","gw_timestamp":132855115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU0MjAxMjExMDA0NzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1060, '2016-08-10 16:27:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:37.900027Z","gw_timestamp":147218443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU2OTAxMjExMDA0NzGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1062, '2016-08-10 16:27:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:52.258345Z","gw_timestamp":161582299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU4MjAxMjExMDA0NzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1064, '2016-08-10 16:27:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:06.621762Z","gw_timestamp":175945947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU2NjAxMjExMDA0NzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1035, '2016-08-10 16:24:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:45.533219Z","gw_timestamp":4269824979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU3ODAxMjExMDA0NzKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1051, '2016-08-10 16:26:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:33.283458Z","gw_timestamp":82582963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU0NzAxMjExMDA0NzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1053, '2016-08-10 16:26:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:37:47.627596Z","gw_timestamp":96946611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUyNzAxMjExMDA0NzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1055, '2016-08-10 16:26:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:01.986846Z","gw_timestamp":111309323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2NDAxMjExMDA0NzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1057, '2016-08-10 16:27:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:16.355354Z","gw_timestamp":125673083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDYwMDAxMjExMDA0NzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1059, '2016-08-10 16:27:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:30.717474Z","gw_timestamp":140036731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU2NjAxMjExMDA0NzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1061, '2016-08-10 16:27:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:45.094487Z","gw_timestamp":154400371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU4NzAxMjExMDA0NzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1063, '2016-08-10 16:27:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:38:59.470243Z","gw_timestamp":168764123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU3MzAxMjExMDA0NzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1065, '2016-08-10 16:27:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:13.811339Z","gw_timestamp":183127675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUzNTAxMjExMDA0NzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1073, '2016-08-10 16:28:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:04.0746Z","gw_timestamp":233397731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU1NTAxMjExMDA0NzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1075, '2016-08-10 16:29:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:18.436978Z","gw_timestamp":247761379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDUzNTAxMjExMDA0NzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1077, '2016-08-10 16:29:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:32.803221Z","gw_timestamp":262125035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDYwOTAxMjExMDA0NzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1079, '2016-08-10 16:29:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:47.172476Z","gw_timestamp":276488779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU0NDAxMjExMDA0NzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1081, '2016-08-10 16:29:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:01.528731Z","gw_timestamp":290852427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU4NDAxMjExMDA0NzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1038, '2016-08-10 16:24:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:35:59.908087Z","gw_timestamp":4284188323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU0MjAxMjExMDA0NzKyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1040, '2016-08-10 16:25:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:14.280612Z","gw_timestamp":3584675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzMTAxMjExMDA0NzKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1042, '2016-08-10 16:25:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:28.63785Z","gw_timestamp":17947483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDUzODAxMjExMDA0NzKySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1044, '2016-08-10 16:25:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:36:42.988962Z","gw_timestamp":32311027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2MDAxMjExMDA0NzKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1068, '2016-08-10 16:28:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:35.353099Z","gw_timestamp":204672315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU3MzAxMjExMDA0NzGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1070, '2016-08-10 16:28:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:49.730617Z","gw_timestamp":219035027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU1ODAxMjExMDA0NzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1072, '2016-08-10 16:28:43', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":699,"f_cnt_down":1278,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:28:37.62937Z","gw_timestamp":3268879052,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD4wMDU0NTAxMjI3MDA0NzEJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1074, '2016-08-10 16:28:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:11.261231Z","gw_timestamp":240579451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU3MTAxMjExMDA0NzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1076, '2016-08-10 16:29:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:25.628803Z","gw_timestamp":254943307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU1MzAxMjExMDA0NzGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1078, '2016-08-10 16:29:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:40.010117Z","gw_timestamp":269306955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU4NDAxMjExMDA0NzGuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1080, '2016-08-10 16:29:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:40:54.344102Z","gw_timestamp":283670499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU2NDAxMjExMDA0NzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1082, '2016-08-10 16:30:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:08.708348Z","gw_timestamp":298034259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU0NDAxMjExMDA0NzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1084, '2016-08-10 16:30:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:23.073602Z","gw_timestamp":312398115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUzNTAxMjExMDA0NzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1086, '2016-08-10 16:30:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:37.44107Z","gw_timestamp":326761763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUzMzAxMjExMDA0NzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1066, '2016-08-10 16:28:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:39:20.981846Z","gw_timestamp":190308659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU1NTAxMjExMDA0NzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1090, '2016-08-10 16:30:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:06.161299Z","gw_timestamp":355489059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU3MTAxMjExMDA0NzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1092, '2016-08-10 16:31:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:20.569067Z","gw_timestamp":369852291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU0NDAxMjExMDA0NzCvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1094, '2016-08-10 16:31:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:34.89298Z","gw_timestamp":384215523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDUzODAxMjExMDA0NzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1096, '2016-08-10 16:31:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:49.262235Z","gw_timestamp":398579163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUyNzAxMjExMDA0NzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1098, '2016-08-10 16:31:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:03.623477Z","gw_timestamp":412942715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU0OTAxMjExMDA0NzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1100, '2016-08-10 16:32:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:17.999873Z","gw_timestamp":427306571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU4OTAxMjExMDA0NzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1102, '2016-08-10 16:32:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:32.346983Z","gw_timestamp":441670115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU4NDAxMjExMDA0NzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1104, '2016-08-10 16:32:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:46.713233Z","gw_timestamp":456032827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUyOTAxMjEyMDA0Njmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1106, '2016-08-10 16:32:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:01.08412Z","gw_timestamp":470396579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU4MDAxMjEyMDA0NzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1108, '2016-08-10 16:33:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:15.444044Z","gw_timestamp":484760435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU0MjAxMjEyMDA0NzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1110, '2016-08-10 16:33:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:29.797335Z","gw_timestamp":499123883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU1NTAxMjEyMDA0NzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1112, '2016-08-10 16:33:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:37.006331Z","gw_timestamp":506305803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0NDAxMjEyMDA0NzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1114, '2016-08-10 16:33:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:51.344985Z","gw_timestamp":520669555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU2NjAxMjEyMDA0NzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1083, '2016-08-10 16:30:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:15.899976Z","gw_timestamp":305216179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU2MDAxMjExMDA0NzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1085, '2016-08-10 16:30:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:30.272433Z","gw_timestamp":319579827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUyOTAxMjExMDA0NzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1087, '2016-08-10 16:30:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:44.640741Z","gw_timestamp":333943483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDUzMTAxMjExMDA0NzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1089, '2016-08-10 16:30:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:58.991733Z","gw_timestamp":348307235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU1NTAxMjExMDA0NzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1091, '2016-08-10 16:31:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:13.354596Z","gw_timestamp":362670987,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU1NTAxMjExMDA0NzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1093, '2016-08-10 16:31:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:27.70435Z","gw_timestamp":377033595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU0OTAxMjExMDA0NzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1095, '2016-08-10 16:31:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:42.07861Z","gw_timestamp":391397347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU2MDAxMjExMDA0NzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1097, '2016-08-10 16:31:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:42:56.433988Z","gw_timestamp":405760995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUyMDAxMjExMDA0NzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1099, '2016-08-10 16:31:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:10.812495Z","gw_timestamp":420124643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU5NjAxMjExMDA0NzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1101, '2016-08-10 16:32:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:43:25.160356Z","gw_timestamp":434488395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUyNzAxMjExMDA0NzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1129, '2016-08-10 16:35:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:31.888862Z","gw_timestamp":621213219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU3MTAxMjEyMDA0Njmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1131, '2016-08-10 16:35:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:46.274758Z","gw_timestamp":635576979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU1MTAxMjEyMDA0NjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1133, '2016-08-10 16:35:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:00.635739Z","gw_timestamp":649940731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU2MjAxMjEyMDA0Njmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1135, '2016-08-10 16:36:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:14.983614Z","gw_timestamp":664304483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDUyNzAxMjEyMDA0Njmtag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1088, '2016-08-10 16:30:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:41:51.812104Z","gw_timestamp":341125307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU2OTAxMjExMDA0NzCy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1134, '2016-08-10 16:35:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:07.796985Z","gw_timestamp":657122555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU1MzAxMjEyMDA0Njmymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1136, '2016-08-10 16:36:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:22.16223Z","gw_timestamp":671486307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU1ODAxMjEyMDA0Njmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1138, '2016-08-10 16:36:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:43.712112Z","gw_timestamp":693030843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUzMTAxMjEyMDA0Njmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1140, '2016-08-10 16:36:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:58.075537Z","gw_timestamp":707394491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2MDAxMjEyMDA0NjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1107, '2016-08-10 16:32:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:08.252234Z","gw_timestamp":477578507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU2OTAxMjEyMDA0NzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1109, '2016-08-10 16:33:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:22.619483Z","gw_timestamp":491942155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU4OTAxMjEyMDA0NzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1111, '2016-08-10 16:33:16', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":784,"f_cnt_down":1473,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:33:14.458946Z","gw_timestamp":3545708764,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AdIwMDY1NjAxMjMwMDA0NTYHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1113, '2016-08-10 16:33:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:44.160357Z","gw_timestamp":513487739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU3MTAxMjEyMDA0NzCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1115, '2016-08-10 16:33:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:44:58.525729Z","gw_timestamp":527850547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDUyMDAxMjEyMDA0NzCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1117, '2016-08-10 16:33:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:05.711233Z","gw_timestamp":535032275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU2MDAxMjEyMDA0NzCzSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1119, '2016-08-10 16:34:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:20.065491Z","gw_timestamp":549395915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDUxODAxMjEyMDA0NzCy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1121, '2016-08-10 16:34:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:34.443001Z","gw_timestamp":563759467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU5MTAxMjEyMDA0NzCuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1123, '2016-08-10 16:34:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:55.985872Z","gw_timestamp":585305147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU1NTAxMjEyMDA0Njmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1125, '2016-08-10 16:34:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:10.369107Z","gw_timestamp":599668795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU3MzAxMjEyMDA0Njmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1127, '2016-08-10 16:35:04', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":779,"f_cnt_down":1429,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:34:59.876517Z","gw_timestamp":3651126388,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:27:25.610674Z","gw_timestamp":2286968060,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Aw4wMDU2OTAxMjQxMDA0MjELwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1139, '2016-08-10 16:36:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:50.884955Z","gw_timestamp":700212667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU1MTAxMjEyMDA0Njmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1141, '2016-08-10 16:36:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:05.255062Z","gw_timestamp":714576315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDUyNDAxMjEyMDA0Njmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1116, '2016-08-10 16:33:44', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":785,"f_cnt_down":1474,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:33:39.1415Z","gw_timestamp":3570391332,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:26:04.875649Z","gw_timestamp":2206233036,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AdIwMDY1NjAxMjMwMDA0NTYHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1118, '2016-08-10 16:33:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:12.896866Z","gw_timestamp":542213995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU4NDAxMjEyMDA0NzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1120, '2016-08-10 16:34:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:27.253117Z","gw_timestamp":556577635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0MDAxMjEyMDA0NzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1122, '2016-08-10 16:34:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:45:48.797977Z","gw_timestamp":578123323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU3NTAxMjEyMDA0Njmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1124, '2016-08-10 16:34:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:03.16337Z","gw_timestamp":592486867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUxMzAxMjEyMDA0NjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1126, '2016-08-10 16:35:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:17.527617Z","gw_timestamp":606850091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUzMTAxMjEyMDA0Njmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1128, '2016-08-10 16:35:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:24.702168Z","gw_timestamp":614031603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0NzAxMjEyMDA0Njmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1130, '2016-08-10 16:35:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:39.071486Z","gw_timestamp":628395155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU4NDAxMjEyMDA0Njmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1132, '2016-08-10 16:35:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:46:53.436911Z","gw_timestamp":642758803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU3MTAxMjEyMDA0Njmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1137, '2016-08-10 16:36:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:47:36.540738Z","gw_timestamp":685849123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUzNTAxMjEyMDA0NjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1142, '2016-08-10 16:36:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:12.429022Z","gw_timestamp":721758251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0MDAxMjEyMDA0Njmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1143, '2016-08-10 16:37:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:19.608318Z","gw_timestamp":728940067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU1ODAxMjEyMDA0Njmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1144, '2016-08-10 16:37:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:26.811616Z","gw_timestamp":736121891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUyOTAxMjEyMDA0Njmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1145, '2016-08-10 16:37:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:33.97262Z","gw_timestamp":743303723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDUzMTAxMjEyMDA0Njmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1146, '2016-08-10 16:37:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:41.16586Z","gw_timestamp":750485547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-82,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU1MTAxMjEyMDA0NjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1147, '2016-08-10 16:37:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:48.337859Z","gw_timestamp":757667467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU3MTAxMjEyMDA0NjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1148, '2016-08-10 16:37:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:48:55.527744Z","gw_timestamp":764849187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU4OTAxMjEyMDA0Njmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1149, '2016-08-10 16:37:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:02.744384Z","gw_timestamp":772031115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUyNzAxMjEyMDA0Njmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1150, '2016-08-10 16:37:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:09.886742Z","gw_timestamp":779212947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUzODAxMjEyMDA0Njmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1151, '2016-08-10 16:38:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:17.066494Z","gw_timestamp":786394771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU4MjAxMjEyMDA0Njmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1152, '2016-08-10 16:38:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:24.254984Z","gw_timestamp":793576595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU2MDAxMjEyMDA0Njmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1153, '2016-08-10 16:38:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:31.430621Z","gw_timestamp":800758419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU1NTAxMjEyMDA0Njmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1154, '2016-08-10 16:38:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:38.614193Z","gw_timestamp":807939411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU0OTAxMjEyMDA0Njmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1155, '2016-08-10 16:38:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:45.788872Z","gw_timestamp":815121131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU0NDAxMjEyMDA0NjmzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1159, '2016-08-10 16:39:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:14.523501Z","gw_timestamp":843847699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDUyNDAxMjEyMDA0Njivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1161, '2016-08-10 16:39:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:28.892125Z","gw_timestamp":858211243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDUzODAxMjEyMDA0Njiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1163, '2016-08-10 16:39:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:43.266214Z","gw_timestamp":872574995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU0MDAxMjEyMDA0NjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1165, '2016-08-10 16:39:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:57.640657Z","gw_timestamp":886938643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDUzNTAxMjEyMDA0Njiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1167, '2016-08-10 16:39:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:04.798872Z","gw_timestamp":894120475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU0NDAxMjEyMDA0Njiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1169, '2016-08-10 16:40:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:19.175052Z","gw_timestamp":908484123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU4MjAxMjEyMDA0Njiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1171, '2016-08-10 16:40:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:33.526006Z","gw_timestamp":922846203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU5MTAxMjEyMDA0Njiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1173, '2016-08-10 16:40:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:47.880628Z","gw_timestamp":937209443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU1NTAxMjEyMDA0Njix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1175, '2016-08-10 16:40:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:02.243994Z","gw_timestamp":951573187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDUzODAxMjEyMDA0Njevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1177, '2016-08-10 16:41:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:16.616468Z","gw_timestamp":965936843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU0MjAxMjEyMDA0Njev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1183, '2016-08-10 16:41:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:59.694384Z","gw_timestamp":1009027995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU2NjAxMjEyMDA0Njevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1185, '2016-08-10 16:41:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:14.060259Z","gw_timestamp":1023391747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDUxNTAxMjEyMDA0Njevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1187, '2016-08-10 16:42:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:28.422452Z","gw_timestamp":1037755395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU3MzAxMjEyMDA0NjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1156, '2016-08-10 16:38:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:49:52.993783Z","gw_timestamp":822303059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU1ODAxMjEyMDA0Njixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1160, '2016-08-10 16:39:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:21.700123Z","gw_timestamp":851029315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU4MDAxMjEyMDA0Njiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1162, '2016-08-10 16:39:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:36.076573Z","gw_timestamp":865393067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUzODAxMjEyMDA0Njiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1166, '2016-08-10 16:39:44', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1261,"f_cnt_down":2063,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:39:38.755004Z","gw_timestamp":3930005012,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AX4wMDYwNzAxMjI4MDA0MzIf4Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1168, '2016-08-10 16:39:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:11.980492Z","gw_timestamp":901302291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU2NjAxMjEyMDA0Njiuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1170, '2016-08-10 16:40:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:26.335745Z","gw_timestamp":915665107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDUzODAxMjEyMDA0Njixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1172, '2016-08-10 16:40:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:40.69799Z","gw_timestamp":930027715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDUxODAxMjEyMDA0NjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1174, '2016-08-10 16:40:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:51:55.100765Z","gw_timestamp":944391259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU1MzAxMjEyMDA0NjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1176, '2016-08-10 16:40:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:09.43328Z","gw_timestamp":958755019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU2MjAxMjEyMDA0Njev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1178, '2016-08-10 16:41:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:23.789883Z","gw_timestamp":973118771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU2MjAxMjEyMDA0NjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1180, '2016-08-10 16:41:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:38.152327Z","gw_timestamp":987482411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWUwMDU3MTAxMjEyMDA0Njew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1182, '2016-08-10 16:41:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:52.522378Z","gw_timestamp":1001846067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU0MDAxMjEyMDA0Njet2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1184, '2016-08-10 16:41:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:06.879632Z","gw_timestamp":1016209819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU0MDAxMjEyMDA0Njex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1186, '2016-08-10 16:42:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:21.249888Z","gw_timestamp":1030573571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDUzMzAxMjEyMDA0NjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1157, '2016-08-10 16:38:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:00.162377Z","gw_timestamp":829484883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU1NTAxMjEyMDA0Njiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1179, '2016-08-10 16:41:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:30.97083Z","gw_timestamp":980300595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU2OTAxMjEyMDA0Njewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1181, '2016-08-10 16:41:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:52:45.341031Z","gw_timestamp":994664347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU1NTAxMjEyMDA0Njex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1191, '2016-08-10 16:42:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:57.153498Z","gw_timestamp":1066481763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU0NzAxMjEzMDA0Njew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1193, '2016-08-10 16:42:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:11.51338Z","gw_timestamp":1080844675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU0MjAxMjEzMDA0Njavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1195, '2016-08-10 16:43:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:25.901154Z","gw_timestamp":1095208019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU1MTAxMjEzMDA0NjawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1197, '2016-08-10 16:43:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:40.237887Z","gw_timestamp":1109570731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU0NDAxMjEzMDA0Njayew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1205, '2016-08-10 16:44:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:30.514191Z","gw_timestamp":1159842147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU4MjAxMjEzMDA0Njav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1207, '2016-08-10 16:44:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:52.074403Z","gw_timestamp":1181387307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDUzMzAxMjEzMDA0NjaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1209, '2016-08-10 16:44:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:06.420515Z","gw_timestamp":1195750851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU0NzAxMjEzMDA0NjaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1211, '2016-08-10 16:45:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:20.78689Z","gw_timestamp":1210114707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUyNzAxMjEzMDA0Njavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1213, '2016-08-10 16:45:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:35.143945Z","gw_timestamp":1224478251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV8wMDU3MzAxMjEzMDA0NjayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1215, '2016-08-10 16:45:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:49.507256Z","gw_timestamp":1238841907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU2MDAxMjEzMDA0NjaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1217, '2016-08-10 16:45:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:03.870512Z","gw_timestamp":1253204619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUzMzAxMjEzMDA0NjavCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1158, '2016-08-10 16:38:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:07.366141Z","gw_timestamp":836666603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU1MzAxMjEyMDA0Njiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1164, '2016-08-10 16:39:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:50:50.43062Z","gw_timestamp":879756715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU2MDAxMjEyMDA0NjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1188, '2016-08-10 16:42:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:35.623406Z","gw_timestamp":1044937227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU1ODAxMjEyMDA0NjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1190, '2016-08-10 16:42:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:49.967893Z","gw_timestamp":1059299931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU0MDAxMjEzMDA0Njewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1192, '2016-08-10 16:42:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:04.337763Z","gw_timestamp":1073663475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU1NTAxMjEzMDA0Njewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1194, '2016-08-10 16:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:18.694997Z","gw_timestamp":1088026291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU1ODAxMjEzMDA0Njax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1196, '2016-08-10 16:43:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:33.067264Z","gw_timestamp":1102389003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDUxODAxMjEzMDA0NjawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1198, '2016-08-10 16:43:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:47.419512Z","gw_timestamp":1116752547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDUzMTAxMjEzMDA0Njawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1200, '2016-08-10 16:43:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:01.78575Z","gw_timestamp":1131116411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWIwMDU1ODAxMjEzMDA0NjavSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1202, '2016-08-10 16:43:55', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":700,"f_cnt_down":1279,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:43:48.400971Z","gw_timestamp":4179651100,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU1ODAxMjI1MDA0NDIUEQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1204, '2016-08-10 16:44:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:23.336074Z","gw_timestamp":1152660939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWQwMDU1ODAxMjEzMDA0Njaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1206, '2016-08-10 16:44:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:37.688881Z","gw_timestamp":1167023763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU0NzAxMjEzMDA0Njawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1208, '2016-08-10 16:44:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:59.238884Z","gw_timestamp":1188569027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWAwMDU1MTAxMjEzMDA0Njawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1210, '2016-08-10 16:44:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:13.611009Z","gw_timestamp":1202932779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU0MDAxMjEzMDA0Njavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1189, '2016-08-10 16:42:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:53:42.79577Z","gw_timestamp":1052118947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU0NzAxMjEzMDA0NjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1199, '2016-08-10 16:43:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:54:54.600327Z","gw_timestamp":1123934483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWMwMDU2NDAxMjEzMDA0NjawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1201, '2016-08-10 16:43:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:08.963377Z","gw_timestamp":1138298235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUzMzAxMjEzMDA0Njawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1203, '2016-08-10 16:44:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:55:16.174259Z","gw_timestamp":1145479955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWEwMDU3MzAxMjEzMDA0Njav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1221, '2016-08-10 16:46:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:32.620285Z","gw_timestamp":1281931187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU2OTAxMjEzMDA0Njaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1223, '2016-08-10 16:46:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:54.151894Z","gw_timestamp":1303476547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDU2MjAxMjEzMDA0Njawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1225, '2016-08-10 16:46:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:08.514213Z","gw_timestamp":1317839779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0MjAxMjEzMDA0Njaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1227, '2016-08-10 16:47:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:22.871699Z","gw_timestamp":1332202915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-82,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUzMzAxMjEzMDA0Njawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1229, '2016-08-10 16:47:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:37.257855Z","gw_timestamp":1346566667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU1NTAxMjEzMDA0NjawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1231, '2016-08-10 16:47:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:51.600022Z","gw_timestamp":1360930419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0NzAxMjEzMDA0NjWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1233, '2016-08-10 16:47:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:05.957268Z","gw_timestamp":1375293131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU2MjAxMjEzMDA0NjWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1235, '2016-08-10 16:48:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:20.329517Z","gw_timestamp":1389656779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU1ODAxMjEzMDA0NjWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1237, '2016-08-10 16:48:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:34.684038Z","gw_timestamp":1404019491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU2OTAxMjEzMDA0NjWyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1249, '2016-08-10 16:49:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:46.510148Z","gw_timestamp":1475835659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU5NDAxMjEzMDA0NjWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1212, '2016-08-10 16:45:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:27.970376Z","gw_timestamp":1217296531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU1MzAxMjEzMDA0Njau6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1244, '2016-08-10 16:48:56', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":787,"f_cnt_down":1476,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:40.672305Z","gw_timestamp":3116996988,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ae0wMDYzMzAxMjI3MDA0MzQHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1246, '2016-08-10 16:49:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:24.955507Z","gw_timestamp":1454290395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2NTAxMjEzMDA0NjWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1248, '2016-08-10 16:49:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:39.335925Z","gw_timestamp":1468654147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU0MDAxMjEzMDA0NjWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1250, '2016-08-10 16:49:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:53.69178Z","gw_timestamp":1483016755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0NDAxMjEzMDA0NjWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1252, '2016-08-10 16:49:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:08.046882Z","gw_timestamp":1497380403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2OTAxMjEzMDA0NjSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1254, '2016-08-10 16:50:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:22.412274Z","gw_timestamp":1511744051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU1MzAxMjEzMDA0NjSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1284, '2016-08-10 16:53:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:57.85327Z","gw_timestamp":1727190563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUxODAxMjE0MDA0NjSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1286, '2016-08-10 16:53:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:12.221979Z","gw_timestamp":1741554219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1NjAxMjE0MDA0NjSxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1288, '2016-08-10 16:54:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:26.581773Z","gw_timestamp":1755917971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUzMTAxMjE0MDA0NjSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1290, '2016-08-10 16:54:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:40.951037Z","gw_timestamp":1770281619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzNDAxMjE0MDA0NjSvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1292, '2016-08-10 16:54:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:02.495103Z","gw_timestamp":1791827091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2MTAxMjE0MDA0NjOuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1294, '2016-08-10 16:54:56', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1262,"f_cnt_down":2064,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:54:49.572302Z","gw_timestamp":545855460,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ATIwMDYxNTAxMjI4MDA0MzIMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1296, '2016-08-10 16:55:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:24.032776Z","gw_timestamp":1813372667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU0MTAxMjE0MDA0NjOy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1214, '2016-08-10 16:45:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:42.34075Z","gw_timestamp":1231660179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU2MDAxMjEzMDA0Njayaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1216, '2016-08-10 16:45:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:56:56.71816Z","gw_timestamp":1246022899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUzMTAxMjEzMDA0Njayqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1218, '2016-08-10 16:45:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:11.050136Z","gw_timestamp":1260386547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDU2NjAxMjEzMDA0NjawOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1220, '2016-08-10 16:46:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:25.418377Z","gw_timestamp":1274749251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU0NDAxMjEzMDA0NjawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1222, '2016-08-10 16:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:46.96626Z","gw_timestamp":1296294835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV0wMDUzNTAxMjEzMDA0Njau6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1224, '2016-08-10 16:46:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:01.331519Z","gw_timestamp":1310658483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AV4wMDUyNzAxMjEzMDA0NjaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1226, '2016-08-10 16:47:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:15.687132Z","gw_timestamp":1325021195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU1MzAxMjEzMDA0NjawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1228, '2016-08-10 16:47:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:30.057137Z","gw_timestamp":1339384843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2MDAxMjEzMDA0NjawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1230, '2016-08-10 16:47:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:44.413379Z","gw_timestamp":1353748491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU2NjAxMjEzMDA0Njawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1232, '2016-08-10 16:47:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:58:58.785637Z","gw_timestamp":1368112147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUxODAxMjEzMDA0NjayGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1234, '2016-08-10 16:47:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:13.141109Z","gw_timestamp":1382474955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU4MTAxMjEzMDA0NjWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1236, '2016-08-10 16:48:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:27.506091Z","gw_timestamp":1396837875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU1MzAxMjEzMDA0NjWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1238, '2016-08-10 16:48:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:41.875442Z","gw_timestamp":1411201211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU0MjAxMjEzMDA0NjWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1240, '2016-08-10 16:48:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:56.23563Z","gw_timestamp":1425563923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDUzNTAxMjEzMDA0NjWy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1219, '2016-08-10 16:46:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:57:18.24471Z","gw_timestamp":1267567531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVwwMDU0NDAxMjEzMDA0Njaymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1239, '2016-08-10 16:48:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T16:59:49.075795Z","gw_timestamp":1418382203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU0NzAxMjEzMDA0NjWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1241, '2016-08-10 16:48:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:03.412278Z","gw_timestamp":1432745755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDUzNTAxMjEzMDA0NjWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1243, '2016-08-10 16:48:51', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":786,"f_cnt_down":1475,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:48:49.905407Z","gw_timestamp":186188388,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ae0wMDYzMzAxMjI3MDA0MzQHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1245, '2016-08-10 16:49:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:17.77965Z","gw_timestamp":1447108571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU4MzAxMjEzMDA0NjWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1247, '2016-08-10 16:49:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:32.137899Z","gw_timestamp":1461472219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU2MDAxMjEzMDA0NjWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1253, '2016-08-10 16:50:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:15.229633Z","gw_timestamp":1504562227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU0NzAxMjEzMDA0NjSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1255, '2016-08-10 16:50:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:29.60247Z","gw_timestamp":1518925043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU4MTAxMjEzMDA0NjSx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1257, '2016-08-10 16:50:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:36.773526Z","gw_timestamp":1526106763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU2OTAxMjEzMDA0NjSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1259, '2016-08-10 16:50:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:58.317773Z","gw_timestamp":1547652339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU4ODAxMjEzMDA0NjSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1261, '2016-08-10 16:50:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:12.683652Z","gw_timestamp":1562014947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDUzNTAxMjEzMDA0NjSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1263, '2016-08-10 16:51:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:27.047037Z","gw_timestamp":1576377763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU3NDAxMjEzMDA0NjSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1265, '2016-08-10 16:51:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:41.404257Z","gw_timestamp":1590741523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3NjAxMjEzMDA0NjSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1267, '2016-08-10 16:51:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:55.783962Z","gw_timestamp":1605105059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU0NzAxMjEzMDA0NjSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1242, '2016-08-10 16:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:00:10.593901Z","gw_timestamp":1439926747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0NDAxMjEzMDA0NjWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1256, '2016-08-10 16:50:16', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":780,"f_cnt_down":1430,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:01.480025Z","gw_timestamp":3197804708,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AxwwMDU1MzAxMjQwMDA0MjULgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1258, '2016-08-10 16:50:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:51.141776Z","gw_timestamp":1540470619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzODAxMjEzMDA0NjSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1260, '2016-08-10 16:50:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:05.505025Z","gw_timestamp":1554833755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0NDAxMjEzMDA0NjSvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1262, '2016-08-10 16:51:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:19.860277Z","gw_timestamp":1569195939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1ODAxMjEzMDA0NjSxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1264, '2016-08-10 16:51:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:34.222655Z","gw_timestamp":1583559691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2OTAxMjEzMDA0NjSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1266, '2016-08-10 16:51:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:02:48.59628Z","gw_timestamp":1597923339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0NDAxMjEzMDA0NjSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1268, '2016-08-10 16:51:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:02.955174Z","gw_timestamp":1612286995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1ODAxMjEzMDA0NjSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1270, '2016-08-10 16:52:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:17.317465Z","gw_timestamp":1626650747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUxMzAxMjEzMDA0NjSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1272, '2016-08-10 16:52:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:31.691139Z","gw_timestamp":1641013251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU2MDAxMjEzMDA0NjSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1274, '2016-08-10 16:52:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:46.060181Z","gw_timestamp":1655375963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1ODAxMjE0MDA0NjSxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1276, '2016-08-10 16:52:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:00.406148Z","gw_timestamp":1669738675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1NjAxMjEzMDA0NjSxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1278, '2016-08-10 16:52:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:14.766485Z","gw_timestamp":1684101387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUzODAxMjE0MDA0NjSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1280, '2016-08-10 16:53:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:29.135767Z","gw_timestamp":1698464203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1NjAxMjE0MDA0NjSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1251, '2016-08-10 16:49:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:01:00.871399Z","gw_timestamp":1490198579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU1ODAxMjEzMDA0NjSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1297, '2016-08-10 16:55:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:31.21995Z","gw_timestamp":1820554603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU4MTAxMjE0MDA0NjOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1299, '2016-08-10 16:55:16', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1264,"f_cnt_down":2066,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:55:14.25464Z","gw_timestamp":570537812,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ATIwMDYxNTAxMjI4MDA0MzIMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1301, '2016-08-10 16:55:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:45.596632Z","gw_timestamp":1834917307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUwOTAxMjE0MDA0NjOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1303, '2016-08-10 16:55:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:59.947046Z","gw_timestamp":1849280963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUzODAxMjE0MDA0NjOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1269, '2016-08-10 16:51:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:10.140776Z","gw_timestamp":1619468923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU5NDAxMjE0MDA0NjSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1271, '2016-08-10 16:52:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:24.504136Z","gw_timestamp":1633832259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1MTAxMjE0MDA0NjSvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1273, '2016-08-10 16:52:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:38.866275Z","gw_timestamp":1648194243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU4MzAxMjE0MDA0NjSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1275, '2016-08-10 16:52:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:03:53.237016Z","gw_timestamp":1662556955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUzODAxMjE0MDA0NjSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1277, '2016-08-10 16:52:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:07.586993Z","gw_timestamp":1676919667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0NDAxMjE0MDA0NjSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1279, '2016-08-10 16:53:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:21.951243Z","gw_timestamp":1691282379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzMjAxMjE0MDA0NjSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1281, '2016-08-10 16:53:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:36.314565Z","gw_timestamp":1705646027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0MjAxMjE0MDA0NjSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1283, '2016-08-10 16:53:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:50.674658Z","gw_timestamp":1720009579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUzNjAxMjE0MDA0NjSyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1285, '2016-08-10 16:53:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:05.035891Z","gw_timestamp":1734372387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU1ODAxMjE0MDA0NjSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1287, '2016-08-10 16:54:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:19.408419Z","gw_timestamp":1748736139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU2MzAxMjE0MDA0NjSvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1289, '2016-08-10 16:54:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:33.769411Z","gw_timestamp":1763099683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0ODAxMjE0MDA0NjSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1291, '2016-08-10 16:54:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:05:55.310287Z","gw_timestamp":1784645267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU0ODAxMjE0MDA0NjOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1293, '2016-08-10 16:54:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:09.680529Z","gw_timestamp":1799009019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1NjAxMjE0MDA0NjOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1295, '2016-08-10 16:55:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:16.849169Z","gw_timestamp":1806190739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3NjAxMjE0MDA0NjOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1282, '2016-08-10 16:53:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:04:43.490024Z","gw_timestamp":1712827955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1ODAxMjE0MDA0NjSvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1300, '2016-08-10 16:55:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:38.415546Z","gw_timestamp":1827736323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2MzAxMjE0MDA0NjOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1302, '2016-08-10 16:55:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:06:52.780556Z","gw_timestamp":1842099131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1NDAxMjE0MDA0NjOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1298, '2016-08-10 16:55:16', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1263,"f_cnt_down":2065,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:05.021562Z","gw_timestamp":3501346244,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-12.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ATIwMDYxNTAxMjI4MDA0MzIMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1304, '2016-08-10 16:55:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:07.122921Z","gw_timestamp":1856462683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2NTAxMjE0MDA0NjOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1305, '2016-08-10 16:55:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:14.317419Z","gw_timestamp":1863644611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzMjAxMjE0MDA0NjOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1306, '2016-08-10 16:56:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:21.483857Z","gw_timestamp":1870826019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU2NTAxMjE0MDA0NjOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1307, '2016-08-10 16:56:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:28.683646Z","gw_timestamp":1878007323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUyMjAxMjE0MDA0NjOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1308, '2016-08-10 16:56:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:35.85267Z","gw_timestamp":1885189043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU3NDAxMjE0MDA0NjOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1309, '2016-08-10 16:56:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:43.030936Z","gw_timestamp":1892370867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU3NjAxMjE0MDA0NjOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1310, '2016-08-10 16:56:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:50.212414Z","gw_timestamp":1899552803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUyMDAxMjE0MDA0NjOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1311, '2016-08-10 16:56:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:07:57.395035Z","gw_timestamp":1906734619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUzODAxMjE0MDA0NjOuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1312, '2016-08-10 16:56:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:04.59295Z","gw_timestamp":1913916555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU4MzAxMjE0MDA0NjOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1313, '2016-08-10 16:56:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:11.756287Z","gw_timestamp":1921098379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1MDAxMjE0MDA0NjKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1314, '2016-08-10 16:57:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:18.946917Z","gw_timestamp":1928280203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1OTAxMjE0MDA0NjKvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1315, '2016-08-10 16:57:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:26.129539Z","gw_timestamp":1935462131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUzNjAxMjE0MDA0NjKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1316, '2016-08-10 16:57:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:33.31416Z","gw_timestamp":1942643955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1MDAxMjE0MDA0NjKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1317, '2016-08-10 16:57:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:40.485059Z","gw_timestamp":1949825883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2NzAxMjE0MDA0NjKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1321, '2016-08-10 16:57:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:09.223543Z","gw_timestamp":1978553187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUyOTAxMjE0MDA0NjKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1323, '2016-08-10 16:58:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:23.58367Z","gw_timestamp":1992916731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1NjAxMjE0MDA0NjKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1325, '2016-08-10 16:58:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:37.944918Z","gw_timestamp":2007280587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1NjAxMjE0MDA0NjKxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1327, '2016-08-10 16:58:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:52.324641Z","gw_timestamp":2021644235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUxODAxMjE0MDA0NjKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1329, '2016-08-10 16:58:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:06.670416Z","gw_timestamp":2036006843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1MjAxMjE0MDA0NjKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1331, '2016-08-10 16:59:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:21.035746Z","gw_timestamp":2050370595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUwMTAxMjE0MDA0NjKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1333, '2016-08-10 16:59:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:28.210304Z","gw_timestamp":2057552323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3MjAxMjE0MDA0NjKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1335, '2016-08-10 16:59:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:42.589263Z","gw_timestamp":2071916179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUzMjAxMjE0MDA0NjKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1337, '2016-08-10 16:59:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:56.941636Z","gw_timestamp":2086279827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1NjAxMjE0MDA0NjKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1339, '2016-08-10 16:59:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:11.302391Z","gw_timestamp":2100643579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU3NDAxMjE0MDA0NjKvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1341, '2016-08-10 17:00:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:25.665357Z","gw_timestamp":2115007227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDUzNDAxMjE0MDA0NjKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1371, '2016-08-10 17:03:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:08.308934Z","gw_timestamp":2337641307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1MDAxMjE0MDA0NjGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1373, '2016-08-10 17:04:02', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":787,"f_cnt_down":1477,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:04:00.669103Z","gw_timestamp":1096952532,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ASswMDYxMTAxMjI2MDA0NjYJ4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1318, '2016-08-10 16:57:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:47.671418Z","gw_timestamp":1957007603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1NDAxMjE0MDA0NjKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1362, '2016-08-10 17:02:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:03.673294Z","gw_timestamp":2273005819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU0NTAxMjE0MDA0NjGyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1364, '2016-08-10 17:03:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:18.027553Z","gw_timestamp":2287369459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU5NzAxMjE0MDA0NjGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1366, '2016-08-10 17:03:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:32.395805Z","gw_timestamp":2301733219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU0ODAxMjE0MDA0NjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1368, '2016-08-10 17:03:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:46.75705Z","gw_timestamp":2316096867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU5MjAxMjE0MDA0NjGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1370, '2016-08-10 17:03:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:01.132828Z","gw_timestamp":2330459579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU0NTAxMjE0MDA0NjGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1372, '2016-08-10 17:04:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:15.506786Z","gw_timestamp":2344822707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1NDAxMjE0MDA0NjGuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1374, '2016-08-10 17:04:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:22.671192Z","gw_timestamp":2352004115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU5NzAxMjE0MDA0NjGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1376, '2016-08-10 17:04:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:37.02443Z","gw_timestamp":2366367875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU3MDAxMjE1MDA0NjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1378, '2016-08-10 17:04:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:51.387678Z","gw_timestamp":2380731523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU3NjAxMjE1MDA0NjGumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1380, '2016-08-10 17:04:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:12.933686Z","gw_timestamp":2402277107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU1MjAxMjE1MDA0NjCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1382, '2016-08-10 17:05:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:27.301925Z","gw_timestamp":2416640755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1MjAxMjE1MDA0NjCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1384, '2016-08-10 17:05:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:41.660315Z","gw_timestamp":2431004403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDUzOTAxMjE1MDA0NjCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1386, '2016-08-10 17:05:27', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":782,"f_cnt_down":1432,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:05:21.548615Z","gw_timestamp":1177832084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHMwMDUyNDAxMjM5MDA0MjkOoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1319, '2016-08-10 16:57:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:08:54.855042Z","gw_timestamp":1964189427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0NTAxMjE0MDA0NjKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1343, '2016-08-10 17:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:40.036678Z","gw_timestamp":2129370779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU0ODAxMjE0MDA0NjKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1345, '2016-08-10 17:00:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:01.582545Z","gw_timestamp":2150916459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDUyNTAxMjE0MDA0NjKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1347, '2016-08-10 17:01:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:15.935921Z","gw_timestamp":2165280211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU3MDAxMjE0MDA0NjKyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1349, '2016-08-10 17:01:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:30.313046Z","gw_timestamp":2179643859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2NzAxMjE0MDA0NjKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1351, '2016-08-10 17:01:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:44.666297Z","gw_timestamp":2194006475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1NDAxMjE0MDA0NjKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1353, '2016-08-10 17:01:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:59.03855Z","gw_timestamp":2208370219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU2NzAxMjE0MDA0NjKxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1355, '2016-08-10 17:01:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:13.39502Z","gw_timestamp":2222733771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU0NTAxMjE0MDA0NjKvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1357, '2016-08-10 17:02:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:27.774413Z","gw_timestamp":2237097627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0ODAxMjE0MDA0NjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1359, '2016-08-10 17:02:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:42.122303Z","gw_timestamp":2251461179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU1NDAxMjE0MDA0NjGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1361, '2016-08-10 17:02:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:56.489788Z","gw_timestamp":2265824091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUxNjAxMjE0MDA0NjGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1363, '2016-08-10 17:02:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:10.847933Z","gw_timestamp":2280187531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDUzMDAxMjE0MDA0NjGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1365, '2016-08-10 17:03:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:25.240431Z","gw_timestamp":2294551395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU2MzAxMjE0MDA0NjGyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1367, '2016-08-10 17:03:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:39.570425Z","gw_timestamp":2308915147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU0NTAxMjE0MDA0NjGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1320, '2016-08-10 16:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:02.04179Z","gw_timestamp":1971371363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzNDAxMjE0MDA0NjKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1322, '2016-08-10 16:58:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:16.394382Z","gw_timestamp":1985734907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU3OTAxMjE0MDA0NjKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1324, '2016-08-10 16:58:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:30.75629Z","gw_timestamp":2000098659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0NTAxMjE0MDA0NjKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1326, '2016-08-10 16:58:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:45.123924Z","gw_timestamp":2014462307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU2NTAxMjE0MDA0NjKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1328, '2016-08-10 16:58:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:09:59.486802Z","gw_timestamp":2028825747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU4ODAxMjE0MDA0NjKyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1330, '2016-08-10 16:59:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:13.862041Z","gw_timestamp":2043188667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUyODAxMjE0MDA0NjKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1332, '2016-08-10 16:59:07', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":701,"f_cnt_down":1280,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T16:58:59.172571Z","gw_timestamp":795455852,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDU2MTAxMjIwMDA0ODQNAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1334, '2016-08-10 16:59:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:35.392927Z","gw_timestamp":2064734251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU0MzAxMjE0MDA0NjKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1336, '2016-08-10 16:59:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:10:49.758171Z","gw_timestamp":2079097899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU2NzAxMjE0MDA0NjKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1338, '2016-08-10 16:59:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:04.120426Z","gw_timestamp":2093461651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzNjAxMjE0MDA0NjKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1340, '2016-08-10 17:00:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:18.494797Z","gw_timestamp":2107825611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1MDAxMjE0MDA0NjKy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1342, '2016-08-10 17:00:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:32.856127Z","gw_timestamp":2122188955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2MzAxMjE0MDA0NjKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1344, '2016-08-10 17:00:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:11:47.217553Z","gw_timestamp":2136552699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1MjAxMjE0MDA0NjKzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1346, '2016-08-10 17:00:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:08.756305Z","gw_timestamp":2158098283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3MDAxMjE0MDA0NjKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1348, '2016-08-10 17:01:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:23.121987Z","gw_timestamp":2172462035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDUyODAxMjE0MDA0NjKzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1350, '2016-08-10 17:01:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:37.49167Z","gw_timestamp":2186825475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUzMDAxMjE0MDA0NjKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1352, '2016-08-10 17:01:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:12:51.853051Z","gw_timestamp":2201188403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3NjAxMjE0MDA0NjKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1354, '2016-08-10 17:01:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:06.22332Z","gw_timestamp":2215552051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU4ODAxMjE0MDA0NjKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1356, '2016-08-10 17:02:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:20.581418Z","gw_timestamp":2229915699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzNDAxMjE0MDA0NjGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1358, '2016-08-10 17:02:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:34.939908Z","gw_timestamp":2244279451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU1OTAxMjE0MDA0NjGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1360, '2016-08-10 17:02:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:49.298053Z","gw_timestamp":2258642171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDUzOTAxMjE0MDA0NjGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1390, '2016-08-10 17:05:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:10.393674Z","gw_timestamp":2459731699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU3NjAxMjE1MDA0NjCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1392, '2016-08-10 17:06:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:24.749933Z","gw_timestamp":2474095563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDUzMDAxMjE1MDA0NjCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1394, '2016-08-10 17:06:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:39.121183Z","gw_timestamp":2488459211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1NjAxMjE1MDA0NjCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1396, '2016-08-10 17:06:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:53.49963Z","gw_timestamp":2502822651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU0MTAxMjE1MDA0NjCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1398, '2016-08-10 17:07:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:15.028305Z","gw_timestamp":2524367395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU2NzAxMjE1MDA0NjCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1400, '2016-08-10 17:07:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:29.418697Z","gw_timestamp":2538731051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU5NzAxMjE1MDA0NjCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1402, '2016-08-10 17:07:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:43.781417Z","gw_timestamp":2553094803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU1MjAxMjE1MDA0NjCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1369, '2016-08-10 17:03:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:53.94492Z","gw_timestamp":2323277859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU1MjAxMjE0MDA0NjGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1375, '2016-08-10 17:04:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:29.842053Z","gw_timestamp":2359185947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU4NTAxMjE0MDA0NjGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1377, '2016-08-10 17:04:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:44.215053Z","gw_timestamp":2373549699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU2NzAxMjE1MDA0NjGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1379, '2016-08-10 17:04:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:05.763419Z","gw_timestamp":2395095171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVswMDU0ODAxMjE1MDA0NjCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1381, '2016-08-10 17:05:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:20.123437Z","gw_timestamp":2409458827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU5OTAxMjE1MDA0NjCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1385, '2016-08-10 17:05:23', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":781,"f_cnt_down":1431,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:12.315561Z","gw_timestamp":4108640244,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHMwMDUyNDAxMjM5MDA0MjkOoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1387, '2016-08-10 17:05:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:48.843822Z","gw_timestamp":2438186227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1OTAxMjE1MDA0NjCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1389, '2016-08-10 17:05:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:03.214295Z","gw_timestamp":2452549875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU1NDAxMjE1MDA0NjCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1391, '2016-08-10 17:06:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:17.594654Z","gw_timestamp":2466913635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDUzNjAxMjE1MDA0NjCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1393, '2016-08-10 17:06:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:31.944077Z","gw_timestamp":2481277387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVcwMDU1OTAxMjE1MDA0NjCu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1423, '2016-08-10 17:10:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:21.769129Z","gw_timestamp":2711092451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU1MjAxMjE1MDA0NTmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1425, '2016-08-10 17:10:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:36.116461Z","gw_timestamp":2725456099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUzOTAxMjE1MDA0NTmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1427, '2016-08-10 17:10:30', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1264,"f_cnt_down":2067,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:10:25.072762Z","gw_timestamp":1481356380,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AM0wMDYyMDAxMjI4MDA0MzQJgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1429, '2016-08-10 17:10:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:57.676822Z","gw_timestamp":2747000643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0NTAxMjE1MDA0NTmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1383, '2016-08-10 17:05:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:34.48856Z","gw_timestamp":2423822475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVowMDU0NTAxMjE1MDA0NjCymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1395, '2016-08-10 17:06:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:46.299818Z","gw_timestamp":2495641035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU0NTAxMjE1MDA0NjCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1397, '2016-08-10 17:06:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:07.851675Z","gw_timestamp":2517185571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDU1NjAxMjE1MDA0NjCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1399, '2016-08-10 17:07:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:22.214935Z","gw_timestamp":2531549219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVkwMDUzNjAxMjE1MDA0NjCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1401, '2016-08-10 17:07:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:36.57831Z","gw_timestamp":2545912867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU5MDAxMjE1MDA0NjCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1403, '2016-08-10 17:07:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:50.932568Z","gw_timestamp":2560276627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU3MjAxMjE1MDA0NjCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1405, '2016-08-10 17:07:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:05.304811Z","gw_timestamp":2574640387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0ODAxMjE1MDA0NTmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1407, '2016-08-10 17:08:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:19.661068Z","gw_timestamp":2589002995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU3OTAxMjE1MDA0NTmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1409, '2016-08-10 17:08:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:34.053841Z","gw_timestamp":2603366747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0NTAxMjE1MDA0NTmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1411, '2016-08-10 17:08:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:48.385566Z","gw_timestamp":2617730395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU3MjAxMjE1MDA0NTmuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1413, '2016-08-10 17:08:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:09.930445Z","gw_timestamp":2639275035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzMDAxMjE1MDA0NTmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1415, '2016-08-10 17:09:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:24.292998Z","gw_timestamp":2653638683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0MTAxMjE1MDA0NTmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1417, '2016-08-10 17:09:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:38.654947Z","gw_timestamp":2668002339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUxNDAxMjE1MDA0NTmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1419, '2016-08-10 17:09:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:53.019327Z","gw_timestamp":2682365043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUzNjAxMjE1MDA0NTmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1388, '2016-08-10 17:05:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:56.045402Z","gw_timestamp":2445368051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVgwMDU1MjAxMjE1MDA0NjCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1406, '2016-08-10 17:07:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:12.483443Z","gw_timestamp":2581821475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1OTAxMjE1MDA0NTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1408, '2016-08-10 17:08:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:26.847691Z","gw_timestamp":2596184923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1MjAxMjE1MDA0NTmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1410, '2016-08-10 17:08:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:41.210943Z","gw_timestamp":2610548563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0MTAxMjE1MDA0NTmyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1412, '2016-08-10 17:08:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:55.572198Z","gw_timestamp":2624912323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU1OTAxMjE1MDA0NTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1436, '2016-08-10 17:11:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:55.117951Z","gw_timestamp":2804453475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2NzAxMjE1MDA0NTmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1444, '2016-08-10 17:12:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:52.561086Z","gw_timestamp":2861906195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0MzAxMjE1MDA0NTmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1446, '2016-08-10 17:12:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:06.928329Z","gw_timestamp":2876269851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU2NTAxMjE1MDA0NTmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1448, '2016-08-10 17:13:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:21.293576Z","gw_timestamp":2890633595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU2MTAxMjE1MDA0NTixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1450, '2016-08-10 17:13:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:35.65383Z","gw_timestamp":2904996211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU2MzAxMjE1MDA0NTiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1452, '2016-08-10 17:13:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:27.388233Z","gw_timestamp":2919359859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU3NDAxMjE1MDA0NTixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1454, '2016-08-10 17:13:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:41.780563Z","gw_timestamp":2933723507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU0MzAxMjE1MDA0NTivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1456, '2016-08-10 17:14:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:56.115189Z","gw_timestamp":2948086219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzNDAxMjE1MDA0NTixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1458, '2016-08-10 17:14:11', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":702,"f_cnt_down":1281,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:55:00.707609Z","gw_timestamp":342064996,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-120,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC8wMDYwNTAxMjIzMDA0OTAH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1404, '2016-08-10 17:07:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:58.121195Z","gw_timestamp":2567458451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1MDAxMjE1MDA0NTmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1414, '2016-08-10 17:09:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:17.110341Z","gw_timestamp":2646456867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUxNDAxMjE1MDA0NTmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1416, '2016-08-10 17:09:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:31.482595Z","gw_timestamp":2660820403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUzNDAxMjE1MDA0NTmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1418, '2016-08-10 17:09:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:45.841942Z","gw_timestamp":2675184059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzNDAxMjE1MDA0NTmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1420, '2016-08-10 17:09:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:00.201335Z","gw_timestamp":2689546771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3MjAxMjE1MDA0NTmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1422, '2016-08-10 17:10:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:14.566188Z","gw_timestamp":2703910627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU5MjAxMjE1MDA0NTmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1424, '2016-08-10 17:10:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:28.930576Z","gw_timestamp":2718274275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzNDAxMjE1MDA0NTmtyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1426, '2016-08-10 17:10:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:43.296699Z","gw_timestamp":2732637931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzMDAxMjE1MDA0NTmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1428, '2016-08-10 17:10:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:50.482322Z","gw_timestamp":2739819019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU0NTAxMjE1MDA0NTmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1430, '2016-08-10 17:10:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:04.83358Z","gw_timestamp":2754182363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1NjAxMjE1MDA0NTmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1432, '2016-08-10 17:11:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:19.200831Z","gw_timestamp":2768545075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU5MDAxMjE1MDA0NTmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1434, '2016-08-10 17:11:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:40.746689Z","gw_timestamp":2790089611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1NjAxMjE1MDA0NTmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1438, '2016-08-10 17:11:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:09.472206Z","gw_timestamp":2818817227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUxNDAxMjE1MDA0NTmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1440, '2016-08-10 17:12:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:23.850846Z","gw_timestamp":2833180667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2NTAxMjE1MDA0NTmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1421, '2016-08-10 17:09:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:07.388579Z","gw_timestamp":2696728595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDYyMjAxMjE1MDA0NTmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1431, '2016-08-10 17:10:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:12.050467Z","gw_timestamp":2761363347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2NTAxMjE1MDA0NTmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1433, '2016-08-10 17:11:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:33.570356Z","gw_timestamp":2782907891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU4MTAxMjE1MDA0NTmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1435, '2016-08-10 17:11:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:47.934538Z","gw_timestamp":2797271539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1NDAxMjE1MDA0NTmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1437, '2016-08-10 17:11:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:02.313913Z","gw_timestamp":2811635299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1NjAxMjE1MDA0NTmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1439, '2016-08-10 17:12:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:16.661081Z","gw_timestamp":2825998947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzMDAxMjE1MDA0NTmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1441, '2016-08-10 17:12:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:31.02346Z","gw_timestamp":2840361651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU2NzAxMjE1MDA0NTmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1443, '2016-08-10 17:12:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:45.385462Z","gw_timestamp":2854725203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1NjAxMjE1MDA0NTmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1445, '2016-08-10 17:12:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:59.750704Z","gw_timestamp":2869088123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU4MTAxMjE1MDA0NTmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1447, '2016-08-10 17:12:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:14.115931Z","gw_timestamp":2883451667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUzNjAxMjE1MDA0NTmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1449, '2016-08-10 17:13:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:28.466202Z","gw_timestamp":2897814907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzMDAxMjE1MDA0NTiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1451, '2016-08-10 17:13:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:20.216601Z","gw_timestamp":2912178035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU0MTAxMjE1MDA0NTivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1453, '2016-08-10 17:13:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:34.579854Z","gw_timestamp":2926541787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2MTAxMjE1MDA0NTiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1455, '2016-08-10 17:13:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:13:48.937108Z","gw_timestamp":2940904499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0ODAxMjE1MDA0NTiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1442, '2016-08-10 17:12:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:38.196832Z","gw_timestamp":2847543483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU1MDAxMjE1MDA0NTmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1462, '2016-08-10 17:14:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:24.846352Z","gw_timestamp":2976813003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU4MTAxMjE1MDA0NTixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1464, '2016-08-10 17:14:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:39.211561Z","gw_timestamp":2991176443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1MDAxMjE1MDA0NTixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1466, '2016-08-10 17:15:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:00.753496Z","gw_timestamp":3012721915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzMjAxMjE1MDA0NTiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1468, '2016-08-10 17:15:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:15.121739Z","gw_timestamp":3027084531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0MzAxMjE1MDA0NTixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1470, '2016-08-10 17:15:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:29.482993Z","gw_timestamp":3041448387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUyNTAxMjE1MDA0NTiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1472, '2016-08-10 17:15:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:43.844234Z","gw_timestamp":3055811627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUzNjAxMjE1MDA0NTewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1474, '2016-08-10 17:16:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:58.211489Z","gw_timestamp":3070174651,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1OTAxMjE2MDA0NTevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1457, '2016-08-10 17:14:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:03.299562Z","gw_timestamp":2955268155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUxNDAxMjE1MDA0NTiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1459, '2016-08-10 17:14:11', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":703,"f_cnt_down":1282,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:14:09.940634Z","gw_timestamp":1706224364,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC8wMDYwNTAxMjIzMDA0OTAH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1461, '2016-08-10 17:14:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:17.667604Z","gw_timestamp":2969631803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU0NTAxMjE1MDA0NTixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1463, '2016-08-10 17:14:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:32.031831Z","gw_timestamp":2983994515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUxMjAxMjE1MDA0NTixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1465, '2016-08-10 17:15:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:53.58088Z","gw_timestamp":3005540099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDYwMDAxMjE1MDA0NTixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1467, '2016-08-10 17:15:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:07.955876Z","gw_timestamp":3019902915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2NzAxMjE1MDA0NTiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1469, '2016-08-10 17:15:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:22.316578Z","gw_timestamp":3034266459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU3NDAxMjE1MDA0NTiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1471, '2016-08-10 17:15:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:36.657618Z","gw_timestamp":3048630211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU0MTAxMjE1MDA0NTixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1473, '2016-08-10 17:15:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:15:51.025861Z","gw_timestamp":3062992819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1MDAxMjE1MDA0NTexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1475, '2016-08-10 17:16:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:05.383114Z","gw_timestamp":3077356579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUyNTAxMjE1MDA0NTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1460, '2016-08-10 17:14:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:14:10.479991Z","gw_timestamp":2962450083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU2NTAxMjE1MDA0NTixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1476, '2016-08-10 17:16:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:12.570869Z","gw_timestamp":3084538403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1MDAxMjE1MDA0NTewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1478, '2016-08-10 17:16:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:26.940981Z","gw_timestamp":3098902051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU2MTAxMjE1MDA0NTew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1480, '2016-08-10 17:16:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:41.298368Z","gw_timestamp":3113265803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU3NjAxMjE2MDA0NTevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1482, '2016-08-10 17:17:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:55.682378Z","gw_timestamp":3127629459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUyODAxMjE2MDA0NTewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1484, '2016-08-10 17:17:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:10.019877Z","gw_timestamp":3141992163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1MDAxMjE2MDA0NTexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1486, '2016-08-10 17:17:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:24.394105Z","gw_timestamp":3156355923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1MjAxMjE2MDA0NTewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1488, '2016-08-10 17:17:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:38.75337Z","gw_timestamp":3170719467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU4MzAxMjE2MDA0NTixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1477, '2016-08-10 17:16:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:19.775528Z","gw_timestamp":3091720227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzMDAxMjE2MDA0NTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1479, '2016-08-10 17:16:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:34.116747Z","gw_timestamp":3106083979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzOTAxMjE1MDA0NTix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1481, '2016-08-10 17:16:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:16:48.479996Z","gw_timestamp":3120447523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU5MzAxMjE2MDA0NTexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1483, '2016-08-10 17:17:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:02.84374Z","gw_timestamp":3134810971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUzMDAxMjE2MDA0NTexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1485, '2016-08-10 17:17:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:17.209493Z","gw_timestamp":3149173995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0MTAxMjE2MDA0NTevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1487, '2016-08-10 17:17:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:31.572869Z","gw_timestamp":3163537747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU2MzAxMjE2MDA0NTewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1489, '2016-08-10 17:17:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:45.968128Z","gw_timestamp":3177900459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0ODAxMjE2MDA0NTev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1490, '2016-08-10 17:18:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:17:53.112623Z","gw_timestamp":3185082283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzMDAxMjE2MDA0NTexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1491, '2016-08-10 17:18:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:00.311492Z","gw_timestamp":3192264211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUyMTAxMjE2MDA0NTiuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1492, '2016-08-10 17:18:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:07.479871Z","gw_timestamp":3199445939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU0ODAxMjE2MDA0NTexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1493, '2016-08-10 17:18:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:14.66268Z","gw_timestamp":3206627651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDU1MDAxMjE2MDA0NTexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1494, '2016-08-10 17:18:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:21.859373Z","gw_timestamp":3213809483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVYwMDU2NzAxMjE2MDA0NTixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1495, '2016-08-10 17:18:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:29.020873Z","gw_timestamp":3220991411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVUwMDUyNTAxMjE2MDA0NTixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1496, '2016-08-10 17:18:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:36.201372Z","gw_timestamp":3228173339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2NzAxMjE2MDA0NTiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1497, '2016-08-10 17:18:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:43.39393Z","gw_timestamp":3235355171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2NzAxMjE2MDA0NTiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1501, '2016-08-10 17:19:14', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":788,"f_cnt_down":1478,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:19:11.444495Z","gw_timestamp":2007728372,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AcEwMDYwNzAxMjI3MDA0NzkIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1503, '2016-08-10 17:19:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:19.293244Z","gw_timestamp":3271263459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU4MTAxMjE2MDA0NTeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1505, '2016-08-10 17:19:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:33.659757Z","gw_timestamp":3285626171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU1OTAxMjE2MDA0NTexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1507, '2016-08-10 17:19:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:48.040025Z","gw_timestamp":3299988883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU3NDAxMjE2MDA0NTeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1509, '2016-08-10 17:20:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:02.389005Z","gw_timestamp":3314352427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU1MjAxMjE2MDA0NTevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1511, '2016-08-10 17:20:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:16.748246Z","gw_timestamp":3328716083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDUyMTAxMjE2MDA0NTevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1513, '2016-08-10 17:20:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:31.108502Z","gw_timestamp":3343079835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU2MTAxMjE2MDA0NTex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1529, '2016-08-10 17:22:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:18.831999Z","gw_timestamp":3450805027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU1OTAxMjE2MDA0NTex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1531, '2016-08-10 17:22:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:33.195195Z","gw_timestamp":3465168155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0MzAxMjE2MDA0NTexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1547, '2016-08-10 17:24:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:28.105375Z","gw_timestamp":3580075795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1NDAxMjE2MDA0NTexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1549, '2016-08-10 17:24:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:42.470639Z","gw_timestamp":3594439339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU0MTAxMjE2MDA0NTeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1551, '2016-08-10 17:25:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:04.017701Z","gw_timestamp":3615983051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0MTAxMjE2MDA0NTexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1553, '2016-08-10 17:25:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:18.380773Z","gw_timestamp":3630346699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU2NjAxMjE2MDA0NTavmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1498, '2016-08-10 17:18:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:50.606266Z","gw_timestamp":3242536995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU3OTAxMjE2MDA0NTixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1526, '2016-08-10 17:22:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:57.289078Z","gw_timestamp":3429261011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUyMzAxMjE2MDA0NTewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1528, '2016-08-10 17:22:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:11.657381Z","gw_timestamp":3443623723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0MTAxMjE2MDA0NTevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1530, '2016-08-10 17:22:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:26.02363Z","gw_timestamp":3457986331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUzMjAxMjE2MDA0NTevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1532, '2016-08-10 17:22:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:40.38573Z","gw_timestamp":3472350083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1MjAxMjE2MDA0NTeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1534, '2016-08-10 17:23:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:54.737508Z","gw_timestamp":3486713731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0MzAxMjE2MDA0NTewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1536, '2016-08-10 17:23:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:09.101392Z","gw_timestamp":3501077491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU1OTAxMjE2MDA0NTeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1538, '2016-08-10 17:23:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:23.472622Z","gw_timestamp":3515441043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU4MTAxMjE2MDA0NTex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1540, '2016-08-10 17:23:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:37.827144Z","gw_timestamp":3529803443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDUyNTAxMjE2MDA0NTevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1542, '2016-08-10 17:23:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:52.19413Z","gw_timestamp":3544166571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU3NDAxMjE2MDA0NTexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1544, '2016-08-10 17:24:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:06.577509Z","gw_timestamp":3558530115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1NjAxMjE2MDA0NTexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1546, '2016-08-10 17:24:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:20.945991Z","gw_timestamp":3572893867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDYwNDAxMjE2MDA0NTexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1548, '2016-08-10 17:24:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:35.284994Z","gw_timestamp":3587257627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1MjAxMjE2MDA0NTewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1550, '2016-08-10 17:25:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:49.66698Z","gw_timestamp":3601620331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU0NTAxMjE2MDA0NTexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1499, '2016-08-10 17:19:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:18:57.750115Z","gw_timestamp":3249717987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0MTAxMjE2MDA0NTiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1515, '2016-08-10 17:20:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:38.290373Z","gw_timestamp":3350261763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDU2NTAxMjE2MDA0NTev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1517, '2016-08-10 17:21:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:52.659378Z","gw_timestamp":3364625419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU0ODAxMjE2MDA0NTexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1519, '2016-08-10 17:21:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:07.022633Z","gw_timestamp":3378988019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU1NDAxMjE2MDA0NTexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1521, '2016-08-10 17:21:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:21.381647Z","gw_timestamp":3393351779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU5MzAxMjE2MDA0NTexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1523, '2016-08-10 17:21:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:35.750767Z","gw_timestamp":3407715427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU1NDAxMjE2MDA0NTexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1525, '2016-08-10 17:21:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:50.113495Z","gw_timestamp":3422079291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzNjAxMjE2MDA0NTey+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1527, '2016-08-10 17:22:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:04.486267Z","gw_timestamp":3436442731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU3NDAxMjE2MDA0NTexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1533, '2016-08-10 17:22:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:22:47.562496Z","gw_timestamp":3479531811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU5NzAxMjE2MDA0NTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1535, '2016-08-10 17:23:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:01.925742Z","gw_timestamp":3493895667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDUzNDAxMjE2MDA0NTew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1537, '2016-08-10 17:23:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:16.290472Z","gw_timestamp":3508259315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUzOTAxMjE2MDA0NTewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1539, '2016-08-10 17:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:30.658644Z","gw_timestamp":3522622027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU4MzAxMjE2MDA0NTeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1541, '2016-08-10 17:23:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:45.016515Z","gw_timestamp":3536984635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU0NTAxMjE2MDA0NTexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1543, '2016-08-10 17:24:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:23:59.382762Z","gw_timestamp":3551348395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU0NTAxMjE2MDA0NTeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1500, '2016-08-10 17:19:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:04.932121Z","gw_timestamp":3256899707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDUzNjAxMjE2MDA0NTiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1502, '2016-08-10 17:19:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:12.134062Z","gw_timestamp":3264081531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU0ODAxMjE2MDA0NTewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1504, '2016-08-10 17:19:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:26.476395Z","gw_timestamp":3278445179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVEwMDU1OTAxMjE2MDA0NTexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1506, '2016-08-10 17:19:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:40.838124Z","gw_timestamp":3292807475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU1MjAxMjE2MDA0NTex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1508, '2016-08-10 17:20:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:19:55.195382Z","gw_timestamp":3307170499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVQwMDUzOTAxMjE2MDA0NTev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1510, '2016-08-10 17:20:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:09.560747Z","gw_timestamp":3321534363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0NTAxMjE2MDA0NTewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1512, '2016-08-10 17:20:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:23.938146Z","gw_timestamp":3335897907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0MTAxMjE2MDA0NTew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1514, '2016-08-10 17:20:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":782,"f_cnt_down":1433,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:20:32.384207Z","gw_timestamp":2088668124,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:01:23.151202Z","gw_timestamp":724508588,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApMwMDU0ODAxMjM4MDA0MzILkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1516, '2016-08-10 17:20:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:45.475752Z","gw_timestamp":3357443483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVMwMDU0NTAxMjE2MDA0NTeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1518, '2016-08-10 17:21:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:20:59.835996Z","gw_timestamp":3371806723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2MzAxMjE2MDA0NTeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1520, '2016-08-10 17:21:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:14.211493Z","gw_timestamp":3386169851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUxNDAxMjE2MDA0NTewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1522, '2016-08-10 17:21:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:28.561508Z","gw_timestamp":3400533499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUzOTAxMjE2MDA0NTewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1524, '2016-08-10 17:21:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:21:42.922881Z","gw_timestamp":3414897355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU3MDAxMjE2MDA0NTezuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1545, '2016-08-10 17:24:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:24:13.748134Z","gw_timestamp":3565712043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUzMDAxMjE2MDA0NTeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1557, '2016-08-10 17:25:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:39.927638Z","gw_timestamp":3651892179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU1MjAxMjE2MDA0NTawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1559, '2016-08-10 17:26:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:54.28289Z","gw_timestamp":3666255931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1MjAxMjE2MDA0NTawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1561, '2016-08-10 17:26:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:08.650255Z","gw_timestamp":3680619683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU3NTAxMjE2MDA0NTax2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1563, '2016-08-10 17:26:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:23.024726Z","gw_timestamp":3694983339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDUzMjAxMjE2MDA0NTaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1565, '2016-08-10 17:26:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:37.391917Z","gw_timestamp":3709346987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU1OTAxMjE2MDA0NTaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1585, '2016-08-10 17:29:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:01.029661Z","gw_timestamp":3852981931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU4NDAxMjE3MDA0NTWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1587, '2016-08-10 17:29:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:15.374657Z","gw_timestamp":3867344643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU1MDAxMjE3MDA0NTWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1589, '2016-08-10 17:29:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:22.549264Z","gw_timestamp":3874526363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUzOTAxMjE3MDA0NTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1591, '2016-08-10 17:29:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:36.922518Z","gw_timestamp":3888889179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU0MzAxMjE3MDA0NTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1593, '2016-08-10 17:30:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:51.286772Z","gw_timestamp":3903252835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDUzMjAxMjE3MDA0NTWueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1595, '2016-08-10 17:30:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:05.649026Z","gw_timestamp":3917616587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU5MTAxMjE3MDA0NTWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1597, '2016-08-10 17:30:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:20.012259Z","gw_timestamp":3931980243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU2MzAxMjE3MDA0NTWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1599, '2016-08-10 17:30:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:34.398785Z","gw_timestamp":3946343995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1NDAxMjE3MDA0NTWyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1552, '2016-08-10 17:25:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:11.20842Z","gw_timestamp":3623164771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU4MjAxMjE2MDA0NTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1554, '2016-08-10 17:25:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:25.556385Z","gw_timestamp":3637528531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUzMDAxMjE2MDA0NTaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1556, '2016-08-10 17:25:41', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1265,"f_cnt_down":2068,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:25:35.890066Z","gw_timestamp":2392174132,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ALswMDU0ODAxMjI4MDA0MzgIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1558, '2016-08-10 17:25:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:47.110234Z","gw_timestamp":3659074003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1MjAxMjE2MDA0NTavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1560, '2016-08-10 17:26:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:01.463509Z","gw_timestamp":3673437755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU1NjAxMjE2MDA0NTawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1562, '2016-08-10 17:26:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:15.826763Z","gw_timestamp":3687801515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDUzMDAxMjE2MDA0NTavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1564, '2016-08-10 17:26:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:30.198024Z","gw_timestamp":3702165059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUzNjAxMjE2MDA0NTav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1566, '2016-08-10 17:26:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:44.568728Z","gw_timestamp":3716528811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUzNDAxMjE2MDA0NTavSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1570, '2016-08-10 17:27:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:13.308219Z","gw_timestamp":3745256219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU3NTAxMjE2MDA0NTawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1572, '2016-08-10 17:27:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:27.665115Z","gw_timestamp":3759619875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1NDAxMjE2MDA0NTaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1574, '2016-08-10 17:27:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:42.013346Z","gw_timestamp":3773982691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU4MjAxMjE3MDA0NTaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1576, '2016-08-10 17:28:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:56.379648Z","gw_timestamp":3788346339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU2NjAxMjE2MDA0NTaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1578, '2016-08-10 17:28:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:10.731903Z","gw_timestamp":3802709883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU2NjAxMjE2MDA0NTavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1580, '2016-08-10 17:28:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:25.105268Z","gw_timestamp":3817073843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUzOTAxMjE2MDA0NTayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1555, '2016-08-10 17:25:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:25:32.747019Z","gw_timestamp":3644710459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUyMTAxMjE2MDA0NTawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1567, '2016-08-10 17:27:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:51.733016Z","gw_timestamp":3723710635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU2MzAxMjE2MDA0NTaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1569, '2016-08-10 17:27:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:06.102256Z","gw_timestamp":3738074291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU2MzAxMjE2MDA0NTavKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1571, '2016-08-10 17:27:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:20.472518Z","gw_timestamp":3752438147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU0ODAxMjE2MDA0NTaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1573, '2016-08-10 17:27:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:34.832765Z","gw_timestamp":3766801067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU2ODAxMjE2MDA0NTavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1575, '2016-08-10 17:27:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:27:49.199028Z","gw_timestamp":3781164515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU1NzAxMjE2MDA0NTauqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1577, '2016-08-10 17:28:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:03.566165Z","gw_timestamp":3795528059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDYwMDAxMjE2MDA0NTawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1579, '2016-08-10 17:28:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:17.915739Z","gw_timestamp":3809891811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU3MDAxMjE2MDA0NTawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1581, '2016-08-10 17:28:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:32.2769Z","gw_timestamp":3824255563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU0ODAxMjE2MDA0NTavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1583, '2016-08-10 17:28:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:46.649027Z","gw_timestamp":3838619219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU2MzAxMjE3MDA0NTWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1603, '2016-08-10 17:31:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:03.100033Z","gw_timestamp":3975070355,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVIwMDU2MzAxMjE3MDA0NTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1605, '2016-08-10 17:31:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:17.466268Z","gw_timestamp":3989433907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU1MjAxMjE3MDA0NTWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1607, '2016-08-10 17:31:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:31.857781Z","gw_timestamp":4003797243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU2NjAxMjE3MDA0NTWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1609, '2016-08-10 17:31:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:46.191905Z","gw_timestamp":4018160267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUzMDAxMjE3MDA0NTWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1568, '2016-08-10 17:27:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:26:58.926626Z","gw_timestamp":3730892563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDUyNTAxMjE2MDA0NTawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1584, '2016-08-10 17:29:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:53.835144Z","gw_timestamp":3845800627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU3OTAxMjE3MDA0NTWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1586, '2016-08-10 17:29:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:08.201664Z","gw_timestamp":3860163651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU5MTAxMjE2MDA0NTWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1596, '2016-08-10 17:30:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:12.834147Z","gw_timestamp":3924798515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU1MDAxMjE3MDA0NTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1598, '2016-08-10 17:30:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:27.188903Z","gw_timestamp":3939162067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDUyODAxMjE3MDA0NTWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1600, '2016-08-10 17:30:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:41.555127Z","gw_timestamp":3953525715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDUzMjAxMjE3MDA0NTWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1602, '2016-08-10 17:31:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:55.910618Z","gw_timestamp":3967889363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU1NDAxMjE3MDA0NTWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1604, '2016-08-10 17:31:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:10.283646Z","gw_timestamp":3982252179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU0ODAxMjE3MDA0NTWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1606, '2016-08-10 17:31:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:24.640904Z","gw_timestamp":3996615835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU1NDAxMjE3MDA0NTWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1608, '2016-08-10 17:31:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:39.013152Z","gw_timestamp":4010978547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU2ODAxMjE3MDA0NTWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1610, '2016-08-10 17:32:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:31:53.364591Z","gw_timestamp":4025341259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU1MDAxMjE3MDA0NTWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1612, '2016-08-10 17:32:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:07.742009Z","gw_timestamp":4039704803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU1OTAxMjE3MDA0NTWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1614, '2016-08-10 17:32:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:22.098028Z","gw_timestamp":4054068667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU2ODAxMjE3MDA0NTWzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1616, '2016-08-10 17:32:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:36.461285Z","gw_timestamp":4068432211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU2MTAxMjE3MDA0NTWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1582, '2016-08-10 17:28:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:28:39.467676Z","gw_timestamp":3831437291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDUzMDAxMjE2MDA0NTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1588, '2016-08-10 17:29:24', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":703,"f_cnt_down":1283,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:29:20.710907Z","gw_timestamp":2616995084,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGgwMDU0NzAxMjI2MDA0ODgMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1590, '2016-08-10 17:29:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:29.739898Z","gw_timestamp":3881708187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU2NjAxMjE3MDA0NTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1592, '2016-08-10 17:29:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:44.116612Z","gw_timestamp":3896071011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU0MTAxMjE3MDA0NTWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1594, '2016-08-10 17:30:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:29:58.478673Z","gw_timestamp":3910434763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU3OTAxMjE3MDA0NTWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1648, '2016-08-10 17:36:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:11.901171Z","gw_timestamp":4283884691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDYwNTAxMjE3MDA0NTWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1650, '2016-08-10 17:36:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:26.27242Z","gw_timestamp":3281147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU5MTAxMjE3MDA0NTWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1652, '2016-08-10 17:36:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:40.63166Z","gw_timestamp":17644795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU2MzAxMjE3MDA0NTWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1654, '2016-08-10 17:37:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:55.00204Z","gw_timestamp":32007507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1NDAxMjE3MDA0NTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1656, '2016-08-10 17:37:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:16.536908Z","gw_timestamp":53553083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU2ODAxMjE3MDA0NTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1658, '2016-08-10 17:37:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:30.90717Z","gw_timestamp":67916739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1NTAxMjE3MDA0NTWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1660, '2016-08-10 17:37:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:45.263538Z","gw_timestamp":82279451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU2NjAxMjE3MDA0NTWteg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1662, '2016-08-10 17:38:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:59.635656Z","gw_timestamp":96643003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU3NzAxMjE3MDA0NTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1664, '2016-08-10 17:38:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:13.991179Z","gw_timestamp":111005811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU5NTAxMjE3MDA0NTWyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1601, '2016-08-10 17:30:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:30:48.737151Z","gw_timestamp":3960707547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU3NTAxMjE3MDA0NTWu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1639, '2016-08-10 17:35:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:14.460161Z","gw_timestamp":4226430915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU1NzAxMjE3MDA0NTWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1641, '2016-08-10 17:35:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:28.813363Z","gw_timestamp":4240793939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDUyODAxMjE3MDA0NTWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1643, '2016-08-10 17:35:44', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":783,"f_cnt_down":1434,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:35:43.219838Z","gw_timestamp":2999504204,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:16:33.986882Z","gw_timestamp":1635344268,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AF4wMDUwMDAxMjM2MDA0MzQIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1645, '2016-08-10 17:35:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:50.359666Z","gw_timestamp":4262339099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU2ODAxMjE3MDA0NTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1647, '2016-08-10 17:36:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:04.729542Z","gw_timestamp":4276702755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU2MzAxMjE3MDA0NTWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1649, '2016-08-10 17:36:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:19.09379Z","gw_timestamp":4291066611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU3NTAxMjE3MDA0NTWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1651, '2016-08-10 17:36:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:33.447026Z","gw_timestamp":10462963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU2ODAxMjE3MDA0NTWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1653, '2016-08-10 17:36:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:36:47.829629Z","gw_timestamp":24825891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU3MzAxMjE3MDA0NTWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1655, '2016-08-10 17:37:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:02.175721Z","gw_timestamp":39189331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU2NjAxMjE3MDA0NTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1657, '2016-08-10 17:37:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:23.725541Z","gw_timestamp":60734915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU3MDAxMjE3MDA0NTWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1659, '2016-08-10 17:37:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:38.114478Z","gw_timestamp":75098459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDYwNTAxMjE3MDA0NTWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1665, '2016-08-10 17:38:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:21.181551Z","gw_timestamp":118187539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU4NDAxMjE3MDA0NTWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1611, '2016-08-10 17:32:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:00.55215Z","gw_timestamp":4032522987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDQ5NjAxMjE3MDA0NTWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1613, '2016-08-10 17:32:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:14.912669Z","gw_timestamp":4046886739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU3OTAxMjE3MDA0NTWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1615, '2016-08-10 17:32:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:29.289868Z","gw_timestamp":4061250491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU8wMDU2MTAxMjE3MDA0NTWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1617, '2016-08-10 17:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:43.635011Z","gw_timestamp":4075614147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDUyNTAxMjE3MDA0NTWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1619, '2016-08-10 17:33:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:58.008155Z","gw_timestamp":4089976851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDUzMjAxMjE3MDA0NTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1621, '2016-08-10 17:33:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:12.368396Z","gw_timestamp":4104340611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AVAwMDU2MTAxMjE3MDA0NTWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1623, '2016-08-10 17:33:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:26.730647Z","gw_timestamp":4118704363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU1MjAxMjE3MDA0NTWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1625, '2016-08-10 17:33:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:41.094922Z","gw_timestamp":4133067915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU0NTAxMjE3MDA0NTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1627, '2016-08-10 17:34:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:55.46266Z","gw_timestamp":4147431667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU0ODAxMjE3MDA0NTWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1629, '2016-08-10 17:34:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:09.827538Z","gw_timestamp":4161794795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU4NjAxMjE3MDA0NTWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1631, '2016-08-10 17:34:26', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":789,"f_cnt_down":1479,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:34:22.218222Z","gw_timestamp":2918502548,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:12.985258Z","gw_timestamp":1554342644,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AZUwMDY0NTAxMjI4MDA0NzEHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1633, '2016-08-10 17:34:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:31.370413Z","gw_timestamp":4183339859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDUzOTAxMjE3MDA0NTWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1635, '2016-08-10 17:34:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:45.731664Z","gw_timestamp":4197703507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU1OTAxMjE3MDA0NTWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1618, '2016-08-10 17:32:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:32:50.823531Z","gw_timestamp":4082795755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1MDAxMjE3MDA0NTWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1620, '2016-08-10 17:33:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:05.194025Z","gw_timestamp":4097158683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU3MDAxMjE3MDA0NTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1622, '2016-08-10 17:33:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:19.555385Z","gw_timestamp":4111522435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU3NTAxMjE3MDA0NTWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1624, '2016-08-10 17:33:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:33.904485Z","gw_timestamp":4125886091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU2NjAxMjE3MDA0NTWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1626, '2016-08-10 17:33:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:33:48.275468Z","gw_timestamp":4140249843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU3MDAxMjE3MDA0NTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1628, '2016-08-10 17:34:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:02.639188Z","gw_timestamp":4154613491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU4wMDU2MTAxMjE3MDA0NTWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1630, '2016-08-10 17:34:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:16.998794Z","gw_timestamp":4168976099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU3NTAxMjE3MDA0NTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1632, '2016-08-10 17:34:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:24.178784Z","gw_timestamp":4176157931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1NDAxMjE3MDA0NTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1634, '2016-08-10 17:34:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:38.548034Z","gw_timestamp":4190521579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU1NDAxMjE3MDA0NTWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1636, '2016-08-10 17:35:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:34:52.91641Z","gw_timestamp":4204885443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU0ODAxMjE3MDA0NTWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1638, '2016-08-10 17:35:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:07.271411Z","gw_timestamp":4219249091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU2MTAxMjE3MDA0NTWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1640, '2016-08-10 17:35:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:21.63579Z","gw_timestamp":4233612843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU3MTAxMjE3MDA0NTWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1642, '2016-08-10 17:35:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:36.020153Z","gw_timestamp":4247975451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU1OTAxMjE3MDA0NTWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1644, '2016-08-10 17:35:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:43.176663Z","gw_timestamp":4255157283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU3NTAxMjE3MDA0NTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1637, '2016-08-10 17:35:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:00.105072Z","gw_timestamp":4212067155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU4MjAxMjE3MDA0NTWx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1661, '2016-08-10 17:38:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:37:52.454183Z","gw_timestamp":89461275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU2MzAxMjE3MDA0NTWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1663, '2016-08-10 17:38:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:06.821291Z","gw_timestamp":103824819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU1MjAxMjE3MDA0NTWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1669, '2016-08-10 17:38:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:49.899029Z","gw_timestamp":146914107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDYwNTAxMjE3MDA0NTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1671, '2016-08-10 17:39:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:04.267295Z","gw_timestamp":161277763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDYwNzAxMjE3MDA0NTWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1673, '2016-08-10 17:39:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:18.653295Z","gw_timestamp":175641411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDUzNTAxMjE3MDA0NTWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1675, '2016-08-10 17:39:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:33.01819Z","gw_timestamp":190004019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU3MzAxMjE3MDA0NTWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1677, '2016-08-10 17:39:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:47.351179Z","gw_timestamp":204367779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU1NTAxMjE3MDA0NTWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1679, '2016-08-10 17:40:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:01.719675Z","gw_timestamp":218731427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU3MzAxMjE3MDA0NTWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1681, '2016-08-10 17:40:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:16.082677Z","gw_timestamp":233094251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU4NDAxMjE3MDA0NTWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1683, '2016-08-10 17:40:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:30.453921Z","gw_timestamp":247457795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU5ODAxMjE3MDA0NTWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1685, '2016-08-10 17:40:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:44.803179Z","gw_timestamp":261821339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU0MjAxMjE3MDA0NTWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1646, '2016-08-10 17:36:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:35:57.54091Z","gw_timestamp":4269520931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU4MjAxMjE3MDA0NTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1668, '2016-08-10 17:38:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:42.718421Z","gw_timestamp":139732179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDU2ODAxMjE3MDA0NTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1670, '2016-08-10 17:39:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:57.091663Z","gw_timestamp":154095835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AU0wMDU1MzAxMjE3MDA0NTWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1672, '2016-08-10 17:39:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:11.451979Z","gw_timestamp":168459587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU3OTAxMjE3MDA0NTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1674, '2016-08-10 17:39:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:25.816293Z","gw_timestamp":182822403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU4MDAxMjE3MDA0NTWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1676, '2016-08-10 17:39:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:40.171535Z","gw_timestamp":197185955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU1NzAxMjE3MDA0NTWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1678, '2016-08-10 17:40:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:39:54.544795Z","gw_timestamp":211549603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU2MDAxMjE3MDA0NTWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1680, '2016-08-10 17:40:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:08.90299Z","gw_timestamp":225913251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU0OTAxMjE3MDA0NTWu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1682, '2016-08-10 17:40:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:23.265315Z","gw_timestamp":240276075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU5ODAxMjE3MDA0NTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1684, '2016-08-10 17:40:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:37.633544Z","gw_timestamp":254639723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU2MDAxMjE3MDA0NTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1686, '2016-08-10 17:40:53', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1266,"f_cnt_down":2069,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:40:46.708673Z","gw_timestamp":3302993188,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMUwMDU1NzAxMjI3MDA0NDIeIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1666, '2016-08-10 17:38:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:28.374714Z","gw_timestamp":125369363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUswMDU4MDAxMjE3MDA0NTWuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1667, '2016-08-10 17:38:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:38:35.536916Z","gw_timestamp":132550355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUwwMDUwNjAxMjE3MDA0NTWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1687, '2016-08-10 17:41:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:51.991001Z","gw_timestamp":269002331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU1MTAxMjE3MDA0NTSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1688, '2016-08-10 17:41:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:40:59.177274Z","gw_timestamp":276184267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU4NDAxMjE3MDA0NTWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1689, '2016-08-10 17:41:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:06.351329Z","gw_timestamp":283366083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU3NzAxMjE3MDA0NTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1690, '2016-08-10 17:41:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:13.538672Z","gw_timestamp":290548019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU4OTAxMjE3MDA0NTSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1691, '2016-08-10 17:41:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:20.718911Z","gw_timestamp":297729947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU5NTAxMjE3MDA0NTSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1692, '2016-08-10 17:41:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:27.894037Z","gw_timestamp":304911563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU1NzAxMjE3MDA0NTSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1693, '2016-08-10 17:41:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:35.079753Z","gw_timestamp":312093387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUowMDU0NDAxMjE3MDA0NTSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1694, '2016-08-10 17:41:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:42.268297Z","gw_timestamp":319275323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU4MjAxMjE3MDA0NTSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1695, '2016-08-10 17:41:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:49.4532Z","gw_timestamp":326457251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU4OTAxMjE3MDA0NTSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1696, '2016-08-10 17:42:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:41:56.627657Z","gw_timestamp":333638971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDYxNjAxMjE3MDA0NTSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1697, '2016-08-10 17:42:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:03.804168Z","gw_timestamp":340820379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU4NjAxMjE3MDA0NTStmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1698, '2016-08-10 17:42:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:10.988798Z","gw_timestamp":348001683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU5NTAxMjE3MDA0NTSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1699, '2016-08-10 17:42:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:18.172428Z","gw_timestamp":355183507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU0NDAxMjE3MDA0NTSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1700, '2016-08-10 17:42:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:25.352054Z","gw_timestamp":362365331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDYwMjAxMjE3MDA0NTSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1704, '2016-08-10 17:43:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:54.077551Z","gw_timestamp":391092843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDUyODAxMjE3MDA0NTSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1706, '2016-08-10 17:43:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:08.441805Z","gw_timestamp":405456387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU2MjAxMjE3MDA0NTSyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1708, '2016-08-10 17:43:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:29.997953Z","gw_timestamp":427000931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUkwMDU3NTAxMjE3MDA0NTSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1710, '2016-08-10 17:43:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:44.350931Z","gw_timestamp":441364795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDYxMTAxMjE3MDA0NTSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1712, '2016-08-10 17:44:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:58.710189Z","gw_timestamp":455728339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDUzOTAxMjE3MDA0NTSvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1714, '2016-08-10 17:44:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:13.08977Z","gw_timestamp":470091987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU2NDAxMjE3MDA0NTSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1716, '2016-08-10 17:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:27.444066Z","gw_timestamp":484454803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDUxMDAxMjE4MDA0NTSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1718, '2016-08-10 17:44:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:34.622432Z","gw_timestamp":491636635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU3NTAxMjE4MDA0NTSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1720, '2016-08-10 17:44:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:49.006119Z","gw_timestamp":505999347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU3NzAxMjE4MDA0NTSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1722, '2016-08-10 17:45:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:03.34594Z","gw_timestamp":520362995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU3NTAxMjE4MDA0NTSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1724, '2016-08-10 17:45:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:17.70819Z","gw_timestamp":534726747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU4MjAxMjE4MDA0NTSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1726, '2016-08-10 17:45:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:32.080081Z","gw_timestamp":549090403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU2ODAxMjE4MDA0NTSwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1728, '2016-08-10 17:45:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:46.444046Z","gw_timestamp":563454051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU3MzAxMjE4MDA0NTSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1701, '2016-08-10 17:42:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:32.536685Z","gw_timestamp":369547163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU4MDAxMjE3MDA0NTSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1705, '2016-08-10 17:43:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:01.259895Z","gw_timestamp":398274667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU1MTAxMjE3MDA0NTSvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1707, '2016-08-10 17:43:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:22.811044Z","gw_timestamp":419819931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUcwMDU3NzAxMjE3MDA0NTSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1709, '2016-08-10 17:43:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:37.173295Z","gw_timestamp":434182859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU0NjAxMjE3MDA0NTSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1711, '2016-08-10 17:44:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:43:51.551823Z","gw_timestamp":448546619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU3MzAxMjE3MDA0NTSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1713, '2016-08-10 17:44:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:05.892795Z","gw_timestamp":462910267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU0OTAxMjE4MDA0NTSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1715, '2016-08-10 17:44:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:20.263189Z","gw_timestamp":477272979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU2ODAxMjE4MDA0NTSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1717, '2016-08-10 17:44:36', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":704,"f_cnt_down":1284,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:44:31.482794Z","gw_timestamp":3527767420,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:25:22.249866Z","gw_timestamp":2163607252,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHAwMDU4ODAxMjI3MDA0ODII0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1719, '2016-08-10 17:44:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:41.830431Z","gw_timestamp":498818355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU2MjAxMjE4MDA0NTSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1721, '2016-08-10 17:45:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:44:56.17126Z","gw_timestamp":513181067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU2NjAxMjE4MDA0NTSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1723, '2016-08-10 17:45:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:10.537565Z","gw_timestamp":527544923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU1NzAxMjE4MDA0NTSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1725, '2016-08-10 17:45:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:24.915174Z","gw_timestamp":541908683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU5NTAxMjE4MDA0NTSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1727, '2016-08-10 17:45:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:39.264565Z","gw_timestamp":556272331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU3NTAxMjE4MDA0NTSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1702, '2016-08-10 17:42:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:39.720359Z","gw_timestamp":376728987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUgwMDU2MDAxMjE3MDA0NTSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1703, '2016-08-10 17:42:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:42:46.891936Z","gw_timestamp":383910915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU5MTAxMjE3MDA0NTSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1735, '2016-08-10 17:46:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:36.708066Z","gw_timestamp":613726107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU1NTAxMjE4MDA0NTOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1737, '2016-08-10 17:46:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:51.069436Z","gw_timestamp":628089747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU4OTAxMjE4MDA0NTOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1754, '2016-08-10 17:49:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:00.344828Z","gw_timestamp":757358971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU3NzAxMjE4MDA0NTOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1756, '2016-08-10 17:49:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:14.702544Z","gw_timestamp":771722619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU1MTAxMjE4MDA0NTOuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1758, '2016-08-10 17:49:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:29.075576Z","gw_timestamp":786086371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU3MTAxMjE4MDA0NTOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1760, '2016-08-10 17:49:40', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":791,"f_cnt_down":1481,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:23.767953Z","gw_timestamp":2465125340,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AZowMDY1MTAxMjMwMDA0NjgIcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1763, '2016-08-10 17:49:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:50.614193Z","gw_timestamp":807630915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU1NTAxMjE4MDA0NTOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1765, '2016-08-10 17:50:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:04.974532Z","gw_timestamp":821993523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU1NTAxMjE4MDA0NTOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1767, '2016-08-10 17:50:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:19.345889Z","gw_timestamp":836357387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDYwNzAxMjE4MDA0NTOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1769, '2016-08-10 17:50:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:33.699946Z","gw_timestamp":850720099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU1NTAxMjE4MDA0NTOuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1771, '2016-08-10 17:50:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:48.069545Z","gw_timestamp":865083651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT8wMDU2MDAxMjE4MDA0NTOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1773, '2016-08-10 17:50:56', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":785,"f_cnt_down":1436,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:31:44.822522Z","gw_timestamp":2546179908,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArgwMDUyNTAxMjM1MDA0MzUMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1729, '2016-08-10 17:46:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:45:53.620315Z","gw_timestamp":570635979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU1MzAxMjE4MDA0NTOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1731, '2016-08-10 17:46:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:07.983563Z","gw_timestamp":584998699,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDU4MDAxMjE4MDA0NTOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1733, '2016-08-10 17:46:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:22.344792Z","gw_timestamp":599362347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU2MDAxMjE4MDA0NTOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1739, '2016-08-10 17:47:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:05.458963Z","gw_timestamp":642453299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDUzOTAxMjE4MDA0NTOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1741, '2016-08-10 17:47:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:19.80994Z","gw_timestamp":656816219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU1NTAxMjE4MDA0NTOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1743, '2016-08-10 17:47:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:34.165138Z","gw_timestamp":671179875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU2NjAxMjE4MDA0NTOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1745, '2016-08-10 17:47:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:48.524515Z","gw_timestamp":685543419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU2MDAxMjE4MDA0NTOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1747, '2016-08-10 17:48:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:02.894899Z","gw_timestamp":699906235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUYwMDUyODAxMjE4MDA0NTOu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1749, '2016-08-10 17:48:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:17.248943Z","gw_timestamp":714268955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU2NjAxMjE4MDA0NTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1751, '2016-08-10 17:48:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:31.615111Z","gw_timestamp":728632603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT8wMDU3MTAxMjE4MDA0NTOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1753, '2016-08-10 17:49:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:45.973309Z","gw_timestamp":742995211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU3NzAxMjE4MDA0NTOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1755, '2016-08-10 17:49:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:07.529578Z","gw_timestamp":764540691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU3NTAxMjE4MDA0NTOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1757, '2016-08-10 17:49:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:21.891697Z","gw_timestamp":778904443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU2MDAxMjE4MDA0NTOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1759, '2016-08-10 17:49:35', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":790,"f_cnt_down":1480,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:49:33.000869Z","gw_timestamp":3829285644,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AZowMDY1MTAxMjMwMDA0NjgIcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1730, '2016-08-10 17:46:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:00.806938Z","gw_timestamp":577817083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU4MjAxMjE4MDA0NTOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1732, '2016-08-10 17:46:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:15.180434Z","gw_timestamp":592180523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU1NTAxMjE4MDA0NTOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1734, '2016-08-10 17:46:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:29.535503Z","gw_timestamp":606544171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU1NzAxMjE4MDA0NTOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1736, '2016-08-10 17:46:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:43.897817Z","gw_timestamp":620907827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU0OTAxMjE4MDA0NTOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1738, '2016-08-10 17:47:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:46:58.261321Z","gw_timestamp":635271579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU3NzAxMjE4MDA0NTOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1740, '2016-08-10 17:47:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:12.617296Z","gw_timestamp":649634291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU0OTAxMjE4MDA0NTOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1742, '2016-08-10 17:47:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:26.985691Z","gw_timestamp":663997947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU2ODAxMjE4MDA0NTOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1744, '2016-08-10 17:47:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:41.353036Z","gw_timestamp":678361699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU3NzAxMjE4MDA0NTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1746, '2016-08-10 17:48:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:47:55.714298Z","gw_timestamp":692725243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU0NjAxMjE4MDA0NTOuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1748, '2016-08-10 17:48:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:10.074395Z","gw_timestamp":707087963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU4MjAxMjE4MDA0NTOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1750, '2016-08-10 17:48:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:24.435573Z","gw_timestamp":721450779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUUwMDU4NDAxMjE4MDA0NTOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1752, '2016-08-10 17:48:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:48:38.822256Z","gw_timestamp":735813907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDUzNTAxMjE4MDA0NTOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1762, '2016-08-10 17:49:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:43.436568Z","gw_timestamp":800449923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT8wMDU2NDAxMjE4MDA0NTOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1777, '2016-08-10 17:51:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:16.797942Z","gw_timestamp":893810747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT8wMDU1MzAxMjE4MDA0NTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1761, '2016-08-10 17:49:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:36.27488Z","gw_timestamp":793268203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU3NTAxMjE4MDA0NTOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1764, '2016-08-10 17:50:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:49:57.792952Z","gw_timestamp":814812011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUQwMDU5MTAxMjE4MDA0NTOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1766, '2016-08-10 17:50:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:12.180327Z","gw_timestamp":829175459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU4NjAxMjE4MDA0NTOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1768, '2016-08-10 17:50:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:26.526313Z","gw_timestamp":843539107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU2NDAxMjE4MDA0NTOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1770, '2016-08-10 17:50:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:40.890576Z","gw_timestamp":857901819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU5NTAxMjE4MDA0NTOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1772, '2016-08-10 17:50:55', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":784,"f_cnt_down":1435,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:50:54.055428Z","gw_timestamp":3910340244,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArgwMDUyNTAxMjM1MDA0MzUMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1774, '2016-08-10 17:51:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:50:55.243811Z","gw_timestamp":872265579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT8wMDU1NTAxMjE4MDA0NTOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1776, '2016-08-10 17:51:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:09.612078Z","gw_timestamp":886629227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU4OTAxMjE4MDA0NTOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1778, '2016-08-10 17:51:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:31.158952Z","gw_timestamp":908173763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU3NzAxMjE4MDA0NTOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1780, '2016-08-10 17:51:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:45.51832Z","gw_timestamp":922537419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU2NjAxMjE4MDA0NTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1782, '2016-08-10 17:52:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:59.881523Z","gw_timestamp":936901275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT4wMDU2NjAxMjE4MDA0NTOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1784, '2016-08-10 17:52:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:52:14.250834Z","gw_timestamp":951264827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU3MTAxMjE4MDA0NTOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1786, '2016-08-10 17:52:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:52:28.621333Z","gw_timestamp":965628579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDUzOTAxMjE4MDA0NTOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1788, '2016-08-10 17:53:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:52:57.332579Z","gw_timestamp":994355779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUMwMDU2NDAxMjE4MDA0NTOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1775, '2016-08-10 17:51:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:02.431779Z","gw_timestamp":879447403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU3MTAxMjE4MDA0NTOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1781, '2016-08-10 17:52:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:52.718223Z","gw_timestamp":929719347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU5NTAxMjE4MDA0NTOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1793, '2016-08-10 17:53:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:40.435835Z","gw_timestamp":1037447043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU5MzAxMjE4MDA0NTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1795, '2016-08-10 17:53:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:54.785577Z","gw_timestamp":1051810067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU4MjAxMjE4MDA0NTKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1797, '2016-08-10 17:54:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:09.178252Z","gw_timestamp":1066173307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU3MzAxMjE4MDA0NTKx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1799, '2016-08-10 17:54:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:23.52415Z","gw_timestamp":1080536955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU2ODAxMjE4MDA0NTKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1801, '2016-08-10 17:54:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:37.878457Z","gw_timestamp":1094900715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU4OTAxMjE4MDA0NTKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1803, '2016-08-10 17:55:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:52.239709Z","gw_timestamp":1109264467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU1NzAxMjE4MDA0NTKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1805, '2016-08-10 17:55:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:13.790585Z","gw_timestamp":1130809531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU3MzAxMjE4MDA0NTKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1807, '2016-08-10 17:55:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:28.150836Z","gw_timestamp":1145172659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU2NjAxMjE4MDA0NTKzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1841, '2016-08-10 17:59:49', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":705,"f_cnt_down":1285,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:59:42.251614Z","gw_timestamp":143569396,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:28:58.051442Z","gw_timestamp":3074376124,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-120,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACIwMDU1NzAxMjI3MDA0NzUGYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1843, '2016-08-10 18:00:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:53.881741Z","gw_timestamp":1410893123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2MDAxMjE4MDA0NTGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1859, '2016-08-10 18:02:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:03.140606Z","gw_timestamp":1540163179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3NTAxMjE4MDA0NTGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1779, '2016-08-10 17:51:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:51:38.346922Z","gw_timestamp":915355595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU1NTAxMjE4MDA0NTOuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1783, '2016-08-10 17:52:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:52:07.065592Z","gw_timestamp":944082891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU0MjAxMjE4MDA0NTOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1785, '2016-08-10 17:52:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:52:21.425975Z","gw_timestamp":958446651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUIwMDU2ODAxMjE4MDA0NTOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1787, '2016-08-10 17:52:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:52:42.96833Z","gw_timestamp":979992235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AUEwMDU5ODAxMjE4MDA0NTOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1789, '2016-08-10 17:53:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:04.527475Z","gw_timestamp":1001537707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT8wMDU2ODAxMjE4MDA0NTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1791, '2016-08-10 17:53:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:18.89396Z","gw_timestamp":1015901467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDUzNTAxMjE4MDA0NTOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1809, '2016-08-10 17:55:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:42.512217Z","gw_timestamp":1159536411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU3NTAxMjE4MDA0NTKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1811, '2016-08-10 17:55:59', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1267,"f_cnt_down":2070,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T17:55:57.526111Z","gw_timestamp":4213811076,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AKowMDU4MzAxMjI3MDA0NDMaoQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1822, '2016-08-10 17:57:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:08.694707Z","gw_timestamp":1245715403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDUxMzAxMjE4MDA0NTKueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1824, '2016-08-10 17:57:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:30.24159Z","gw_timestamp":1267259115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU2ODAxMjE4MDA0NTKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1826, '2016-08-10 17:57:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:44.602969Z","gw_timestamp":1281622763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU0OTAxMjE4MDA0NTKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1828, '2016-08-10 17:58:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:58.965064Z","gw_timestamp":1295985371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2MDAxMjE4MDA0NTKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1830, '2016-08-10 17:58:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:13.335373Z","gw_timestamp":1310349131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU1MzAxMjE4MDA0NTKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1832, '2016-08-10 17:58:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:27.687292Z","gw_timestamp":1324712883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU1NTAxMjE4MDA0NTGuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1790, '2016-08-10 17:53:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:11.699834Z","gw_timestamp":1008719531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AT4wMDU1NzAxMjE4MDA0NTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1813, '2016-08-10 17:56:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:04.06296Z","gw_timestamp":1181081787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDUzMTAxMjE4MDA0NTKvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1815, '2016-08-10 17:56:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:18.426596Z","gw_timestamp":1195444603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU5MzAxMjE4MDA0NTKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1817, '2016-08-10 17:56:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:32.788469Z","gw_timestamp":1209808043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU1NTAxMjE4MDA0NTKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1819, '2016-08-10 17:56:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:47.169094Z","gw_timestamp":1224170867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU2ODAxMjE4MDA0NTKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1821, '2016-08-10 17:57:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:01.548208Z","gw_timestamp":1238533579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3MTAxMjE4MDA0NTKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1823, '2016-08-10 17:57:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:15.879725Z","gw_timestamp":1252896395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU1NTAxMjE4MDA0NTKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1825, '2016-08-10 17:57:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:37.434501Z","gw_timestamp":1274440931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4NjAxMjE4MDA0NTKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1827, '2016-08-10 17:58:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:57:51.77947Z","gw_timestamp":1288803963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4NDAxMjE4MDA0NTKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1829, '2016-08-10 17:58:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:06.141969Z","gw_timestamp":1303167299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU0OTAxMjE4MDA0NTKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1831, '2016-08-10 17:58:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:20.517968Z","gw_timestamp":1317531059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2NDAxMjE4MDA0NTGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1833, '2016-08-10 17:58:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:42.060848Z","gw_timestamp":1339076531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU0NjAxMjE4MDA0NTGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1835, '2016-08-10 17:59:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:56.41309Z","gw_timestamp":1353440187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU3NzAxMjE4MDA0NTGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1837, '2016-08-10 17:59:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:10.783629Z","gw_timestamp":1367803315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2ODAxMjE4MDA0NTGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1792, '2016-08-10 17:53:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:33.244839Z","gw_timestamp":1030265115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU0NDAxMjE4MDA0NTKvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1794, '2016-08-10 17:53:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:53:47.616955Z","gw_timestamp":1044628763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU3MTAxMjE4MDA0NTKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1796, '2016-08-10 17:54:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:01.978336Z","gw_timestamp":1058991579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU1MTAxMjE4MDA0NTKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1798, '2016-08-10 17:54:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:16.336587Z","gw_timestamp":1073355235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU3NzAxMjE4MDA0NTKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1800, '2016-08-10 17:54:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:30.704826Z","gw_timestamp":1087718779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU1MTAxMjE4MDA0NTKu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1802, '2016-08-10 17:54:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:45.068359Z","gw_timestamp":1102082643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU4NjAxMjE4MDA0NTKx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1804, '2016-08-10 17:55:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:54:59.425459Z","gw_timestamp":1116446187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU4MjAxMjE4MDA0NTKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1806, '2016-08-10 17:55:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:20.987517Z","gw_timestamp":1137990731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU1MTAxMjE4MDA0NTKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1808, '2016-08-10 17:55:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:35.330465Z","gw_timestamp":1152354587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU5ODAxMjE4MDA0NTKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1810, '2016-08-10 17:55:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:49.701834Z","gw_timestamp":1166718235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATwwMDU3MTAxMjE4MDA0NTKu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1812, '2016-08-10 17:56:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:55:56.88508Z","gw_timestamp":1173900171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDYyNjAxMjE4MDA0NTKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1814, '2016-08-10 17:56:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:11.243962Z","gw_timestamp":1188262771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDYwNTAxMjE4MDA0NTKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1816, '2016-08-10 17:56:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:25.601836Z","gw_timestamp":1202626323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU3MTAxMjE4MDA0NTKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1818, '2016-08-10 17:56:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:39.967089Z","gw_timestamp":1216989147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU2ODAxMjE4MDA0NTKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1820, '2016-08-10 17:57:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:56:54.337457Z","gw_timestamp":1231351851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2ODAxMjE4MDA0NTKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1836, '2016-08-10 17:59:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:03.603838Z","gw_timestamp":1360622115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2ODAxMjE4MDA0NTGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1838, '2016-08-10 17:59:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:17.968098Z","gw_timestamp":1374984723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU5NDAxMjE4MDA0NTGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1840, '2016-08-10 17:59:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:39.505469Z","gw_timestamp":1396530307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2ODAxMjE4MDA0NTGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1842, '2016-08-10 17:59:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:46.686591Z","gw_timestamp":1403712131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU1MTAxMjE4MDA0NTGuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1844, '2016-08-10 18:00:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:08.240474Z","gw_timestamp":1425256675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4NjAxMjE4MDA0NTGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1846, '2016-08-10 18:00:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:22.59891Z","gw_timestamp":1439620427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU2ODAxMjE4MDA0NTGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1848, '2016-08-10 18:00:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:36.967351Z","gw_timestamp":1453983035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5NDAxMjE4MDA0NTGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1850, '2016-08-10 18:01:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:51.327352Z","gw_timestamp":1468346795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2NjAxMjE4MDA0NTGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1852, '2016-08-10 18:01:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:05.685466Z","gw_timestamp":1482710339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDYwMTAxMjE4MDA0NTGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1854, '2016-08-10 18:01:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:20.076016Z","gw_timestamp":1497073155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU0MjAxMjE4MDA0NTGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1856, '2016-08-10 18:01:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:41.593596Z","gw_timestamp":1518618739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3MzAxMjE4MDA0NTGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1858, '2016-08-10 18:02:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:55.951958Z","gw_timestamp":1532981347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MjAxMjE4MDA0NTGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1860, '2016-08-10 18:02:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:10.331567Z","gw_timestamp":1547345003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU0NjAxMjE4MDA0NTGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1834, '2016-08-10 17:58:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:58:49.237466Z","gw_timestamp":1346258363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU3MTAxMjE4MDA0NTGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1864, '2016-08-10 18:02:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:39.050712Z","gw_timestamp":1576071371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MTAxMjE4MDA0NTGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1866, '2016-08-10 18:02:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:53.410981Z","gw_timestamp":1590435227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MDAxMjE4MDA0NTGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1868, '2016-08-10 18:03:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:07.771174Z","gw_timestamp":1604798675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4OTAxMjE4MDA0NTCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1870, '2016-08-10 18:03:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:22.13748Z","gw_timestamp":1619161595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2MjAxMjE4MDA0NTCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1872, '2016-08-10 18:03:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:43.688354Z","gw_timestamp":1640706963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4NjAxMjE4MDA0NTCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1874, '2016-08-10 18:04:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:58.041593Z","gw_timestamp":1655069683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDUzNzAxMjE4MDA0NTCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1876, '2016-08-10 18:04:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:12.413322Z","gw_timestamp":1669433539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDUyMDAxMjE4MDA0NTCy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1878, '2016-08-10 18:04:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:26.774096Z","gw_timestamp":1683796987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU0MDAxMjE4MDA0NTCvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1880, '2016-08-10 18:04:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:41.142282Z","gw_timestamp":1698159795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2MDAxMjE4MDA0NTCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1882, '2016-08-10 18:04:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:48.320266Z","gw_timestamp":1705341627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2NDAxMjE4MDA0NTCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1884, '2016-08-10 18:05:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:02.682359Z","gw_timestamp":1719705275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2ODAxMjE4MDA0NTCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1906, '2016-08-10 18:07:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:33.497611Z","gw_timestamp":1870521115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU1MzAxMjE4MDA0NTCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1839, '2016-08-10 17:59:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T17:59:25.14072Z","gw_timestamp":1382166659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDUzMTAxMjE4MDA0NTGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1845, '2016-08-10 18:00:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:15.413099Z","gw_timestamp":1432438603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU1MzAxMjE4MDA0NTGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1847, '2016-08-10 18:00:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:29.783341Z","gw_timestamp":1446801947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MDAxMjE4MDA0NTGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1849, '2016-08-10 18:00:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:44.161909Z","gw_timestamp":1461164867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5MTAxMjE4MDA0NTGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1851, '2016-08-10 18:01:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:00:58.499855Z","gw_timestamp":1475528515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2MDAxMjE4MDA0NTGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1853, '2016-08-10 18:01:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:12.87322Z","gw_timestamp":1489891331,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3NzAxMjE4MDA0NTGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1855, '2016-08-10 18:01:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:27.238334Z","gw_timestamp":1504255091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2NjAxMjE4MDA0NTGu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1857, '2016-08-10 18:01:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:01:48.784295Z","gw_timestamp":1525800355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NjAxMjE4MDA0NTGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1861, '2016-08-10 18:02:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:17.507837Z","gw_timestamp":1554526827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3MzAxMjE4MDA0NTGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1863, '2016-08-10 18:02:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:31.863098Z","gw_timestamp":1568889643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MzAxMjE4MDA0NTGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1865, '2016-08-10 18:02:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:46.227746Z","gw_timestamp":1583253299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MDAxMjE4MDA0NTCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1867, '2016-08-10 18:03:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:00.60312Z","gw_timestamp":1597617051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4NjAxMjE4MDA0NTGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1871, '2016-08-10 18:03:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:29.32211Z","gw_timestamp":1626343419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2MjAxMjE4MDA0NTCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1873, '2016-08-10 18:03:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:50.869977Z","gw_timestamp":1647888059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5MTAxMjE4MDA0NTCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1862, '2016-08-10 18:02:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:02:24.691478Z","gw_timestamp":1561708651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NTAxMjE4MDA0NTGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1886, '2016-08-10 18:05:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:24.230537Z","gw_timestamp":1741250963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2NDAxMjE4MDA0NTCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1888, '2016-08-10 18:05:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:38.601005Z","gw_timestamp":1755614619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3MTAxMjE4MDA0NTCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1890, '2016-08-10 18:06:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:52.94785Z","gw_timestamp":1769977227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2NDAxMjE4MDA0NTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1892, '2016-08-10 18:06:06', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":785,"f_cnt_down":1437,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:06:04.891145Z","gw_timestamp":526209116,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADcwMDU1NjAxMjM2MDA0MzQIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1894, '2016-08-10 18:06:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:07.315987Z","gw_timestamp":1784341083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU0NDAxMjE4MDA0NTCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1896, '2016-08-10 18:06:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:21.688239Z","gw_timestamp":1798704739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU4MjAxMjE4MDA0NTCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1898, '2016-08-10 18:06:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:36.051479Z","gw_timestamp":1813068283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4NjAxMjE4MDA0NTCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1900, '2016-08-10 18:06:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:50.403734Z","gw_timestamp":1827431099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4NjAxMjE4MDA0NTCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1902, '2016-08-10 18:07:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:04.776248Z","gw_timestamp":1841794443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDUzNzAxMjE4MDA0NTCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1904, '2016-08-10 18:07:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:19.134439Z","gw_timestamp":1856157363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU4NDAxMjE4MDA0NTCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1869, '2016-08-10 18:03:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:03:14.958236Z","gw_timestamp":1611979659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU2MDAxMjE4MDA0NTCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1877, '2016-08-10 18:04:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:19.597482Z","gw_timestamp":1676615363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU0MjAxMjE4MDA0NTCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1879, '2016-08-10 18:04:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:33.95219Z","gw_timestamp":1690977971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU3NzAxMjE4MDA0NTCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1881, '2016-08-10 18:04:50', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":791,"f_cnt_down":1482,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:04:43.762889Z","gw_timestamp":445080820,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AIgwMDU5NDAxMjI5MDA0NTgIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1883, '2016-08-10 18:05:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:55.50168Z","gw_timestamp":1712523451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2MDAxMjE4MDA0NTCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1885, '2016-08-10 18:05:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:17.039605Z","gw_timestamp":1734069131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4MDAxMjE4MDA0NTCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1887, '2016-08-10 18:05:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:31.412856Z","gw_timestamp":1748432691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3MzAxMjE4MDA0NTCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1889, '2016-08-10 18:05:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:05:45.775078Z","gw_timestamp":1762795811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3MTAxMjE4MDA0NTCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1895, '2016-08-10 18:06:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:14.511883Z","gw_timestamp":1791522915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU2NDAxMjE4MDA0NTCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1897, '2016-08-10 18:06:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:28.868972Z","gw_timestamp":1805886667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDYwODAxMjE4MDA0NTCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1899, '2016-08-10 18:06:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:43.256289Z","gw_timestamp":1820249275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU0NjAxMjE4MDA0NTCuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1875, '2016-08-10 18:04:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:04:05.224219Z","gw_timestamp":1662251707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDUyOTAxMjE4MDA0NTCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1891, '2016-08-10 18:06:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:00.128349Z","gw_timestamp":1777159155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU3NzAxMjE4MDA0NTCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1893, '2016-08-10 18:06:08', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":786,"f_cnt_down":1438,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:20.690994Z","gw_timestamp":3457015676,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-111,"snr":-13.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADcwMDU1NjAxMjM2MDA0MzQIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1901, '2016-08-10 18:07:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:06:57.588368Z","gw_timestamp":1834612819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU1NTAxMjE4MDA0NTCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1903, '2016-08-10 18:07:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:11.949731Z","gw_timestamp":1848975643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU4MjAxMjE4MDA0NTCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1905, '2016-08-10 18:07:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:26.321253Z","gw_timestamp":1863339291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4OTAxMjE4MDA0NTCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1907, '2016-08-10 18:07:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:47.856864Z","gw_timestamp":1884884771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2ODAxMjE4MDA0NTCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1908, '2016-08-10 18:08:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:07:55.038486Z","gw_timestamp":1892065763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3NzAxMjE4MDA0NTCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1909, '2016-08-10 18:08:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:02.245508Z","gw_timestamp":1899247587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU2NDAxMjE4MDA0NTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1910, '2016-08-10 18:08:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:09.401743Z","gw_timestamp":1906429315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATswMDU0MjAxMjE4MDA0NTCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1911, '2016-08-10 18:08:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:16.588364Z","gw_timestamp":1913611243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2NDAxMjE4MDA0NTCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1912, '2016-08-10 18:08:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:23.773973Z","gw_timestamp":1920792963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2MjAxMjE4MDA0NTCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1913, '2016-08-10 18:08:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:30.952605Z","gw_timestamp":1927974891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU1NzAxMjE4MDA0NTCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1914, '2016-08-10 18:08:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:38.126239Z","gw_timestamp":1935156819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4MjAxMjE4MDA0NTCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1915, '2016-08-10 18:08:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:45.313986Z","gw_timestamp":1942338651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU4NDAxMjE4MDA0NTCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1919, '2016-08-10 18:09:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:14.038354Z","gw_timestamp":1971066059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU4MDAxMjE4MDA0NTCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1921, '2016-08-10 18:09:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:28.406604Z","gw_timestamp":1985429603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU2NjAxMjE4MDA0NTCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1923, '2016-08-10 18:09:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:42.776459Z","gw_timestamp":1999791795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU3MzAxMjE4MDA0NTCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1925, '2016-08-10 18:10:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:57.122241Z","gw_timestamp":2014155131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2ODAxMjE4MDA0NTCyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1953, '2016-08-10 18:13:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:25.395493Z","gw_timestamp":2222423603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NzAxMjE4MDA0NDmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1955, '2016-08-10 18:13:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:39.776165Z","gw_timestamp":2236787467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MDAxMjE4MDA0NDmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1957, '2016-08-10 18:14:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:01.30301Z","gw_timestamp":2258331899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5NDAxMjE4MDA0NDmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1959, '2016-08-10 18:14:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:15.665873Z","gw_timestamp":2272694723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzMzAxMjE4MDA0NDmuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1963, '2016-08-10 18:14:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:44.40694Z","gw_timestamp":2301420987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3MTAxMjE4MDA0NDmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1965, '2016-08-10 18:15:01', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":706,"f_cnt_down":1286,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:14:53.019834Z","gw_timestamp":1054338068,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABcwMDU5MDAxMjIyMDA0NjkJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1967, '2016-08-10 18:15:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:05.937374Z","gw_timestamp":2322965523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MjAxMjE4MDA0NDmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1969, '2016-08-10 18:15:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:27.488256Z","gw_timestamp":2344510059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU4MDAxMjE4MDA0NDmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1971, '2016-08-10 18:15:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:41.83951Z","gw_timestamp":2358873819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2ODAxMjE4MDA0NDmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1916, '2016-08-10 18:09:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:52.513008Z","gw_timestamp":1949520475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3NTAxMjE4MDA0NTCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1920, '2016-08-10 18:09:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:21.222998Z","gw_timestamp":1978247883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDU3MzAxMjE4MDA0NTCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1922, '2016-08-10 18:09:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:35.581289Z","gw_timestamp":1992610595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDUzNTAxMjE4MDA0NTCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1924, '2016-08-10 18:10:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:49.944739Z","gw_timestamp":2006973307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU4NDAxMjE4MDA0NTCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1926, '2016-08-10 18:10:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:04.305862Z","gw_timestamp":2021336859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDYwMzAxMjE4MDA0NTCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1928, '2016-08-10 18:10:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:18.671122Z","gw_timestamp":2035700723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4NjAxMjE4MDA0NTCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1930, '2016-08-10 18:10:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:33.043987Z","gw_timestamp":2050064363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2NjAxMjE4MDA0NTCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1934, '2016-08-10 18:11:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:01.790727Z","gw_timestamp":2078790523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU2NDAxMjE4MDA0NTCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1936, '2016-08-10 18:11:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:08.951766Z","gw_timestamp":2085971523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU2NjAxMjE4MDA0NTCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1938, '2016-08-10 18:11:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:23.323086Z","gw_timestamp":2100335275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU2ODAxMjE4MDA0NTCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1940, '2016-08-10 18:11:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:37.666995Z","gw_timestamp":2114698931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MTAxMjE4MDA0NTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1942, '2016-08-10 18:12:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:59.215826Z","gw_timestamp":2136242531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUxNTAxMjE4MDA0NTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1944, '2016-08-10 18:12:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:13.609397Z","gw_timestamp":2150606075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MjAxMjE4MDA0NDmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1946, '2016-08-10 18:12:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:35.121126Z","gw_timestamp":2172150723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2ODAxMjE4MDA0NDmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1917, '2016-08-10 18:09:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:08:59.680116Z","gw_timestamp":1956702299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATowMDUxNzAxMjE4MDA0NTCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1927, '2016-08-10 18:10:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:11.492492Z","gw_timestamp":2028518787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU0OTAxMjE4MDA0NTCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1929, '2016-08-10 18:10:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:25.852729Z","gw_timestamp":2042882643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU2ODAxMjE4MDA0NTCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1931, '2016-08-10 18:10:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:40.223988Z","gw_timestamp":2057246195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3NTAxMjE4MDA0NTCuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1933, '2016-08-10 18:11:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:54.587249Z","gw_timestamp":2071609011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2NDAxMjE4MDA0NTCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1935, '2016-08-10 18:11:10', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1268,"f_cnt_down":2071,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:11:08.343524Z","gw_timestamp":829661644,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHEwMDU2NjAxMjI2MDA0NDQRMQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1937, '2016-08-10 18:11:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:16.125103Z","gw_timestamp":2093153347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4NjAxMjE4MDA0NTCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1939, '2016-08-10 18:11:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:30.490508Z","gw_timestamp":2107516995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2ODAxMjE4MDA0NTCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1941, '2016-08-10 18:12:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:11:52.038247Z","gw_timestamp":2129061539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATgwMDU4NDAxMjE4MDA0NTCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1943, '2016-08-10 18:12:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:06.401777Z","gw_timestamp":2143424355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0NDAxMjE4MDA0NDmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1945, '2016-08-10 18:12:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:27.942491Z","gw_timestamp":2164968795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2NjAxMjE4MDA0NDmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1947, '2016-08-10 18:12:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:42.309006Z","gw_timestamp":2179332651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NTAxMjE4MDA0NDmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1949, '2016-08-10 18:13:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:56.674982Z","gw_timestamp":2193696307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1NTAxMjE4MDA0NDmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1951, '2016-08-10 18:13:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:11.038253Z","gw_timestamp":2208059955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NDAxMjE4MDA0NDmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1918, '2016-08-10 18:09:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:09:06.862741Z","gw_timestamp":1963884123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDYwNTAxMjE4MDA0NTCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1932, '2016-08-10 18:10:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:10:47.409624Z","gw_timestamp":2064427915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3MzAxMjE4MDA0NTCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1950, '2016-08-10 18:13:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:03.872966Z","gw_timestamp":2200878227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MDAxMjE4MDA0NDmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1956, '2016-08-10 18:14:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:54.145384Z","gw_timestamp":2251150491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzMzAxMjE4MDA0NDmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1958, '2016-08-10 18:14:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:08.492535Z","gw_timestamp":2265513731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1NzAxMjE4MDA0NDmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1960, '2016-08-10 18:14:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:22.85251Z","gw_timestamp":2279875819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MjAxMjE4MDA0NDmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1962, '2016-08-10 18:14:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:37.210737Z","gw_timestamp":2294239051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2ODAxMjE4MDA0NDmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1964, '2016-08-10 18:14:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:51.571003Z","gw_timestamp":2308602707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NTAxMjE4MDA0NDmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1976, '2016-08-10 18:16:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:17.750043Z","gw_timestamp":2394781907,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU4OTAxMjE4MDA0NDmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1978, '2016-08-10 18:16:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:39.305636Z","gw_timestamp":2416327595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NDAxMjE4MDA0NDmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1980, '2016-08-10 18:17:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:53.655765Z","gw_timestamp":2430691139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MzAxMjE4MDA0NDmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1982, '2016-08-10 18:17:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:17:22.383266Z","gw_timestamp":2459417611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3MzAxMjE4MDA0NDmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1984, '2016-08-10 18:17:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:17:36.748637Z","gw_timestamp":2473781363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MjAxMjE4MDA0NDixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1986, '2016-08-10 18:18:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:17:58.304881Z","gw_timestamp":2495326739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2NDAxMjE4MDA0NDixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1948, '2016-08-10 18:12:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:12:49.488372Z","gw_timestamp":2186514579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2NDAxMjE4MDA0NDmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1952, '2016-08-10 18:13:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:18.217883Z","gw_timestamp":2215241883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NTAxMjE4MDA0NDmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1954, '2016-08-10 18:13:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:13:32.572383Z","gw_timestamp":2229605539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUzNTAxMjE4MDA0NDmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1966, '2016-08-10 18:15:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:58.763127Z","gw_timestamp":2315783699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NjAxMjE4MDA0NDmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1968, '2016-08-10 18:15:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:20.316028Z","gw_timestamp":2337328235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3MzAxMjE4MDA0NDmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1970, '2016-08-10 18:15:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:34.66388Z","gw_timestamp":2351691987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDUzNTAxMjE4MDA0NDmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1972, '2016-08-10 18:15:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:49.02195Z","gw_timestamp":2366055539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3MTAxMjE4MDA0NDmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1974, '2016-08-10 18:16:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:03.39463Z","gw_timestamp":2380418251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MjAxMjE4MDA0NDmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1990, '2016-08-10 18:18:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:27.029274Z","gw_timestamp":2524054251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3MzAxMjE4MDA0NDiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1992, '2016-08-10 18:18:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:41.391268Z","gw_timestamp":2538417907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2MDAxMjE4MDA0NDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1994, '2016-08-10 18:19:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:55.752513Z","gw_timestamp":2552780515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2ODAxMjE4MDA0NDix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1996, '2016-08-10 18:19:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:10.11474Z","gw_timestamp":2567144379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3NzAxMjE4MDA0NDiumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1998, '2016-08-10 18:19:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:24.484948Z","gw_timestamp":2581506987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1ODAxMjE4MDA0NDiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2028, '2016-08-10 18:22:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:45.564911Z","gw_timestamp":2782594779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU1ODAxMjE5MDA0NDivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1961, '2016-08-10 18:14:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:14:30.034123Z","gw_timestamp":2287057331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NDAxMjE4MDA0NDmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1979, '2016-08-10 18:16:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:46.477121Z","gw_timestamp":2423509315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1NzAxMjE4MDA0NDmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1981, '2016-08-10 18:17:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:17:08.030233Z","gw_timestamp":2445054787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NzAxMjE4MDA0NDmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1983, '2016-08-10 18:17:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:17:29.574267Z","gw_timestamp":2466599435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2NjAxMjE4MDA0NDixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2009, '2016-08-10 18:20:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:36.305613Z","gw_timestamp":2653324411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2OTAxMjE4MDA0NDmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2011, '2016-08-10 18:20:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:50.687904Z","gw_timestamp":2667687859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NjAxMjE4MDA0NDmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2013, '2016-08-10 18:21:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:05.013845Z","gw_timestamp":2682050779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NTAxMjE5MDA0NDmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2015, '2016-08-10 18:21:21', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":786,"f_cnt_down":1439,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:50:31.530913Z","gw_timestamp":72888300,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACEwMDUzNTAxMjM3MDA0MzILcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2017, '2016-08-10 18:21:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:26.566777Z","gw_timestamp":2703596355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3MzAxMjE5MDA0NDmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2019, '2016-08-10 18:21:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:40.943546Z","gw_timestamp":2717960003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDUzMTAxMjE5MDA0NDmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2021, '2016-08-10 18:22:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:55.286279Z","gw_timestamp":2732322827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU4MzAxMjE5MDA0NDmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2023, '2016-08-10 18:22:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:09.65252Z","gw_timestamp":2746686475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDYxNTAxMjE5MDA0NDmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2025, '2016-08-10 18:22:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:24.023775Z","gw_timestamp":2761049715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU4MzAxMjE5MDA0NDmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2027, '2016-08-10 18:22:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:38.373022Z","gw_timestamp":2775412843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2MjAxMjE5MDA0NDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1973, '2016-08-10 18:16:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:15:56.218866Z","gw_timestamp":2373236739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MjAxMjE4MDA0NDmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1975, '2016-08-10 18:16:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:10.570005Z","gw_timestamp":2387600179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MjAxMjE4MDA0NDmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1977, '2016-08-10 18:16:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:16:24.939211Z","gw_timestamp":2401963835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MzAxMjE4MDA0NDmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1985, '2016-08-10 18:17:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:17:43.939261Z","gw_timestamp":2480963091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDYzNTAxMjE4MDA0NDivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1987, '2016-08-10 18:18:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:05.47314Z","gw_timestamp":2502508667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MjAxMjE4MDA0NDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1989, '2016-08-10 18:18:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:19.839394Z","gw_timestamp":2516872323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4OTAxMjE4MDA0NDiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1991, '2016-08-10 18:18:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:34.207588Z","gw_timestamp":2531236179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDYwODAxMjE4MDA0NDivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1993, '2016-08-10 18:18:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:48.608161Z","gw_timestamp":2545599203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5ODAxMjE4MDA0NDmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1995, '2016-08-10 18:19:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:02.929502Z","gw_timestamp":2559962443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDY0MjAxMjE4MDA0NDiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1997, '2016-08-10 18:19:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:17.29964Z","gw_timestamp":2574325475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2OTAxMjE4MDA0NDmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1999, '2016-08-10 18:19:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:31.65664Z","gw_timestamp":2588688915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4MDAxMjE4MDA0NDmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2001, '2016-08-10 18:19:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:46.014152Z","gw_timestamp":2603052563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2OTAxMjE5MDA0NDivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2003, '2016-08-10 18:20:01', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":792,"f_cnt_down":1483,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:19:54.525581Z","gw_timestamp":1355843964,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":3,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFowMDU4ODAxMjI2MDA0NTgJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2005, '2016-08-10 18:20:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:07.559272Z","gw_timestamp":2624597411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NDAxMjE5MDA0NDmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (1988, '2016-08-10 18:18:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:18:12.675183Z","gw_timestamp":2509690603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NzAxMjE4MDA0NDiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2000, '2016-08-10 18:19:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:38.841264Z","gw_timestamp":2595870635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4MDAxMjE4MDA0NDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2002, '2016-08-10 18:19:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:19:53.203718Z","gw_timestamp":2610234395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4OTAxMjE4MDA0NDmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2004, '2016-08-10 18:20:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:00.39549Z","gw_timestamp":2617416115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYwODAxMjE4MDA0NDiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2006, '2016-08-10 18:20:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:14.751389Z","gw_timestamp":2631778827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1MTAxMjE5MDA0NDmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2008, '2016-08-10 18:20:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:29.116766Z","gw_timestamp":2646142691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzNTAxMjE4MDA0NDmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2010, '2016-08-10 18:20:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:43.481149Z","gw_timestamp":2660506339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYwMzAxMjE5MDA0NDmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2012, '2016-08-10 18:21:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:57.840395Z","gw_timestamp":2674868955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NDAxMjE5MDA0NDmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2014, '2016-08-10 18:21:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:12.198526Z","gw_timestamp":2689232707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1ODAxMjE5MDA0NDmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2016, '2016-08-10 18:21:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:19.383412Z","gw_timestamp":2696414427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU3NDAxMjE5MDA0NDmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2018, '2016-08-10 18:21:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:33.750775Z","gw_timestamp":2710778291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NTAxMjE5MDA0NDmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2020, '2016-08-10 18:21:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:21:48.104637Z","gw_timestamp":2725141003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU1MzAxMjE5MDA0NDmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2022, '2016-08-10 18:22:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:02.472022Z","gw_timestamp":2739504651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU0MjAxMjE5MDA0NDmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2024, '2016-08-10 18:22:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:16.843275Z","gw_timestamp":2753868307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDYwODAxMjE5MDA0NDmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2007, '2016-08-10 18:20:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:20:21.951413Z","gw_timestamp":2638960755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NzAxMjE4MDA0NDmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2031, '2016-08-10 18:23:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:07.113943Z","gw_timestamp":2804139315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3ODAxMjE5MDA0NDivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2033, '2016-08-10 18:23:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:21.470896Z","gw_timestamp":2818502971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MzAxMjE5MDA0NDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2035, '2016-08-10 18:23:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:35.835132Z","gw_timestamp":2832866619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3MTAxMjE5MDA0NDiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2037, '2016-08-10 18:23:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:50.190409Z","gw_timestamp":2847229339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NDAxMjE5MDA0NDiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2039, '2016-08-10 18:24:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:04.56265Z","gw_timestamp":2861593091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUyMjAxMjE5MDA0NDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2041, '2016-08-10 18:24:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:18.915896Z","gw_timestamp":2875955803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NzAxMjE5MDA0NDiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2043, '2016-08-10 18:24:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:33.301423Z","gw_timestamp":2890319459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5NDAxMjE5MDA0NDiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2045, '2016-08-10 18:24:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:47.665666Z","gw_timestamp":2904683003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2OTAxMjE5MDA0NDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2047, '2016-08-10 18:25:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:02.015796Z","gw_timestamp":2919046867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MjAxMjE5MDA0NDiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2049, '2016-08-10 18:25:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:16.368907Z","gw_timestamp":2933410515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MjAxMjE5MDA0NDiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2051, '2016-08-10 18:25:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:30.744283Z","gw_timestamp":2947774163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MjAxMjE5MDA0NDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2053, '2016-08-10 18:25:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:45.097801Z","gw_timestamp":2962137403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0NDAxMjE5MDA0NDiuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2055, '2016-08-10 18:26:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:59.459788Z","gw_timestamp":2976500019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2NzAxMjE5MDA0NDizew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2026, '2016-08-10 18:22:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:31.19276Z","gw_timestamp":2768230915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5OTAxMjE5MDA0NDiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2030, '2016-08-10 18:23:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:59.929026Z","gw_timestamp":2796957283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1NTAxMjE5MDA0NDiyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2032, '2016-08-10 18:23:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:14.293272Z","gw_timestamp":2811321035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MDAxMjE5MDA0NDiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2034, '2016-08-10 18:23:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:28.655655Z","gw_timestamp":2825684795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1ODAxMjE5MDA0NDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2036, '2016-08-10 18:23:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:43.029046Z","gw_timestamp":2840048235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUyMjAxMjE5MDA0NDiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2038, '2016-08-10 18:24:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:23:57.391297Z","gw_timestamp":2854411267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MzAxMjE5MDA0NDiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2040, '2016-08-10 18:24:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:11.758544Z","gw_timestamp":2868774811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MjAxMjE5MDA0NDiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2042, '2016-08-10 18:24:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:26.10952Z","gw_timestamp":2883137635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MjAxMjE5MDA0NDix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2044, '2016-08-10 18:24:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:40.462722Z","gw_timestamp":2897501179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MjAxMjE5MDA0NDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2046, '2016-08-10 18:25:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:24:54.829253Z","gw_timestamp":2911864931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1NTAxMjE5MDA0NDixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2048, '2016-08-10 18:25:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:09.192287Z","gw_timestamp":2926228691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3ODAxMjE5MDA0NDivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2050, '2016-08-10 18:25:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:23.572537Z","gw_timestamp":2940592347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5OTAxMjE5MDA0NDit+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2052, '2016-08-10 18:25:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:37.915911Z","gw_timestamp":2954955995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1ODAxMjE5MDA0NDixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2054, '2016-08-10 18:26:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:25:52.279507Z","gw_timestamp":2969318707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0NDAxMjE5MDA0NDiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2029, '2016-08-10 18:22:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:22:52.745292Z","gw_timestamp":2789775971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MjAxMjE5MDA0NDiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2059, '2016-08-10 18:26:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:21.011661Z","gw_timestamp":2998045179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MDAxMjE5MDA0NDivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2061, '2016-08-10 18:26:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:35.367042Z","gw_timestamp":3012407795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDYxMjAxMjE5MDA0NDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2063, '2016-08-10 18:26:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:49.729167Z","gw_timestamp":3026771547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NzAxMjE5MDA0NDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2065, '2016-08-10 18:27:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:04.107682Z","gw_timestamp":3041135099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MDAxMjE5MDA0NDixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2067, '2016-08-10 18:27:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:18.462663Z","gw_timestamp":3055498331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU0OTAxMjE5MDA0NDiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2069, '2016-08-10 18:27:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:32.819037Z","gw_timestamp":3069861563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5NjAxMjE5MDA0NDiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2071, '2016-08-10 18:27:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:47.1951Z","gw_timestamp":3084225211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU1MzAxMjE5MDA0NDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2073, '2016-08-10 18:28:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:01.558485Z","gw_timestamp":3098589075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU0NDAxMjE5MDA0NDiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2075, '2016-08-10 18:28:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:15.912791Z","gw_timestamp":3112952627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NDAxMjE5MDA0NDiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2077, '2016-08-10 18:28:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:30.296426Z","gw_timestamp":3127316275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4MDAxMjE5MDA0NDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2079, '2016-08-10 18:28:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:44.638285Z","gw_timestamp":3141680035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1ODAxMjE5MDA0NDix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2081, '2016-08-10 18:29:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:59.014781Z","gw_timestamp":3156043787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NDAxMjE5MDA0NDiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2083, '2016-08-10 18:29:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:13.372743Z","gw_timestamp":3170407339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2OTAxMjE5MDA0NDiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2056, '2016-08-10 18:26:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:06.640264Z","gw_timestamp":2983681427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3MTAxMjE5MDA0NDixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2060, '2016-08-10 18:26:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:28.196287Z","gw_timestamp":3005226483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MjAxMjE5MDA0NDiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2062, '2016-08-10 18:26:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:42.551466Z","gw_timestamp":3019589723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MDAxMjE5MDA0NDivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2064, '2016-08-10 18:27:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:56.919772Z","gw_timestamp":3033953267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUzMzAxMjE5MDA0NDixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2066, '2016-08-10 18:27:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:11.276031Z","gw_timestamp":3048317027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDYxNTAxMjE5MDA0NDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2068, '2016-08-10 18:27:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:25.641283Z","gw_timestamp":3062679635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU4MDAxMjE5MDA0NDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2070, '2016-08-10 18:27:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:40.01387Z","gw_timestamp":3077043491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU2OTAxMjE5MDA0NDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2072, '2016-08-10 18:28:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:27:54.375787Z","gw_timestamp":3091407139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU1NTAxMjE5MDA0NDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2102, '2016-08-10 18:31:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:22.641172Z","gw_timestamp":3299676667,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjE5MDA0NDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2104, '2016-08-10 18:31:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:37.007418Z","gw_timestamp":3314040211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5NDAxMjE5MDA0NDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2106, '2016-08-10 18:32:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:51.373191Z","gw_timestamp":3328403027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5MDAxMjE5MDA0NDixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2108, '2016-08-10 18:32:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:12.907555Z","gw_timestamp":3349948611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU4NTAxMjE5MDA0NDityg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2110, '2016-08-10 18:32:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:27.279052Z","gw_timestamp":3364311323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU1NTAxMjE5MDA0NDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2112, '2016-08-10 18:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:41.660419Z","gw_timestamp":3378674875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU4NTAxMjE5MDA0NDiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2057, '2016-08-10 18:26:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:26:13.830286Z","gw_timestamp":2990863355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MjAxMjE5MDA0NDiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2087, '2016-08-10 18:29:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:42.097422Z","gw_timestamp":3199132763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU4NTAxMjE5MDA0NDiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2089, '2016-08-10 18:30:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:56.463486Z","gw_timestamp":3213496419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDUxNzAxMjE5MDA0NDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2091, '2016-08-10 18:30:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:03.63917Z","gw_timestamp":3220677931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDUzNzAxMjE5MDA0NDivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2093, '2016-08-10 18:30:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:18.005661Z","gw_timestamp":3235041059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYwNjAxMjE5MDA0NDivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2095, '2016-08-10 18:30:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:32.373782Z","gw_timestamp":3249404819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU5MjAxMjE5MDA0NDiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2097, '2016-08-10 18:30:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:46.735028Z","gw_timestamp":3263768363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU3ODAxMjE5MDA0NDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2099, '2016-08-10 18:31:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:01.122886Z","gw_timestamp":3278131075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjE5MDA0NDivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2101, '2016-08-10 18:31:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:15.457545Z","gw_timestamp":3292494731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3ODAxMjE5MDA0NDiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2103, '2016-08-10 18:31:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:29.814025Z","gw_timestamp":3306858491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDYwMTAxMjE5MDA0NDixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2105, '2016-08-10 18:31:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:44.177048Z","gw_timestamp":3321221203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MDAxMjE5MDA0NDiuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2107, '2016-08-10 18:32:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:58.545294Z","gw_timestamp":3335584955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDYxMjAxMjE5MDA0NDixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2109, '2016-08-10 18:32:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:20.090176Z","gw_timestamp":3357130331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDUzNTAxMjE5MDA0NDixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2111, '2016-08-10 18:32:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:34.458431Z","gw_timestamp":3371493155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MjAxMjE5MDA0NDiuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2058, '2016-08-10 18:26:23', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1269,"f_cnt_down":2072,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:26:19.161037Z","gw_timestamp":1740479612,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACswMDU4NTAxMjI2MDA0NDUVoQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2074, '2016-08-10 18:28:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:08.731167Z","gw_timestamp":3105770803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5MjAxMjE5MDA0NDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2076, '2016-08-10 18:28:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:23.104474Z","gw_timestamp":3120134451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYwODAxMjE5MDA0NDivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2078, '2016-08-10 18:28:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:37.461664Z","gw_timestamp":3134498107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjE5MDA0NDivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2080, '2016-08-10 18:29:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:28:51.820048Z","gw_timestamp":3148861963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MDAxMjE5MDA0NDiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2082, '2016-08-10 18:29:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:06.183107Z","gw_timestamp":3163225611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5NDAxMjE5MDA0NDiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2084, '2016-08-10 18:29:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:20.555637Z","gw_timestamp":3177588739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NDAxMjE5MDA0NDiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2086, '2016-08-10 18:29:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:34.925071Z","gw_timestamp":3191951563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU4NzAxMjE5MDA0NDix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2088, '2016-08-10 18:29:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:49.278915Z","gw_timestamp":3206314595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1MzAxMjE5MDA0NDivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2090, '2016-08-10 18:30:06', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":707,"f_cnt_down":1287,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:30:03.788719Z","gw_timestamp":1965107404,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAcwMDU2NjAxMjIxMDA0OTII4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2092, '2016-08-10 18:30:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:10.84101Z","gw_timestamp":3227859131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MDAxMjE5MDA0NDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2094, '2016-08-10 18:30:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:25.200169Z","gw_timestamp":3242222883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5MjAxMjE5MDA0NDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2096, '2016-08-10 18:30:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:39.550421Z","gw_timestamp":3256586643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU5MDAxMjE5MDA0NDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2098, '2016-08-10 18:31:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:30:53.918672Z","gw_timestamp":3270949979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU3NDAxMjE5MDA0NDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2085, '2016-08-10 18:29:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:29:27.739979Z","gw_timestamp":3184770155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDYxNTAxMjE5MDA0NDiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2115, '2016-08-10 18:33:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:03.181924Z","gw_timestamp":3400218579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MjAxMjE5MDA0NDixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2117, '2016-08-10 18:33:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:17.572453Z","gw_timestamp":3414582227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5NDAxMjE5MDA0NDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2119, '2016-08-10 18:33:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:31.913889Z","gw_timestamp":3428945987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU1NTAxMjE5MDA0NDivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2121, '2016-08-10 18:33:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:46.26817Z","gw_timestamp":3443309635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjE5MDA0NDixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2123, '2016-08-10 18:34:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:00.628048Z","gw_timestamp":3457673291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU0MjAxMjE5MDA0NDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2125, '2016-08-10 18:34:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:22.180242Z","gw_timestamp":3479218875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDYxOTAxMjE5MDA0NDiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2127, '2016-08-10 18:34:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:36.548317Z","gw_timestamp":3493582419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1NTAxMjE5MDA0NDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2129, '2016-08-10 18:35:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:50.912431Z","gw_timestamp":3507945243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjE5MDA0NDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2131, '2016-08-10 18:35:07', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":793,"f_cnt_down":1484,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:21.091233Z","gw_timestamp":902448620,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADwwMDYxODAxMjI1MDA0NzMSsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2133, '2016-08-10 18:35:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:05.262063Z","gw_timestamp":3522307955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NjAxMjE5MDA0NDiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2135, '2016-08-10 18:35:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:19.633932Z","gw_timestamp":3536671507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2NDAxMjE5MDA0NDiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2137, '2016-08-10 18:35:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:33.990168Z","gw_timestamp":3551034323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2NzAxMjE5MDA0NDiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2139, '2016-08-10 18:35:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:48.356563Z","gw_timestamp":3565397347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5NDAxMjE5MDA0NDexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2100, '2016-08-10 18:31:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:31:08.268924Z","gw_timestamp":3285312907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU1ODAxMjE5MDA0NDiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2116, '2016-08-10 18:33:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:10.368557Z","gw_timestamp":3407400403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5OTAxMjE5MDA0NDiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2118, '2016-08-10 18:33:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:24.719062Z","gw_timestamp":3421764059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjE5MDA0NDixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2120, '2016-08-10 18:33:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:39.09519Z","gw_timestamp":3436127811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MjAxMjE5MDA0NDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2122, '2016-08-10 18:34:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:33:53.45449Z","gw_timestamp":3450491363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2NDAxMjE5MDA0NDiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2124, '2016-08-10 18:34:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:15.006314Z","gw_timestamp":3472037155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU5NDAxMjE5MDA0NDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2126, '2016-08-10 18:34:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:29.367557Z","gw_timestamp":3486400803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU4MzAxMjE5MDA0NDiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2130, '2016-08-10 18:35:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:58.110324Z","gw_timestamp":3515126963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NDAxMjE5MDA0NDiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2132, '2016-08-10 18:35:07', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":794,"f_cnt_down":1485,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:35:05.291288Z","gw_timestamp":2266610124,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADwwMDYxODAxMjI1MDA0NzMSsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2134, '2016-08-10 18:35:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:12.453268Z","gw_timestamp":3529489779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU5MDAxMjE5MDA0NDixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2136, '2016-08-10 18:35:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:26.808558Z","gw_timestamp":3543852499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU5OTAxMjE5MDA0NDixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2138, '2016-08-10 18:35:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:41.173804Z","gw_timestamp":3558216043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU4MDAxMjE5MDA0NDixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2140, '2016-08-10 18:36:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:35:55.55945Z","gw_timestamp":3572578763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NzAxMjE5MDA0NDixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2142, '2016-08-10 18:36:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:09.905645Z","gw_timestamp":3586942619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjE5MDA0NDev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2113, '2016-08-10 18:32:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:48.823658Z","gw_timestamp":3385855971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjE5MDA0NDiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2143, '2016-08-10 18:36:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:17.085195Z","gw_timestamp":3594124347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NjAxMjE5MDA0NDev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2145, '2016-08-10 18:36:34', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":787,"f_cnt_down":1440,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:36:26.566838Z","gw_timestamp":2347885716,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABowMDUyNDAxMjM4MDA0MzIJ8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2147, '2016-08-10 18:36:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:38.633929Z","gw_timestamp":3615669923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0OTAxMjE5MDA0NDewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2114, '2016-08-10 18:32:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:32:55.992298Z","gw_timestamp":3393036963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3ODAxMjE5MDA0NDiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2128, '2016-08-10 18:34:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:34:43.718188Z","gw_timestamp":3500763411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU0MDAxMjE5MDA0NDiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2146, '2016-08-10 18:36:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:31.452309Z","gw_timestamp":3608488203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MjAxMjE5MDA0NDexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2148, '2016-08-10 18:36:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:45.822043Z","gw_timestamp":3622851851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2OTAxMjE5MDA0NDexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2141, '2016-08-10 18:36:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:02.721798Z","gw_timestamp":3579760691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5NjAxMjE5MDA0NDexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2144, '2016-08-10 18:36:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:24.260683Z","gw_timestamp":3601306267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3MTAxMjE5MDA0NDev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2149, '2016-08-10 18:37:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:36:52.993181Z","gw_timestamp":3630033675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NzAxMjE5MDA0NDeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2150, '2016-08-10 18:37:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:00.170018Z","gw_timestamp":3637215403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4MzAxMjE5MDA0NDeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2151, '2016-08-10 18:37:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:07.361434Z","gw_timestamp":3644397227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3MTAxMjE5MDA0NDewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2152, '2016-08-10 18:37:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:14.534055Z","gw_timestamp":3651579163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5MjAxMjE5MDA0NDewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2153, '2016-08-10 18:37:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:21.72368Z","gw_timestamp":3658760987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NjAxMjE5MDA0NDewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2154, '2016-08-10 18:37:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:28.907312Z","gw_timestamp":3665942915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3ODAxMjE5MDA0NDewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2155, '2016-08-10 18:37:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:36.081939Z","gw_timestamp":3673124739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5MDAxMjE5MDA0NDewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2156, '2016-08-10 18:37:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:43.258558Z","gw_timestamp":3680306459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MjAxMjE5MDA0NDewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2157, '2016-08-10 18:37:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:50.465794Z","gw_timestamp":3687487667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4MDAxMjE5MDA0NDeumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2158, '2016-08-10 18:38:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:37:57.629812Z","gw_timestamp":3694669283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUzMzAxMjE5MDA0NDewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2159, '2016-08-10 18:38:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:04.810435Z","gw_timestamp":3701851107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2NDAxMjE5MDA0NDexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2160, '2016-08-10 18:38:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:11.990061Z","gw_timestamp":3709032931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1ODAxMjE5MDA0NDevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2161, '2016-08-10 18:38:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:19.167445Z","gw_timestamp":3716214867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjE5MDA0NDexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2162, '2016-08-10 18:38:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:26.365533Z","gw_timestamp":3723396691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0OTAxMjE5MDA0NDevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2166, '2016-08-10 18:39:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:55.076931Z","gw_timestamp":3752123051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1NTAxMjE5MDA0NDewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2168, '2016-08-10 18:39:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:09.441561Z","gw_timestamp":3766486603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0MDAxMjE5MDA0NDewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2170, '2016-08-10 18:39:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:23.809437Z","gw_timestamp":3780849427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NjAxMjE5MDA0NDeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2172, '2016-08-10 18:40:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:52.529941Z","gw_timestamp":3809575691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5MjAxMjE5MDA0NDexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2174, '2016-08-10 18:40:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:06.895113Z","gw_timestamp":3823937883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1NTAxMjE5MDA0NDexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2176, '2016-08-10 18:40:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:21.262445Z","gw_timestamp":3838301115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MjAxMjE5MDA0NDew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2178, '2016-08-10 18:40:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:35.623688Z","gw_timestamp":3852664771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NTAxMjE5MDA0NDewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2180, '2016-08-10 18:41:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:57.173565Z","gw_timestamp":3874209411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzNzAxMjE5MDA0NDevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2182, '2016-08-10 18:41:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:11.526936Z","gw_timestamp":3888573171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUzMTAxMjE5MDA0NDeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2184, '2016-08-10 18:41:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:25.89819Z","gw_timestamp":3902936299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1NTAxMjE5MDA0NDewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2186, '2016-08-10 18:41:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:33.083007Z","gw_timestamp":3910117611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1ODAxMjE5MDA0NDewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2188, '2016-08-10 18:41:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:47.437063Z","gw_timestamp":3924480427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NzAxMjE5MDA0NDexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2190, '2016-08-10 18:42:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:01.819347Z","gw_timestamp":3938844179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDUzMzAxMjE5MDA0NDev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2163, '2016-08-10 18:38:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:33.540064Z","gw_timestamp":3730578203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MDAxMjE5MDA0NDey+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2167, '2016-08-10 18:39:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:02.298817Z","gw_timestamp":3759304779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4MDAxMjE5MDA0NDewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2195, '2016-08-10 18:42:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:37.713449Z","gw_timestamp":3974752171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MzAxMjE5MDA0NDewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2197, '2016-08-10 18:43:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:52.068695Z","gw_timestamp":3989116027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5NDAxMjE5MDA0NDevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2199, '2016-08-10 18:43:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:06.427951Z","gw_timestamp":4003478531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzMzAxMjIwMDA0NDewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2201, '2016-08-10 18:43:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:20.791196Z","gw_timestamp":4017841355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0NjAxMjIwMDA0NDev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2203, '2016-08-10 18:43:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:35.165446Z","gw_timestamp":4032205107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NzAxMjE5MDA0NDewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2205, '2016-08-10 18:43:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:49.544048Z","gw_timestamp":4046568763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzODAxMjIwMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2207, '2016-08-10 18:44:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:03.889063Z","gw_timestamp":4060932515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1MzAxMjIwMDA0NDewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2209, '2016-08-10 18:44:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:18.245327Z","gw_timestamp":4075296067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NzAxMjIwMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2211, '2016-08-10 18:44:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:32.622586Z","gw_timestamp":4089658779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjIwMDA0NDaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2213, '2016-08-10 18:45:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:54.153449Z","gw_timestamp":4111204259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1ODAxMjIwMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2215, '2016-08-10 18:45:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:08.5237Z","gw_timestamp":4125567075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2OTAxMjIwMDA0NDayew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2217, '2016-08-10 18:45:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:15.706319Z","gw_timestamp":4132748803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDYzODAxMjIwMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2164, '2016-08-10 18:38:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:40.721682Z","gw_timestamp":3737759299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDYwMzAxMjE5MDA0NDewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2194, '2016-08-10 18:42:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:30.531949Z","gw_timestamp":3967570443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MDAxMjIwMDA0NDewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2196, '2016-08-10 18:42:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:44.888061Z","gw_timestamp":3981934091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYxMDAxMjE5MDA0NDewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2198, '2016-08-10 18:43:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:59.272886Z","gw_timestamp":3996297547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2NzAxMjIwMDA0NDex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2200, '2016-08-10 18:43:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:13.621673Z","gw_timestamp":4010659523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MDAxMjIwMDA0NDeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2202, '2016-08-10 18:43:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:27.974811Z","gw_timestamp":4025023283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3MTAxMjE5MDA0NDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2204, '2016-08-10 18:43:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:42.349193Z","gw_timestamp":4039386931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUwNzAxMjIwMDA0NDaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2206, '2016-08-10 18:44:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:43:56.703449Z","gw_timestamp":4053750587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MDAxMjE5MDA0NDaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2208, '2016-08-10 18:44:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:11.06496Z","gw_timestamp":4068114339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NzAxMjIwMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2210, '2016-08-10 18:44:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:25.43295Z","gw_timestamp":4082477059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1NTAxMjIwMDA0NDavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2212, '2016-08-10 18:44:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:44:46.991359Z","gw_timestamp":4104022539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MjAxMjIwMDA0NDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2214, '2016-08-10 18:45:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:01.338336Z","gw_timestamp":4118386083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1MDAxMjIwMDA0NDaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2216, '2016-08-10 18:45:17', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":708,"f_cnt_down":1288,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:14:30.357586Z","gw_timestamp":1511714972,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAowMDUzNDAxMjI0MDA0ODkHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2218, '2016-08-10 18:45:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:22.892922Z","gw_timestamp":4139929795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MjAxMjIwMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2165, '2016-08-10 18:38:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:38:47.900311Z","gw_timestamp":3744941227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MjAxMjE5MDA0NDevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2169, '2016-08-10 18:39:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:16.622819Z","gw_timestamp":3773667595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0MDAxMjE5MDA0NDex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2171, '2016-08-10 18:39:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:45.357318Z","gw_timestamp":3802393963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NDAxMjE5MDA0NDeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2173, '2016-08-10 18:40:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:39:59.721936Z","gw_timestamp":3816756675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU3MTAxMjE5MDA0NDewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2175, '2016-08-10 18:40:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:14.079817Z","gw_timestamp":3831119395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NzAxMjE5MDA0NDew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2177, '2016-08-10 18:40:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:28.460279Z","gw_timestamp":3845483043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzNzAxMjE5MDA0NDeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2179, '2016-08-10 18:40:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:40:42.810536Z","gw_timestamp":3859845763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjE5MDA0NDevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2181, '2016-08-10 18:41:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:04.342327Z","gw_timestamp":3881391347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NTAxMjE5MDA0NDetKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2183, '2016-08-10 18:41:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:18.752761Z","gw_timestamp":3895754891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUyNjAxMjE5MDA0NDexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2185, '2016-08-10 18:41:35', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1270,"f_cnt_down":2073,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:41:29.978622Z","gw_timestamp":2651297652,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:10:45.778593Z","gw_timestamp":1287135980,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADQwMDU0MDAxMjI2MDA0NDgcYQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2187, '2016-08-10 18:41:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:40.256451Z","gw_timestamp":3917299019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3NjAxMjE5MDA0NDex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2189, '2016-08-10 18:42:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:41:54.618705Z","gw_timestamp":3931662251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5NDAxMjE5MDA0NDevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2191, '2016-08-10 18:42:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:08.990159Z","gw_timestamp":3946025483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3ODAxMjE5MDA0NDev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2192, '2016-08-10 18:42:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:16.156564Z","gw_timestamp":3953206691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjE5MDA0NDewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2222, '2016-08-10 18:46:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:51.614529Z","gw_timestamp":4168656059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU4NzAxMjIwMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2224, '2016-08-10 18:46:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:05.969707Z","gw_timestamp":4183019915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1NjAxMjIwMDA0NDax+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2226, '2016-08-10 18:46:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:27.522705Z","gw_timestamp":4204564555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU3NDAxMjIwMDA0NDaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2228, '2016-08-10 18:46:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:41.884943Z","gw_timestamp":4218928107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU2MTAxMjIwMDA0NDawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2230, '2016-08-10 18:47:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:56.251207Z","gw_timestamp":4233291659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5MjAxMjIwMDA0NDavCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2232, '2016-08-10 18:47:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:10.610464Z","gw_timestamp":4247654371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU0NDAxMjIwMDA0NDaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2250, '2016-08-10 18:49:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:27.063465Z","gw_timestamp":89139267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU1NjAxMjIwMDA0NDawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2252, '2016-08-10 18:49:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:41.424853Z","gw_timestamp":103503027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU0MDAxMjIwMDA0NDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2254, '2016-08-10 18:50:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:55.791971Z","gw_timestamp":117866371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MzAxMjIwMDA0NDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2256, '2016-08-10 18:50:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:10.174663Z","gw_timestamp":132229395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MzAxMjIwMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2258, '2016-08-10 18:50:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:17.330238Z","gw_timestamp":139411323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2NTAxMjIwMDA0NDaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2260, '2016-08-10 18:50:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:38.873718Z","gw_timestamp":160956699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1ODAxMjIwMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2262, '2016-08-10 18:51:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:53.245974Z","gw_timestamp":175320451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1MDAxMjIwMDA0NDauug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2193, '2016-08-10 18:42:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:42:23.348185Z","gw_timestamp":3960388611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0NDAxMjE5MDA0NDeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2221, '2016-08-10 18:45:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:44.427824Z","gw_timestamp":4161474331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MTAxMjIwMDA0NDaySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2223, '2016-08-10 18:46:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:58.818349Z","gw_timestamp":4175837987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1NjAxMjIwMDA0NDavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2225, '2016-08-10 18:46:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:13.161334Z","gw_timestamp":4190201635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MTAxMjIwMDA0NDaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2227, '2016-08-10 18:46:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:34.69933Z","gw_timestamp":4211746179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU1ODAxMjIwMDA0NDawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2229, '2016-08-10 18:46:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:46:49.059793Z","gw_timestamp":4226109827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDUzNzAxMjIwMDA0NDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2231, '2016-08-10 18:47:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:03.443108Z","gw_timestamp":4240472755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU1NDAxMjIwMDA0NDaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2233, '2016-08-10 18:47:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:17.792081Z","gw_timestamp":4254836299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2NTAxMjIwMDA0NDavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2235, '2016-08-10 18:47:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:32.155332Z","gw_timestamp":4269199955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3ODAxMjIwMDA0NDawOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2237, '2016-08-10 18:47:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:46.513532Z","gw_timestamp":4283563707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU4MzAxMjIwMDA0NDaySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2239, '2016-08-10 18:48:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:00.881087Z","gw_timestamp":2959131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjIwMDA0NDawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2241, '2016-08-10 18:48:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:15.265674Z","gw_timestamp":17322675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjIwMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2243, '2016-08-10 18:48:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:36.793053Z","gw_timestamp":38867219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5MjAxMjIwMDA0NDaxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2245, '2016-08-10 18:48:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:51.156215Z","gw_timestamp":53230971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3ODAxMjIwMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2219, '2016-08-10 18:45:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:30.06463Z","gw_timestamp":4147111515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDUzMzAxMjIwMDA0NDayaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2249, '2016-08-10 18:49:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:19.876845Z","gw_timestamp":81957443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3MjAxMjIwMDA0NDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2251, '2016-08-10 18:49:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:34.256091Z","gw_timestamp":96321099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjIwMDA0NDavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2253, '2016-08-10 18:49:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:48.605334Z","gw_timestamp":110684755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3ODAxMjIwMDA0NDaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2255, '2016-08-10 18:50:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:02.971593Z","gw_timestamp":125047459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3MjAxMjIwMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2257, '2016-08-10 18:50:19', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":794,"f_cnt_down":1486,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:19:31.854201Z","gw_timestamp":1813211588,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-127,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD4wMDU3NzAxMjI2MDA0NzIIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2259, '2016-08-10 18:50:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:31.705845Z","gw_timestamp":153774979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MzAxMjIwMDA0NDavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2289, '2016-08-10 18:54:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:59.960353Z","gw_timestamp":362042523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MzAxMjIwMDA0NDaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2291, '2016-08-10 18:54:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:14.32873Z","gw_timestamp":376406275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU1NDAxMjIwMDA0NDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2293, '2016-08-10 18:54:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:28.690185Z","gw_timestamp":390769827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5MjAxMjIwMDA0NDauug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2295, '2016-08-10 18:54:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:43.087499Z","gw_timestamp":405133579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjIwMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2297, '2016-08-10 18:54:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:57.409485Z","gw_timestamp":419497235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1MDAxMjIwMDA0NDaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2299, '2016-08-10 18:55:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:11.77591Z","gw_timestamp":433860987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-82,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU1NDAxMjIwMDA0NDay+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2301, '2016-08-10 18:55:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:26.143971Z","gw_timestamp":448224539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU2MzAxMjIwMDA0NDav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2220, '2016-08-10 18:45:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:45:37.255582Z","gw_timestamp":4154293339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2OTAxMjIwMDA0NDawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2234, '2016-08-10 18:47:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:24.974708Z","gw_timestamp":4262018235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU0NDAxMjIwMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2236, '2016-08-10 18:47:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:39.363239Z","gw_timestamp":4276381883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU5MjAxMjIwMDA0NDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2238, '2016-08-10 18:48:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:47:53.706602Z","gw_timestamp":4290745019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU4MTAxMjIwMDA0NDaymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2240, '2016-08-10 18:48:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:08.066461Z","gw_timestamp":10140851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU1ODAxMjIwMDA0NDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2242, '2016-08-10 18:48:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:29.612343Z","gw_timestamp":31685595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDYwNjAxMjIwMDA0NDawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2244, '2016-08-10 18:48:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:43.973582Z","gw_timestamp":46049251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2MTAxMjIwMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2246, '2016-08-10 18:49:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:48:58.333958Z","gw_timestamp":60412795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU0NzAxMjIwMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2248, '2016-08-10 18:49:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:12.70147Z","gw_timestamp":74776035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU4NTAxMjIwMDA0NDayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2266, '2016-08-10 18:51:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:21.97247Z","gw_timestamp":204046723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDYxNzAxMjIwMDA0NDaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2268, '2016-08-10 18:51:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:36.327842Z","gw_timestamp":218409539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzNDAxMjIwMDA0NDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2270, '2016-08-10 18:51:46', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":789,"f_cnt_down":1442,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:20:53.222049Z","gw_timestamp":1894579436,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjM5MDA0MzITUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2272, '2016-08-10 18:51:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:50.701358Z","gw_timestamp":232773195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU4MzAxMjIwMDA0NDaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2274, '2016-08-10 18:52:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:05.059805Z","gw_timestamp":247135803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjIwMDA0NDaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2247, '2016-08-10 18:49:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:49:05.513834Z","gw_timestamp":67594731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjIwMDA0NDawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2261, '2016-08-10 18:50:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:50:46.061529Z","gw_timestamp":168138635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MzAxMjIwMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2263, '2016-08-10 18:51:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:00.429803Z","gw_timestamp":182502283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2OTAxMjIwMDA0NDaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2265, '2016-08-10 18:51:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:14.792066Z","gw_timestamp":196865627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU4NzAxMjIwMDA0NDax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2267, '2016-08-10 18:51:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:29.151108Z","gw_timestamp":211228027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2NzAxMjIwMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2269, '2016-08-10 18:51:39', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":788,"f_cnt_down":1441,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:51:37.422053Z","gw_timestamp":3258741388,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-2.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjM5MDA0MzITUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2271, '2016-08-10 18:51:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:43.507368Z","gw_timestamp":225591259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MTAxMjIwMDA0NDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2273, '2016-08-10 18:52:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:57.869943Z","gw_timestamp":239954499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU3NjAxMjIwMDA0NDavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2275, '2016-08-10 18:52:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:12.232975Z","gw_timestamp":254317627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0NTAxMjIwMDA0NDauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2277, '2016-08-10 18:52:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:26.605214Z","gw_timestamp":268680443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NzAxMjIwMDA0NDavKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2279, '2016-08-10 18:52:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:40.962472Z","gw_timestamp":283044203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU0MDAxMjIwMDA0NDazGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2281, '2016-08-10 18:53:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:55.328722Z","gw_timestamp":297406715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU1ODAxMjIwMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2283, '2016-08-10 18:53:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:09.688969Z","gw_timestamp":311769531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYwNjAxMjIwMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2285, '2016-08-10 18:53:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:31.235839Z","gw_timestamp":333315115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU4MzAxMjIwMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2264, '2016-08-10 18:51:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:51:07.597219Z","gw_timestamp":189684003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2NzAxMjIwMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2278, '2016-08-10 18:52:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:33.785842Z","gw_timestamp":275862379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0NzAxMjIwMDA0NDauug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2280, '2016-08-10 18:52:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:48.147095Z","gw_timestamp":290225715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2OTAxMjIwMDA0NDawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2282, '2016-08-10 18:53:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:02.51275Z","gw_timestamp":304587699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NjAxMjIwMDA0NDawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2284, '2016-08-10 18:53:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:24.049535Z","gw_timestamp":326133291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AS8wMDU3NjAxMjIwMDA0NDayiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2286, '2016-08-10 18:53:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:38.423853Z","gw_timestamp":340496835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU2MTAxMjIwMDA0NDa0Kw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2288, '2016-08-10 18:54:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:52.789005Z","gw_timestamp":354860491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUzODAxMjIwMDA0NDavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2290, '2016-08-10 18:54:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:07.147481Z","gw_timestamp":369224347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjIwMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2292, '2016-08-10 18:54:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:21.505551Z","gw_timestamp":383587899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ASwwMDYxNTAxMjIwMDA0NDaySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2294, '2016-08-10 18:54:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:35.867819Z","gw_timestamp":397951755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYzNjAxMjIwMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2296, '2016-08-10 18:54:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:54:50.22785Z","gw_timestamp":412315411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU2OTAxMjIwMDA0NDavmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2298, '2016-08-10 18:55:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:04.603105Z","gw_timestamp":426679163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MTAxMjIwMDA0NDayKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2300, '2016-08-10 18:55:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:18.956335Z","gw_timestamp":441042707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU0NTAxMjIwMDA0NDawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2302, '2016-08-10 18:55:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:33.347253Z","gw_timestamp":455406155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MjAxMjIwMDA0NDat+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2276, '2016-08-10 18:52:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:52:19.4186Z","gw_timestamp":261498619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU0MzAxMjIwMDA0NDaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2306, '2016-08-10 18:56:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:02.050098Z","gw_timestamp":484131899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU5OTAxMjIwMDA0NDawew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2308, '2016-08-10 18:56:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:16.415348Z","gw_timestamp":498495443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NTAxMjIwMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2310, '2016-08-10 18:56:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:37.95722Z","gw_timestamp":520039987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUyNzAxMjIwMDA0NDawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2312, '2016-08-10 18:56:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:45.14198Z","gw_timestamp":527221819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU4NzAxMjIwMDA0NDaueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2314, '2016-08-10 18:57:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:59.503721Z","gw_timestamp":541584531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2OTAxMjIwMDA0NDaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2316, '2016-08-10 18:57:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:13.881921Z","gw_timestamp":555948395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5MDAxMjIwMDA0NDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2318, '2016-08-10 18:57:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:28.226902Z","gw_timestamp":570310899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU1NDAxMjIwMDA0NDawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2320, '2016-08-10 18:57:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:42.592985Z","gw_timestamp":584673715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1MDAxMjIwMDA0NDeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2322, '2016-08-10 18:58:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:56.948227Z","gw_timestamp":599037371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU3ODAxMjIwMDA0NDewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2324, '2016-08-10 18:58:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:11.315478Z","gw_timestamp":613400083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDYyNzAxMjIwMDA0NDewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2326, '2016-08-10 18:58:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:25.681725Z","gw_timestamp":627762803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDUyNzAxMjIwMDA0NDexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2328, '2016-08-10 18:58:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:40.068255Z","gw_timestamp":642126555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDYyMzAxMjIwMDA0NDevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2330, '2016-08-10 18:59:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:54.408237Z","gw_timestamp":656489163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDYwMjAxMjIwMDA0NDexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2287, '2016-08-10 18:53:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:53:45.592107Z","gw_timestamp":347678763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATIwMDU3ODAxMjIwMDA0NDa0Kw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2305, '2016-08-10 18:56:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:54.865478Z","gw_timestamp":476950075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDYwMTAxMjIwMDA0NDayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2307, '2016-08-10 18:56:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:09.255928Z","gw_timestamp":491313723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2MTAxMjIwMDA0NDaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2309, '2016-08-10 18:56:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:23.590984Z","gw_timestamp":505677379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2MzAxMjIwMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2311, '2016-08-10 18:56:46', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1271,"f_cnt_down":2074,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T18:56:40.795131Z","gw_timestamp":3562114620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABkwMDUyNjAxMjI2MDA0NTAcAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2313, '2016-08-10 18:57:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:56:52.323607Z","gw_timestamp":534402811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1NjAxMjIwMDA0NDaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2315, '2016-08-10 18:57:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:06.691936Z","gw_timestamp":548766459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU1NDAxMjIwMDA0NDaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2317, '2016-08-10 18:57:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:21.047104Z","gw_timestamp":563129691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATcwMDU5MDAxMjIwMDA0NDawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2319, '2016-08-10 18:57:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:35.40136Z","gw_timestamp":577491883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NDAxMjIwMDA0NDexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2321, '2016-08-10 18:57:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:57:49.799879Z","gw_timestamp":591855539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1ODAxMjIwMDA0NDev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2323, '2016-08-10 18:58:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:04.160984Z","gw_timestamp":606218675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4NTAxMjIwMDA0NDexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2325, '2016-08-10 18:58:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:18.491096Z","gw_timestamp":620581491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU1MjAxMjIwMDA0NDeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2327, '2016-08-10 18:58:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:32.864304Z","gw_timestamp":634944627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU2NTAxMjIwMDA0NDew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2329, '2016-08-10 18:58:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:58:47.216614Z","gw_timestamp":649307547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU3NjAxMjIwMDA0NDevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2303, '2016-08-10 18:55:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:40.500227Z","gw_timestamp":462587147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATUwMDU4MzAxMjIwMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2333, '2016-08-10 18:59:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:15.949704Z","gw_timestamp":678034643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDYwNDAxMjIwMDA0NDexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2335, '2016-08-10 18:59:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:30.319703Z","gw_timestamp":692398403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDYwODAxMjIwMDA0NDexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2337, '2016-08-10 18:59:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:44.677745Z","gw_timestamp":706762163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU2NzAxMjIwMDA0NDewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2339, '2016-08-10 19:00:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:59.041994Z","gw_timestamp":721125811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDU2OTAxMjIwMDA0NDexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2341, '2016-08-10 19:00:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:13.401242Z","gw_timestamp":735489459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU4NTAxMjIwMDA0NDewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2343, '2016-08-10 19:00:31', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":709,"f_cnt_down":1289,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:00:25.326395Z","gw_timestamp":3786645996,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:29:41.126425Z","gw_timestamp":2422483812,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAUwMDU0NDAxMjI3MDA0ODEIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2345, '2016-08-10 19:00:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:42.125753Z","gw_timestamp":764214787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU0MDAxMjIwMDA0NDevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2347, '2016-08-10 19:01:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:56.51824Z","gw_timestamp":778577611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU3NjAxMjIwMDA0NDet+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2349, '2016-08-10 19:01:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:10.871707Z","gw_timestamp":792941155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDUzODAxMjIwMDA0NDew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2353, '2016-08-10 19:01:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:46.758368Z","gw_timestamp":828849459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDU2NTAxMjIwMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2355, '2016-08-10 19:02:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:01.119745Z","gw_timestamp":843212067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3MjAxMjIwMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2357, '2016-08-10 19:02:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:15.485132Z","gw_timestamp":857574891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU4MzAxMjIwMDA0NDawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2304, '2016-08-10 18:55:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:55:47.681838Z","gw_timestamp":469768563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATYwMDU5MDAxMjIwMDA0NDaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2334, '2016-08-10 18:59:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:23.132989Z","gw_timestamp":685216475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDU3NjAxMjIwMDA0NDexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2336, '2016-08-10 18:59:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:37.50111Z","gw_timestamp":699580331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDYxMTAxMjIwMDA0NDeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2338, '2016-08-10 19:00:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:51.865368Z","gw_timestamp":713943987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDU2OTAxMjIwMDA0NDev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2340, '2016-08-10 19:00:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:06.243864Z","gw_timestamp":728307635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU4NTAxMjIwMDA0NDexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2342, '2016-08-10 19:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:20.598144Z","gw_timestamp":742670763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU4MzAxMjIwMDA0NDexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2344, '2016-08-10 19:00:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:27.768491Z","gw_timestamp":749852075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU4NzAxMjIwMDA0NDex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2346, '2016-08-10 19:01:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:00:49.309353Z","gw_timestamp":771395787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDYxMzAxMjIwMDA0NDevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2348, '2016-08-10 19:01:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:03.67057Z","gw_timestamp":785759435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU2NTAxMjIwMDA0NDexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2350, '2016-08-10 19:01:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:18.043875Z","gw_timestamp":800123083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU1NDAxMjIwMDA0NDevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2352, '2016-08-10 19:01:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:39.588749Z","gw_timestamp":821668355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU4MTAxMjIwMDA0NDexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2354, '2016-08-10 19:02:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:53.944483Z","gw_timestamp":836030867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3NjAxMjIwMDA0NDaymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2356, '2016-08-10 19:02:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:08.331579Z","gw_timestamp":850393059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU4NzAxMjIwMDA0NDav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2358, '2016-08-10 19:02:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:22.679768Z","gw_timestamp":864756291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU1ODAxMjIwMDA0NDayaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2331, '2016-08-10 18:59:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:01.584022Z","gw_timestamp":663670987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATQwMDU2NzAxMjIwMDA0NDevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2351, '2016-08-10 19:01:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:01:32.438368Z","gw_timestamp":814486747,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU5MDAxMjIwMDA0NDewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2361, '2016-08-10 19:02:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:44.2165Z","gw_timestamp":886301251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU2MTAxMjIwMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2363, '2016-08-10 19:03:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:58.588004Z","gw_timestamp":900665011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU4NzAxMjIxMDA0NDaySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2365, '2016-08-10 19:03:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:12.961304Z","gw_timestamp":915027827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3NjAxMjIxMDA0NDaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2367, '2016-08-10 19:03:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:27.329514Z","gw_timestamp":929391379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3NjAxMjIxMDA0NDaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2369, '2016-08-10 19:03:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:41.681766Z","gw_timestamp":943755139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU0NTAxMjIxMDA0NDawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2371, '2016-08-10 19:04:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:56.036747Z","gw_timestamp":958118891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU3ODAxMjIxMDA0NDavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2373, '2016-08-10 19:04:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:10.409251Z","gw_timestamp":972482339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU2NTAxMjIxMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2375, '2016-08-10 19:04:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:24.753834Z","gw_timestamp":986845051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU0MzAxMjIxMDA0NDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2377, '2016-08-10 19:04:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:46.30046Z","gw_timestamp":1008389699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU3NjAxMjIxMDA0NDawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2379, '2016-08-10 19:05:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:00.673896Z","gw_timestamp":1022753451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU4NzAxMjIxMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2381, '2016-08-10 19:05:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:15.025751Z","gw_timestamp":1037116691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU4MTAxMjIxMDA0NDaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2383, '2016-08-10 19:05:28', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":795,"f_cnt_down":1487,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:23:07.651097Z","gw_timestamp":2723975780,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-115,"snr":-14.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABkwMDU3ODAxMjI4MDA0NjgIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2332, '2016-08-10 18:59:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T18:59:08.767487Z","gw_timestamp":670852923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDU1ODAxMjIwMDA0NDexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2362, '2016-08-10 19:02:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:51.395032Z","gw_timestamp":893483187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3MjAxMjIwMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2364, '2016-08-10 19:03:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:05.766372Z","gw_timestamp":907846739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDYxMzAxMjIxMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2366, '2016-08-10 19:03:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:20.119624Z","gw_timestamp":922209451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU5MDAxMjIxMDA0NDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2368, '2016-08-10 19:03:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:34.491875Z","gw_timestamp":936573307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU2MTAxMjIxMDA0NDau6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2370, '2016-08-10 19:03:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:03:48.868394Z","gw_timestamp":950936963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU4NzAxMjIxMDA0NDaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2372, '2016-08-10 19:04:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:03.217376Z","gw_timestamp":965300611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDU0MDAxMjIxMDA0NDavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2374, '2016-08-10 19:04:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:17.572617Z","gw_timestamp":979663331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU2MzAxMjIxMDA0NDavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2376, '2016-08-10 19:04:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:31.946003Z","gw_timestamp":994026883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDUyNzAxMjIxMDA0NDaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2378, '2016-08-10 19:05:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:04:53.481875Z","gw_timestamp":1015571523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU2MzAxMjIxMDA0NDavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2380, '2016-08-10 19:05:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:07.852132Z","gw_timestamp":1029935179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU2OTAxMjIxMDA0NDawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2382, '2016-08-10 19:05:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:22.228647Z","gw_timestamp":1044297891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDYwOTAxMjIxMDA0NDaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2384, '2016-08-10 19:05:31', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":796,"f_cnt_down":1488,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:05:26.818347Z","gw_timestamp":4088138100,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":2.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABkwMDU3ODAxMjI4MDA0NjgIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2386, '2016-08-10 19:05:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:36.572625Z","gw_timestamp":1058660611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU3ODAxMjIxMDA0NDaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2359, '2016-08-10 19:02:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:29.848247Z","gw_timestamp":871937499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU2NzAxMjIxMDA0NDavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2387, '2016-08-10 19:05:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:43.7552Z","gw_timestamp":1065842539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU2MzAxMjIxMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2360, '2016-08-10 19:02:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:02:37.030869Z","gw_timestamp":879119427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3ODAxMjIxMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2388, '2016-08-10 19:05:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:50.938871Z","gw_timestamp":1073024363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU4NTAxMjIxMDA0NDau2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2390, '2016-08-10 19:06:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:05.297132Z","gw_timestamp":1087386979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU1MDAxMjIxMDA0NDax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2392, '2016-08-10 19:06:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:19.66065Z","gw_timestamp":1101750731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU4MTAxMjIxMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2394, '2016-08-10 19:06:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:41.205248Z","gw_timestamp":1123296315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3NDAxMjIxMDA0NDawew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2396, '2016-08-10 19:06:49', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":790,"f_cnt_down":1444,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:06:48.26112Z","gw_timestamp":4169580916,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAkwMDUwNTAxMjM5MDA0MjgKUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2398, '2016-08-10 19:07:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:55.571504Z","gw_timestamp":1137658923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3NjAxMjIxMDA0NDawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2400, '2016-08-10 19:07:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:09.940009Z","gw_timestamp":1152022579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU5NTAxMjIxMDA0NDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2402, '2016-08-10 19:07:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:24.29413Z","gw_timestamp":1166386227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU4MzAxMjIxMDA0NDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2404, '2016-08-10 19:07:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:38.690275Z","gw_timestamp":1180749051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MDAxMjIxMDA0NDaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2406, '2016-08-10 19:08:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:53.039001Z","gw_timestamp":1195112603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU4MzAxMjIxMDA0NDavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2408, '2016-08-10 19:08:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:07.384879Z","gw_timestamp":1209475419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3MjAxMjIxMDA0NDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2410, '2016-08-10 19:08:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:21.755078Z","gw_timestamp":1223839171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU3NjAxMjIxMDA0NDay2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2412, '2016-08-10 19:08:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:36.110381Z","gw_timestamp":1238202827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU1NjAxMjIxMDA0NDav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2385, '2016-08-10 19:05:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:29.397003Z","gw_timestamp":1051479195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU5NzAxMjIxMDA0NDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2389, '2016-08-10 19:06:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:05:58.116501Z","gw_timestamp":1080205979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU3MjAxMjIxMDA0NDayKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2391, '2016-08-10 19:06:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:12.5003Z","gw_timestamp":1094568803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU2NTAxMjIxMDA0NDauKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2393, '2016-08-10 19:06:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:26.843996Z","gw_timestamp":1108932459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABowMDU4MTAxMjIxMDA0NDaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2395, '2016-08-10 19:06:49', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":789,"f_cnt_down":1443,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:24:29.093882Z","gw_timestamp":2805418564,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAkwMDUwNTAxMjM5MDA0MjgKUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2397, '2016-08-10 19:06:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:06:48.395813Z","gw_timestamp":1130477931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU2NzAxMjIxMDA0NDawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2399, '2016-08-10 19:07:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:02.755799Z","gw_timestamp":1144840747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0NTAxMjIxMDA0NDaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2401, '2016-08-10 19:07:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:17.11064Z","gw_timestamp":1159204507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU2OTAxMjIxMDA0NDaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2403, '2016-08-10 19:07:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:31.478749Z","gw_timestamp":1173568059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3MjAxMjIxMDA0NDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2405, '2016-08-10 19:07:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:07:45.844983Z","gw_timestamp":1187930875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MDAxMjIxMDA0NDaxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2407, '2016-08-10 19:08:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:00.199249Z","gw_timestamp":1202293595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2OTAxMjIxMDA0NDawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2409, '2016-08-10 19:08:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:14.570513Z","gw_timestamp":1216657251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3NjAxMjIxMDA0NDaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2411, '2016-08-10 19:08:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:28.94219Z","gw_timestamp":1231020899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDUzODAxMjIxMDA0NDaxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2413, '2016-08-10 19:08:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:43.289268Z","gw_timestamp":1245384651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU0MzAxMjIxMDA0NDavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2414, '2016-08-10 19:09:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:50.480633Z","gw_timestamp":1252566587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU4MTAxMjIxMDA0NDaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2415, '2016-08-10 19:09:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:08:57.658276Z","gw_timestamp":1259748411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2NzAxMjIxMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2416, '2016-08-10 19:09:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:04.835878Z","gw_timestamp":1266930035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NDAxMjIxMDA0NDayGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2417, '2016-08-10 19:09:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:12.024625Z","gw_timestamp":1274111019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MjAxMjIxMDA0NDaxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2418, '2016-08-10 19:09:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:19.221393Z","gw_timestamp":1281292955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU4MzAxMjIxMDA0NDawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2419, '2016-08-10 19:09:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:26.380762Z","gw_timestamp":1288474779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU4MTAxMjIxMDA0NDawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2420, '2016-08-10 19:09:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:33.567509Z","gw_timestamp":1295655875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2OTAxMjIxMDA0NDaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2421, '2016-08-10 19:09:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:40.743136Z","gw_timestamp":1302837491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDYxMTAxMjIxMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2422, '2016-08-10 19:09:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:47.927766Z","gw_timestamp":1310019323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU5MDAxMjIxMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2423, '2016-08-10 19:10:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:09:55.109401Z","gw_timestamp":1317201043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU2MzAxMjIxMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2424, '2016-08-10 19:10:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:02.29002Z","gw_timestamp":1324382043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3ODAxMjIxMDA0NDaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2425, '2016-08-10 19:10:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:09.474754Z","gw_timestamp":1331563867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4NTAxMjIxMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2426, '2016-08-10 19:10:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:16.659268Z","gw_timestamp":1338745587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4NzAxMjIxMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2427, '2016-08-10 19:10:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:23.840891Z","gw_timestamp":1345927411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU5NTAxMjIxMDA0NDawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2428, '2016-08-10 19:10:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:31.037774Z","gw_timestamp":1353109235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjIxMDA0NDawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2430, '2016-08-10 19:10:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:45.383743Z","gw_timestamp":1367472163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NDAxMjIxMDA0NDax2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2432, '2016-08-10 19:11:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:59.742019Z","gw_timestamp":1381835707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDYwOTAxMjIxMDA0NDaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2434, '2016-08-10 19:11:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:14.105267Z","gw_timestamp":1396198427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3MjAxMjIxMDA0NDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2436, '2016-08-10 19:11:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:28.476516Z","gw_timestamp":1410562179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjIxMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2438, '2016-08-10 19:11:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:42.832767Z","gw_timestamp":1424925835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjIxMDA0NDavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2440, '2016-08-10 19:11:59', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1272,"f_cnt_down":2075,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:11:51.612663Z","gw_timestamp":177965316,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AA8wMDU2MTAxMjI1MDA0NDkc0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2442, '2016-08-10 19:12:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:04.384772Z","gw_timestamp":1446471419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4NTAxMjIxMDA0NDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2444, '2016-08-10 19:12:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:18.74802Z","gw_timestamp":1460835067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU4NzAxMjIxMDA0NDayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2446, '2016-08-10 19:12:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:33.110526Z","gw_timestamp":1475197683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MjAxMjIxMDA0NDayGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2448, '2016-08-10 19:12:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:47.476796Z","gw_timestamp":1489560507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5NTAxMjIxMDA0NDav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2450, '2016-08-10 19:13:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:01.875107Z","gw_timestamp":1503924051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2OTAxMjIxMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2452, '2016-08-10 19:13:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:16.198027Z","gw_timestamp":1518286763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NDAxMjIxMDA0NDaxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2454, '2016-08-10 19:13:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:30.560526Z","gw_timestamp":1532650419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIxMDA0NDaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2429, '2016-08-10 19:10:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:38.205257Z","gw_timestamp":1360290227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjIxMDA0NDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2433, '2016-08-10 19:11:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:06.931962Z","gw_timestamp":1389017123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDYxODAxMjIxMDA0NDawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2435, '2016-08-10 19:11:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:21.306276Z","gw_timestamp":1403380251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4MzAxMjIxMDA0NDavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2437, '2016-08-10 19:11:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:35.656133Z","gw_timestamp":1417744011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDYxMTAxMjIxMDA0NDawOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2443, '2016-08-10 19:12:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:11.559387Z","gw_timestamp":1453653243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2NzAxMjIxMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2445, '2016-08-10 19:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:25.92965Z","gw_timestamp":1468016267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NDAxMjIxMDA0NDaxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2447, '2016-08-10 19:12:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:40.286897Z","gw_timestamp":1482378987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3ODAxMjIxMDA0NDayaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2449, '2016-08-10 19:13:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:12:54.649148Z","gw_timestamp":1496742331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5NzAxMjIxMDA0NDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2451, '2016-08-10 19:13:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:09.007395Z","gw_timestamp":1511105355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjIxMDA0NDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2453, '2016-08-10 19:13:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:23.371646Z","gw_timestamp":1525468699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NjAxMjIxMDA0NDavSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2455, '2016-08-10 19:13:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:37.763038Z","gw_timestamp":1539832451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIxMDA0NDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2457, '2016-08-10 19:14:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:52.1127Z","gw_timestamp":1554196003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYyMDAxMjIxMDA0NDaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2459, '2016-08-10 19:14:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:06.480128Z","gw_timestamp":1568558827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjIxMDA0NDWyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2461, '2016-08-10 19:14:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:20.854631Z","gw_timestamp":1582922371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MzAxMjIxMDA0NDWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2431, '2016-08-10 19:11:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:10:52.569392Z","gw_timestamp":1374653883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NzAxMjIxMDA0NDav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2439, '2016-08-10 19:11:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:50.022397Z","gw_timestamp":1432107659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjIxMDA0NDawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2441, '2016-08-10 19:12:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:11:57.21929Z","gw_timestamp":1439289595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4NTAxMjIxMDA0NDavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2465, '2016-08-10 19:15:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:56.769765Z","gw_timestamp":1618830667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NjAxMjIxMDA0NDWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2467, '2016-08-10 19:15:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:11.147193Z","gw_timestamp":1633194427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NTAxMjIxMDA0NDWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2469, '2016-08-10 19:15:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:25.520634Z","gw_timestamp":1647557555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNDAxMjIxMDA0NDWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2477, '2016-08-10 19:16:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:15.817145Z","gw_timestamp":1697828571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0NzAxMjIxMDA0NDWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2479, '2016-08-10 19:16:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:30.193847Z","gw_timestamp":1712191595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2487, '2016-08-10 19:17:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:27.658682Z","gw_timestamp":1769643611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MDAxMjIxMDA0NDWyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2489, '2016-08-10 19:17:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:42.02685Z","gw_timestamp":1784006739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3MjAxMjIxMDA0NDWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2491, '2016-08-10 19:18:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:56.398288Z","gw_timestamp":1798369875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2OTAxMjIxMDA0NDWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2493, '2016-08-10 19:18:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:10.78194Z","gw_timestamp":1812733627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NTAxMjIxMDA0NDWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2495, '2016-08-10 19:18:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:25.140149Z","gw_timestamp":1827097179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwNDAxMjIxMDA0NDWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2497, '2016-08-10 19:18:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:39.512588Z","gw_timestamp":1841459891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1ODAxMjIxMDA0NDWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2456, '2016-08-10 19:13:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:44.917858Z","gw_timestamp":1547014171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwNDAxMjIxMDA0NDaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2460, '2016-08-10 19:14:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:13.669456Z","gw_timestamp":1575740547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5NzAxMjIxMDA0NDax2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2462, '2016-08-10 19:14:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:28.033626Z","gw_timestamp":1590104299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjIxMDA0NDWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2464, '2016-08-10 19:14:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:42.400332Z","gw_timestamp":1604467323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjIxMDA0NDWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2486, '2016-08-10 19:17:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:20.489432Z","gw_timestamp":1762461675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NDAxMjIxMDA0NDWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2488, '2016-08-10 19:17:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:34.852644Z","gw_timestamp":1776825331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5OTAxMjIxMDA0NDWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2490, '2016-08-10 19:17:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:49.220329Z","gw_timestamp":1791187939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1ODAxMjIxMDA0NDWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2492, '2016-08-10 19:18:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:03.607793Z","gw_timestamp":1805551803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0NTAxMjIxMDA0NDWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2494, '2016-08-10 19:18:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:17.957813Z","gw_timestamp":1819915451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5MjAxMjIxMDA0NDWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2496, '2016-08-10 19:18:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:32.336372Z","gw_timestamp":1834278795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjIxMDA0NDWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2498, '2016-08-10 19:19:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:18:46.703803Z","gw_timestamp":1848641819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjIxMDA0NDWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2500, '2016-08-10 19:19:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:08.255708Z","gw_timestamp":1870186467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MzAxMjIxMDA0NDWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2502, '2016-08-10 19:19:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:22.623879Z","gw_timestamp":1884548979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjIxMDA0NDWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2504, '2016-08-10 19:19:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:36.993306Z","gw_timestamp":1898912835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxODAxMjIxMDA0NDWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2458, '2016-08-10 19:14:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:13:59.298914Z","gw_timestamp":1561376995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU5OTAxMjIxMDA0NDWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2466, '2016-08-10 19:15:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:03.962324Z","gw_timestamp":1626012603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjIxMDA0NDWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2468, '2016-08-10 19:15:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:18.339631Z","gw_timestamp":1640376251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDWvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2470, '2016-08-10 19:15:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:32.697099Z","gw_timestamp":1654738963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjIxMDA0NDWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2472, '2016-08-10 19:15:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:39.883062Z","gw_timestamp":1661920795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MDAxMjIxMDA0NDWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2474, '2016-08-10 19:16:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:54.267965Z","gw_timestamp":1676283507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3ODAxMjIxMDA0NDWu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2476, '2016-08-10 19:16:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:08.62492Z","gw_timestamp":1690647059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NjAxMjIxMDA0NDWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2478, '2016-08-10 19:16:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:22.996861Z","gw_timestamp":1705009883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2480, '2016-08-10 19:16:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:37.366787Z","gw_timestamp":1719372699,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MjAxMjIxMDA0NDWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2482, '2016-08-10 19:17:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:51.740227Z","gw_timestamp":1733736147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MjAxMjIxMDA0NDWvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2484, '2016-08-10 19:17:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:06.104661Z","gw_timestamp":1748098851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIxMDA0NDWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2508, '2016-08-10 19:20:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:05.735257Z","gw_timestamp":1927639203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUzODAxMjIxMDA0NDWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2510, '2016-08-10 19:20:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:20.105744Z","gw_timestamp":1942002851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjIxMDA0NDWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2512, '2016-08-10 19:20:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:34.480632Z","gw_timestamp":1956366507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3MjAxMjIxMDA0NDWuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2463, '2016-08-10 19:14:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:14:35.230131Z","gw_timestamp":1597286131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1MjAxMjIxMDA0NDWvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2471, '2016-08-10 19:15:41', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":710,"f_cnt_down":1290,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:15:36.096709Z","gw_timestamp":402449476,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU1MDAxMjI3MDA0NzQUIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2473, '2016-08-10 19:15:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:15:47.078267Z","gw_timestamp":1669102515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwNjAxMjIxMDA0NDWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2475, '2016-08-10 19:16:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:01.465981Z","gw_timestamp":1683465331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2481, '2016-08-10 19:16:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:44.551006Z","gw_timestamp":1726554419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwNDAxMjIxMDA0NDWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2483, '2016-08-10 19:17:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:16:58.920435Z","gw_timestamp":1740917547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NjAxMjIxMDA0NDWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2485, '2016-08-10 19:17:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:17:13.288988Z","gw_timestamp":1755279851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0MzAxMjIxMDA0NDWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2501, '2016-08-10 19:19:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:15.437669Z","gw_timestamp":1877367771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4NTAxMjIxMDA0NDWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2503, '2016-08-10 19:19:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:29.8141Z","gw_timestamp":1891730907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3MjAxMjIxMDA0NDWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2505, '2016-08-10 19:19:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:44.186661Z","gw_timestamp":1906094563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MDAxMjIxMDA0NDWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2507, '2016-08-10 19:20:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:58.54728Z","gw_timestamp":1920457691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5OTAxMjIxMDA0NDWx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2519, '2016-08-10 19:21:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:17.588469Z","gw_timestamp":1999457675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjIxMDA0NDWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2521, '2016-08-10 19:21:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:31.967689Z","gw_timestamp":2013820707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NzAxMjIxMDA0NDWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2523, '2016-08-10 19:21:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:46.329343Z","gw_timestamp":2028183419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjIxMDA0NDWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2499, '2016-08-10 19:19:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:01.075827Z","gw_timestamp":1863005475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5OTAxMjIxMDA0NDWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2509, '2016-08-10 19:20:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:12.923516Z","gw_timestamp":1934821035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5MjAxMjIxMDA0NDWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2511, '2016-08-10 19:20:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:27.300172Z","gw_timestamp":1949184579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2513, '2016-08-10 19:20:43', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":796,"f_cnt_down":1489,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:20:37.582781Z","gw_timestamp":703935700,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AB0wMDYwNzAxMjI4MDA0NjMHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2515, '2016-08-10 19:20:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:48.8516Z","gw_timestamp":1970730371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NTAxMjIxMDA0NDWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2517, '2016-08-10 19:21:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:03.218036Z","gw_timestamp":1985093915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1ODAxMjIxMDA0NDWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2527, '2016-08-10 19:22:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:00.683315Z","gw_timestamp":2042546755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MzAxMjIxMDA0NDWymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2529, '2016-08-10 19:22:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:15.053694Z","gw_timestamp":2056910203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MjAxMjIxMDA0NDWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2539, '2016-08-10 19:23:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:34.051569Z","gw_timestamp":2135909675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0MTAxMjIxMDA0NDSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2541, '2016-08-10 19:23:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:48.43117Z","gw_timestamp":2150272179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5OTAxMjIxMDA0NDWvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2543, '2016-08-10 19:24:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:02.778081Z","gw_timestamp":2164634683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4MTAxMjIxMDA0NDWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2545, '2016-08-10 19:24:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:17.136322Z","gw_timestamp":2178997707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3NDAxMjIxMDA0NDSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2547, '2016-08-10 19:24:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:31.49783Z","gw_timestamp":2193361051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUzMDAxMjIxMDA0NDSyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2549, '2016-08-10 19:25:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:53.051711Z","gw_timestamp":2214906011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjIxMDA0NDSxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2506, '2016-08-10 19:20:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:19:51.385396Z","gw_timestamp":1913276491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2516, '2016-08-10 19:21:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:56.028822Z","gw_timestamp":1977911995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MDAxMjIxMDA0NDWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2518, '2016-08-10 19:21:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:10.410255Z","gw_timestamp":1992275747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU5OTAxMjIxMDA0NDWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2520, '2016-08-10 19:21:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:24.775672Z","gw_timestamp":2006639507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjIxMDA0NDWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2522, '2016-08-10 19:21:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:39.145434Z","gw_timestamp":2021002219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDYwNDAxMjIxMDA0NDWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2524, '2016-08-10 19:21:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:21:53.518091Z","gw_timestamp":2035364827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3ODAxMjIxMDA0NDWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2526, '2016-08-10 19:22:02', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":791,"f_cnt_down":1446,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:21:59.100454Z","gw_timestamp":785453412,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAgwMDU0MjAxMjQwMDA0MjYJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2528, '2016-08-10 19:22:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:07.875044Z","gw_timestamp":2049728587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NzAxMjIxMDA0NDWuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2530, '2016-08-10 19:22:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:22.232325Z","gw_timestamp":2064091195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MjAxMjIxMDA0NDWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2532, '2016-08-10 19:22:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:36.598576Z","gw_timestamp":2078454955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYzMjAxMjIxMDA0NDWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2534, '2016-08-10 19:23:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:50.959467Z","gw_timestamp":2092818603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3ODAxMjIxMDA0NDWumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2536, '2016-08-10 19:23:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:12.513684Z","gw_timestamp":2114364187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5OTAxMjIxMDA0NDWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2538, '2016-08-10 19:23:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:26.879217Z","gw_timestamp":2128727843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NzAxMjIxMDA0NDSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2540, '2016-08-10 19:23:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:41.235199Z","gw_timestamp":2143090667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MjAxMjIxMDA0NDWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2514, '2016-08-10 19:20:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:20:41.662144Z","gw_timestamp":1963548443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NzAxMjIxMDA0NDWyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2572, '2016-08-10 19:27:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:38.218082Z","gw_timestamp":2380083643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NzAxMjIxMDA0NDSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2574, '2016-08-10 19:28:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:52.595347Z","gw_timestamp":2394447195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5OTAxMjIxMDA0NDSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2576, '2016-08-10 19:28:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:06.950056Z","gw_timestamp":2408810843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MDAxMjIxMDA0NDSyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2578, '2016-08-10 19:28:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:21.310833Z","gw_timestamp":2423174187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIxMDA0NDSyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2580, '2016-08-10 19:28:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:35.673036Z","gw_timestamp":2437536483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4NDAxMjIxMDA0NDSy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2582, '2016-08-10 19:28:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:50.043281Z","gw_timestamp":2451900035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NTAxMjIxMDA0NDSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2584, '2016-08-10 19:29:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:11.588218Z","gw_timestamp":2473444371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3NjAxMjIyMDA0NDSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2586, '2016-08-10 19:29:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:25.949736Z","gw_timestamp":2487807187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NzAxMjIxMDA0NDSyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2588, '2016-08-10 19:29:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:40.315116Z","gw_timestamp":2502170843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3ODAxMjIxMDA0NDSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2590, '2016-08-10 19:30:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:54.670086Z","gw_timestamp":2516534595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjIxMDA0NDSvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2592, '2016-08-10 19:30:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:09.043675Z","gw_timestamp":2530897211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5MjAxMjIyMDA0NDSvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2594, '2016-08-10 19:30:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:23.40266Z","gw_timestamp":2545260027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MTAxMjIyMDA0NDSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2596, '2016-08-10 19:30:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:37.767099Z","gw_timestamp":2559623051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5NzAxMjIyMDA0NDSyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2525, '2016-08-10 19:22:00', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":790,"f_cnt_down":1445,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:39:39.933273Z","gw_timestamp":3716257956,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAgwMDU0MjAxMjQwMDA0MjYJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2531, '2016-08-10 19:22:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:29.40795Z","gw_timestamp":2071273019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MDAxMjIxMDA0NDWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2533, '2016-08-10 19:22:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:22:43.771145Z","gw_timestamp":2085636683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1NDAxMjIxMDA0NDWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2535, '2016-08-10 19:23:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:05.324066Z","gw_timestamp":2107182571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0MzAxMjIxMDA0NDWyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2537, '2016-08-10 19:23:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:19.689272Z","gw_timestamp":2121546019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUyNzAxMjIxMDA0NDWyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2553, '2016-08-10 19:25:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:28.963082Z","gw_timestamp":2250814099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5NzAxMjIxMDA0NDSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2555, '2016-08-10 19:25:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:43.31696Z","gw_timestamp":2265177027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5OTAxMjIxMDA0NDSueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2557, '2016-08-10 19:26:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:57.689212Z","gw_timestamp":2279540675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNjAxMjIxMDA0NDSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2559, '2016-08-10 19:26:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:12.038451Z","gw_timestamp":2293904331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjIxMDA0NDSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2561, '2016-08-10 19:26:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:26.413705Z","gw_timestamp":2308268091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MzAxMjIxMDA0NDSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2563, '2016-08-10 19:26:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:40.771951Z","gw_timestamp":2322631739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU5NzAxMjIxMDA0NDSuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2565, '2016-08-10 19:27:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:55.13059Z","gw_timestamp":2336994347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUzNjAxMjIxMDA0NDSyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2567, '2016-08-10 19:27:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:09.490448Z","gw_timestamp":2351357067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NTAxMjIxMDA0NDSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2569, '2016-08-10 19:27:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:23.860837Z","gw_timestamp":2365720715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MTAxMjIxMDA0NDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2542, '2016-08-10 19:24:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:23:55.59245Z","gw_timestamp":2157453275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3NjAxMjIxMDA0NDSxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2544, '2016-08-10 19:24:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:09.954701Z","gw_timestamp":2171815883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MjAxMjIxMDA0NDWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2546, '2016-08-10 19:24:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:24.345971Z","gw_timestamp":2186179643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYwNjAxMjIxMDA0NDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2548, '2016-08-10 19:24:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:24:38.684205Z","gw_timestamp":2200542363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYwNjAxMjIxMDA0NDSu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2550, '2016-08-10 19:25:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:07.413824Z","gw_timestamp":2229269667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MzAxMjIxMDA0NDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2552, '2016-08-10 19:25:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:21.774208Z","gw_timestamp":2243633115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYwMjAxMjIxMDA0NDSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2554, '2016-08-10 19:25:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:36.136322Z","gw_timestamp":2257995099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3NjAxMjIxMDA0NDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2556, '2016-08-10 19:25:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:50.510828Z","gw_timestamp":2272358851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MDAxMjIxMDA0NDSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2558, '2016-08-10 19:26:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:04.884574Z","gw_timestamp":2286722603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjIxMDA0NDSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2560, '2016-08-10 19:26:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:19.223081Z","gw_timestamp":2301086155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2OTAxMjIxMDA0NDSzSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2562, '2016-08-10 19:26:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:33.586331Z","gw_timestamp":2315449811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIxMDA0NDSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2564, '2016-08-10 19:26:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:26:47.945583Z","gw_timestamp":2329813051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MzAxMjIxMDA0NDSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2566, '2016-08-10 19:27:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:02.318816Z","gw_timestamp":2344175867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIxMDA0NDSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2568, '2016-08-10 19:27:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:16.688484Z","gw_timestamp":2358538995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwMjAxMjIxMDA0NDSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2551, '2016-08-10 19:25:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:25:14.595077Z","gw_timestamp":2236451595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MzAxMjIxMDA0NDSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2573, '2016-08-10 19:27:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:45.402089Z","gw_timestamp":2387265259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwNzAxMjIxMDA0NDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2575, '2016-08-10 19:28:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:59.764946Z","gw_timestamp":2401629123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NjAxMjIxMDA0NDSueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2577, '2016-08-10 19:28:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:14.137216Z","gw_timestamp":2415992779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1NDAxMjIxMDA0NDSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2579, '2016-08-10 19:28:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:28.494553Z","gw_timestamp":2430355387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIxMDA0NDSxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2581, '2016-08-10 19:28:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:42.855715Z","gw_timestamp":2444718099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDYxMTAxMjIxMDA0NDSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2597, '2016-08-10 19:30:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:44.968984Z","gw_timestamp":2566804571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwNDAxMjIyMDA0NDSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2599, '2016-08-10 19:31:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:52.125342Z","gw_timestamp":2573986291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4MzAxMjIyMDA0NDSymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2601, '2016-08-10 19:31:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:31:13.669972Z","gw_timestamp":2595530939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NjAxMjIyMDA0NDSueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2603, '2016-08-10 19:31:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:31:35.215842Z","gw_timestamp":2617076619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NjAxMjIyMDA0NDSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2605, '2016-08-10 19:32:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:31:49.574088Z","gw_timestamp":2631440067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0MzAxMjIyMDA0NDSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2607, '2016-08-10 19:32:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:03.941608Z","gw_timestamp":2645802891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MzAxMjIyMDA0NDSyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2609, '2016-08-10 19:32:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:18.30899Z","gw_timestamp":2660165499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0NTAxMjIyMDA0NDSyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2611, '2016-08-10 19:32:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:32.671967Z","gw_timestamp":2674529363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4NDAxMjIyMDA0NDSu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2570, '2016-08-10 19:27:33', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1273,"f_cnt_down":2076,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:27:27.112311Z","gw_timestamp":1113465436,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAswMDUyMjAxMjI0MDA0NTAUsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2600, '2016-08-10 19:31:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:59.299721Z","gw_timestamp":2581168115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2NTAxMjIyMDA0NDSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2602, '2016-08-10 19:31:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:31:28.030219Z","gw_timestamp":2609894699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3MDAxMjIyMDA0NDSxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2604, '2016-08-10 19:31:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:31:42.415805Z","gw_timestamp":2624258347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyMzAxMjIyMDA0NDSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2606, '2016-08-10 19:32:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:31:56.764852Z","gw_timestamp":2638621579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MjAxMjIyMDA0NDSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2608, '2016-08-10 19:32:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:11.119097Z","gw_timestamp":2652984195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MjAxMjIyMDA0NDSyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2610, '2016-08-10 19:32:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:25.47833Z","gw_timestamp":2667347427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MDAxMjIyMDA0NDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2612, '2016-08-10 19:32:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:39.847725Z","gw_timestamp":2681710667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4NDAxMjIyMDA0NDSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2614, '2016-08-10 19:33:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:54.211103Z","gw_timestamp":2696073699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NTAxMjIyMDA0NDSumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2616, '2016-08-10 19:33:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:08.592445Z","gw_timestamp":2710437451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0NTAxMjIyMDA0NDSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2618, '2016-08-10 19:33:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:22.943428Z","gw_timestamp":2724800275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5MjAxMjIyMDA0NDSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2620, '2016-08-10 19:33:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:37.292843Z","gw_timestamp":2739162883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NTAxMjIyMDA0NDSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2622, '2016-08-10 19:33:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:51.659115Z","gw_timestamp":2753525699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUzMjAxMjIyMDA0NDSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2624, '2016-08-10 19:34:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:06.030104Z","gw_timestamp":2767889147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MDAxMjIyMDA0NDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2571, '2016-08-10 19:27:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:27:31.037454Z","gw_timestamp":2372902651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NTAxMjIxMDA0NDSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2583, '2016-08-10 19:29:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:28:57.223359Z","gw_timestamp":2459081859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3NjAxMjIxMDA0NDSuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2585, '2016-08-10 19:29:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:18.76884Z","gw_timestamp":2480625987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NzAxMjIxMDA0NDSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2587, '2016-08-10 19:29:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:33.13818Z","gw_timestamp":2494989115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0NzAxMjIxMDA0NDSyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2589, '2016-08-10 19:29:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:29:47.501739Z","gw_timestamp":2509352771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDYwMjAxMjIxMDA0NDSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2591, '2016-08-10 19:30:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:01.852062Z","gw_timestamp":2523715587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjIxMDA0NDSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2593, '2016-08-10 19:30:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:16.218093Z","gw_timestamp":2538078203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NTAxMjIyMDA0NDSvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2595, '2016-08-10 19:30:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:30:30.575217Z","gw_timestamp":2552441755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MzAxMjIxMDA0NDSvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2615, '2016-08-10 19:33:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:01.388731Z","gw_timestamp":2703255627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MDAxMjIyMDA0NDSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2617, '2016-08-10 19:33:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:15.758847Z","gw_timestamp":2717619275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU5NTAxMjIyMDA0NDSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2619, '2016-08-10 19:33:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:30.113966Z","gw_timestamp":2731981683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2ODAxMjIyMDA0NDSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2621, '2016-08-10 19:33:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:44.480342Z","gw_timestamp":2746344707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4ODAxMjIyMDA0NDSyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2623, '2016-08-10 19:34:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:33:58.867589Z","gw_timestamp":2760707419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MDAxMjIyMDA0NDSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2625, '2016-08-10 19:34:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:13.220034Z","gw_timestamp":2775070667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNDAxMjIyMDA0NDSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2598, '2016-08-10 19:30:51', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":711,"f_cnt_down":1291,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:30:46.869657Z","gw_timestamp":1313222884,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU0NTAxMjI3MDA0NzEHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2628, '2016-08-10 19:34:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:34.765533Z","gw_timestamp":2796615619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NzAxMjIyMDA0NDSuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2630, '2016-08-10 19:34:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:49.118164Z","gw_timestamp":2810979371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjIyMDA0NDSueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2632, '2016-08-10 19:35:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:03.481346Z","gw_timestamp":2825342091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3OTAxMjIyMDA0NDSvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2634, '2016-08-10 19:35:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:25.030407Z","gw_timestamp":2846886635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2ODAxMjIyMDA0NDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2636, '2016-08-10 19:35:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:39.385361Z","gw_timestamp":2861250179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4NjAxMjIyMDA0NDSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2638, '2016-08-10 19:35:59', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":797,"f_cnt_down":1490,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:35:48.348424Z","gw_timestamp":1614701804,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:53:29.181289Z","gw_timestamp":250538676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAgwMDU4MzAxMjI4MDA0NjIKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2640, '2016-08-10 19:36:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:00.936245Z","gw_timestamp":2882794827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2MTAxMjIyMDA0NDSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2642, '2016-08-10 19:36:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:15.300585Z","gw_timestamp":2897158587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1MjAxMjIyMDA0NDSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2644, '2016-08-10 19:36:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:29.655136Z","gw_timestamp":2911521723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0MTAxMjIyMDA0NDSveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2646, '2016-08-10 19:36:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:44.021119Z","gw_timestamp":2925884851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NTAxMjIyMDA0NDSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2648, '2016-08-10 19:37:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:58.389234Z","gw_timestamp":2940248507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2NTAxMjIyMDA0NDOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2650, '2016-08-10 19:37:14', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":791,"f_cnt_down":1447,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:37:09.936047Z","gw_timestamp":1696289468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:54:50.768921Z","gw_timestamp":332126308,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDUwMzAxMjM5MDA0MjULoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2613, '2016-08-10 19:32:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:32:47.030222Z","gw_timestamp":2688891971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2NTAxMjIyMDA0NDSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2651, '2016-08-10 19:37:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:12.752607Z","gw_timestamp":2954611843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NzAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2653, '2016-08-10 19:37:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:27.109842Z","gw_timestamp":2968974979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NzAxMjIyMDA0NDOu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2655, '2016-08-10 19:37:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:41.479376Z","gw_timestamp":2983338627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzODAxMjIyMDA0NDOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2657, '2016-08-10 19:38:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:55.834307Z","gw_timestamp":2997702387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NDAxMjIyMDA0NDOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2659, '2016-08-10 19:38:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:10.203555Z","gw_timestamp":3012066035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3MDAxMjIyMDA0NDOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2661, '2016-08-10 19:38:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:24.556861Z","gw_timestamp":3026429795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3MDAxMjIyMDA0NDOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2663, '2016-08-10 19:38:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:38.923119Z","gw_timestamp":3040793443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzMDAxMjIyMDA0NDOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2665, '2016-08-10 19:39:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:53.296316Z","gw_timestamp":3055156163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2667, '2016-08-10 19:39:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:07.678883Z","gw_timestamp":3069519811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzODAxMjIyMDA0NDOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2669, '2016-08-10 19:39:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:29.202621Z","gw_timestamp":3091064883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2671, '2016-08-10 19:39:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:43.553858Z","gw_timestamp":3105428115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIyMDA0NDOvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2673, '2016-08-10 19:40:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:57.942575Z","gw_timestamp":3119791771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIyMDA0NDOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2675, '2016-08-10 19:40:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:12.294427Z","gw_timestamp":3134155523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2626, '2016-08-10 19:34:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:20.381297Z","gw_timestamp":2782251971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU4NjAxMjIyMDA0NDSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2654, '2016-08-10 19:37:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:34.28542Z","gw_timestamp":2976156907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2NTAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2656, '2016-08-10 19:37:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:48.658733Z","gw_timestamp":2990520451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5MzAxMjIyMDA0NDOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2658, '2016-08-10 19:38:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:03.010986Z","gw_timestamp":3004884211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU3NTAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2660, '2016-08-10 19:38:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:17.402088Z","gw_timestamp":3019247971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3MjAxMjIyMDA0NDOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2662, '2016-08-10 19:38:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:31.769753Z","gw_timestamp":3033611523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NzAxMjIyMDA0NDOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2664, '2016-08-10 19:38:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:38:46.109731Z","gw_timestamp":3047975059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4NjAxMjIyMDA0NDOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2666, '2016-08-10 19:39:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:00.465995Z","gw_timestamp":3062337883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzMjAxMjIyMDA0NDOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2668, '2016-08-10 19:39:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:22.010862Z","gw_timestamp":3083883571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2670, '2016-08-10 19:39:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:36.381245Z","gw_timestamp":3098246187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NjAxMjIyMDA0NDOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2672, '2016-08-10 19:39:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:39:50.743472Z","gw_timestamp":3112609947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2674, '2016-08-10 19:40:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:05.108742Z","gw_timestamp":3126973699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2676, '2016-08-10 19:40:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:19.470066Z","gw_timestamp":3141336835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2678, '2016-08-10 19:40:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:33.829251Z","gw_timestamp":3155699027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1OTAxMjIyMDA0NDOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2627, '2016-08-10 19:34:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:27.566206Z","gw_timestamp":2789433683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0NTAxMjIyMDA0NDSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2629, '2016-08-10 19:34:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:41.935343Z","gw_timestamp":2803797547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NjAxMjIyMDA0NDSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2631, '2016-08-10 19:35:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:34:56.29159Z","gw_timestamp":2818160683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NzAxMjIyMDA0NDSveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2633, '2016-08-10 19:35:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:17.836482Z","gw_timestamp":2839705635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0MTAxMjIyMDA0NDSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2635, '2016-08-10 19:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:32.199862Z","gw_timestamp":2854068459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0MzAxMjIyMDA0NDSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2637, '2016-08-10 19:35:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:46.572979Z","gw_timestamp":2868431699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3OTAxMjIyMDA0NDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2639, '2016-08-10 19:36:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:35:53.753602Z","gw_timestamp":2875612899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5MzAxMjIyMDA0NDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2641, '2016-08-10 19:36:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:08.106849Z","gw_timestamp":2889976659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1NjAxMjIyMDA0NDSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2643, '2016-08-10 19:36:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:22.471382Z","gw_timestamp":2904340411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4NjAxMjIyMDA0NDSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2645, '2016-08-10 19:36:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:36.832357Z","gw_timestamp":2918703019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwMjAxMjIyMDA0NDSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2647, '2016-08-10 19:37:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:36:51.197595Z","gw_timestamp":2933066779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3MDAxMjIyMDA0NDOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2649, '2016-08-10 19:37:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:05.579248Z","gw_timestamp":2947430435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5MTAxMjIyMDA0NDOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2679, '2016-08-10 19:40:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:41.019867Z","gw_timestamp":3162880851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwNDAxMjIyMDA0NDOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2681, '2016-08-10 19:41:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:55.382113Z","gw_timestamp":3177244611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NTAxMjIyMDA0NDOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2652, '2016-08-10 19:37:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:37:19.927232Z","gw_timestamp":2961793043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2MzAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2682, '2016-08-10 19:41:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:02.561734Z","gw_timestamp":3184426131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUxNjAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2684, '2016-08-10 19:41:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:24.101612Z","gw_timestamp":3205970875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NTAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2686, '2016-08-10 19:41:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:38.467869Z","gw_timestamp":3220334635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwMjAxMjIyMDA0NDOt6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2688, '2016-08-10 19:42:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:52.829361Z","gw_timestamp":3234697347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1NjAxMjIyMDA0NDOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2690, '2016-08-10 19:42:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:07.187483Z","gw_timestamp":3249061099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NTAxMjIyMDA0NDOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2692, '2016-08-10 19:42:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:21.573015Z","gw_timestamp":3263424651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1OTAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2694, '2016-08-10 19:42:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:35.921129Z","gw_timestamp":3277787779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5MTAxMjIyMDA0NDOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2696, '2016-08-10 19:42:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:43.09789Z","gw_timestamp":3284969299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1OTAxMjIyMDA0NDOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2698, '2016-08-10 19:43:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:57.473128Z","gw_timestamp":3299332955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2700, '2016-08-10 19:43:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:11.855109Z","gw_timestamp":3313696707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIyMDA0NDOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2702, '2016-08-10 19:43:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:26.192376Z","gw_timestamp":3328059427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzNDAxMjIyMDA0NDOvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2704, '2016-08-10 19:43:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:40.548625Z","gw_timestamp":3342423075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2677, '2016-08-10 19:40:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:26.656612Z","gw_timestamp":3148518035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4ODAxMjIyMDA0NDOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2685, '2016-08-10 19:41:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:31.279895Z","gw_timestamp":3213152699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2MzAxMjIyMDA0NDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2687, '2016-08-10 19:41:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:45.667755Z","gw_timestamp":3227516043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4NDAxMjIyMDA0NDOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2689, '2016-08-10 19:42:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:00.00587Z","gw_timestamp":3241879275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0MzAxMjIyMDA0NDOvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2691, '2016-08-10 19:42:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:14.36812Z","gw_timestamp":3256242827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0MzAxMjIyMDA0NDOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2693, '2016-08-10 19:42:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:28.740376Z","gw_timestamp":3270606579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwMjAxMjIyMDA0NDOu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2695, '2016-08-10 19:42:45', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1275,"f_cnt_down":2077,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:42:37.937536Z","gw_timestamp":2024291124,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAUwMDU2NjAxMjI0MDA0NTEIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2697, '2016-08-10 19:42:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:42:50.282247Z","gw_timestamp":3292151123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2699, '2016-08-10 19:43:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:04.65114Z","gw_timestamp":3306514883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjIyMDA0NDOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2701, '2016-08-10 19:43:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:19.01501Z","gw_timestamp":3320877907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0NzAxMjIyMDA0NDOvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2703, '2016-08-10 19:43:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:33.373998Z","gw_timestamp":3335241147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzNDAxMjIyMDA0NDOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2705, '2016-08-10 19:43:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:47.731247Z","gw_timestamp":3349604907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIyMDA0NDOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2680, '2016-08-10 19:40:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:40:48.198363Z","gw_timestamp":3170062675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2683, '2016-08-10 19:41:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:41:09.744126Z","gw_timestamp":3191607219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwMjAxMjIyMDA0NDOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2706, '2016-08-10 19:44:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:43:54.912876Z","gw_timestamp":3356786731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NjAxMjIyMDA0NDOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2707, '2016-08-10 19:44:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:02.123582Z","gw_timestamp":3363968659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2708, '2016-08-10 19:44:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:09.274636Z","gw_timestamp":3371150379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIyMDA0NDOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2709, '2016-08-10 19:44:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:16.467752Z","gw_timestamp":3378332211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2710, '2016-08-10 19:44:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:23.66872Z","gw_timestamp":3385514139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIyMDA0NDOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2711, '2016-08-10 19:44:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:30.82311Z","gw_timestamp":3392695859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIyMDA0NDOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2712, '2016-08-10 19:44:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:38.011751Z","gw_timestamp":3399877275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNjAxMjIyMDA0NDOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2713, '2016-08-10 19:45:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:45.18424Z","gw_timestamp":3407058683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIyMDA0NDOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2714, '2016-08-10 19:45:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":1998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:44:59.56289Z","gw_timestamp":3421421395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1MDAxMjIyMDA0NDOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2715, '2016-08-10 19:45:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:06.736249Z","gw_timestamp":3428603219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIyMDA0NDOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2716, '2016-08-10 19:45:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:13.919986Z","gw_timestamp":3435785051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MzAxMjIyMDA0NDOvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2717, '2016-08-10 19:45:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:21.094636Z","gw_timestamp":3442966459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4MTAxMjIyMDA0NDOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2718, '2016-08-10 19:45:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:28.27913Z","gw_timestamp":3450147763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0MzAxMjIyMDA0NDOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2719, '2016-08-10 19:45:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:35.459749Z","gw_timestamp":3457329699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NjAxMjIyMDA0NDOuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2751, '2016-08-10 19:49:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:10.904583Z","gw_timestamp":3672779595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2753, '2016-08-10 19:49:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:25.266512Z","gw_timestamp":3687142731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2755, '2016-08-10 19:49:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:39.640532Z","gw_timestamp":3701506379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwOTAxMjIyMDA0NDOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2757, '2016-08-10 19:50:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:54.018766Z","gw_timestamp":3715869403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MjAxMjIyMDA0NDOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2759, '2016-08-10 19:50:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:08.35976Z","gw_timestamp":3730231915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NTAxMjIyMDA0NDOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2761, '2016-08-10 19:50:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:22.727015Z","gw_timestamp":3744594635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2763, '2016-08-10 19:50:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:37.085387Z","gw_timestamp":3758958187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NTAxMjIyMDA0NDOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2765, '2016-08-10 19:50:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:51.447326Z","gw_timestamp":3773322043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MjAxMjIyMDA0NDOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2767, '2016-08-10 19:51:00', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":798,"f_cnt_down":1491,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:39.94617Z","gw_timestamp":1161303556,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDYwNTAxMjI2MDA0NjEOYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2769, '2016-08-10 19:51:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:05.815765Z","gw_timestamp":3787685595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2771, '2016-08-10 19:51:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:20.189286Z","gw_timestamp":3802049243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MjAxMjIyMDA0NDOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2773, '2016-08-10 19:51:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:41.714002Z","gw_timestamp":3823593155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIyMDA0NDOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2775, '2016-08-10 19:52:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:56.080267Z","gw_timestamp":3837956499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUxODAxMjIyMDA0NDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2720, '2016-08-10 19:45:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:42.646375Z","gw_timestamp":3464511419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2724, '2016-08-10 19:46:04', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":713,"f_cnt_down":1293,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:45:57.641468Z","gw_timestamp":2223995156,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0MzAxMjI3MDA0NjkJUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2726, '2016-08-10 19:46:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:11.36988Z","gw_timestamp":3493238723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIyMDA0NDOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2728, '2016-08-10 19:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:25.726132Z","gw_timestamp":3507602483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIyMDA0NDOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2730, '2016-08-10 19:46:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:40.093643Z","gw_timestamp":3521966243,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2732, '2016-08-10 19:47:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:54.473141Z","gw_timestamp":3536329787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2734, '2016-08-10 19:47:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:08.819008Z","gw_timestamp":3550692507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjIyMDA0NDOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2736, '2016-08-10 19:47:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:23.185334Z","gw_timestamp":3565055323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIyMDA0NDOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2738, '2016-08-10 19:47:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:37.543505Z","gw_timestamp":3579419083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2740, '2016-08-10 19:48:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:51.919033Z","gw_timestamp":3593782211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIyMDA0NDOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2742, '2016-08-10 19:48:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:06.271011Z","gw_timestamp":3608145451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2744, '2016-08-10 19:48:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:20.640267Z","gw_timestamp":3622508163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2746, '2016-08-10 19:48:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:35.002518Z","gw_timestamp":3636871811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MzAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2748, '2016-08-10 19:48:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:49.367764Z","gw_timestamp":3651235363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUyMTAxMjIyMDA0NDOuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2721, '2016-08-10 19:45:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:49.833266Z","gw_timestamp":3471693355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2723, '2016-08-10 19:45:59', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":712,"f_cnt_down":1292,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:03:38.474369Z","gw_timestamp":859831756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0MzAxMjI3MDA0NjkJUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2725, '2016-08-10 19:46:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:04.202594Z","gw_timestamp":3486056899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0MTAxMjIyMDA0NDOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2727, '2016-08-10 19:46:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:18.552503Z","gw_timestamp":3500420651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2729, '2016-08-10 19:46:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:32.914964Z","gw_timestamp":3514784411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2731, '2016-08-10 19:46:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:46:47.280004Z","gw_timestamp":3529147963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2733, '2016-08-10 19:47:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:01.64233Z","gw_timestamp":3543510779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5NTAxMjIyMDA0NDOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2735, '2016-08-10 19:47:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:15.997643Z","gw_timestamp":3557873595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2737, '2016-08-10 19:47:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:30.370885Z","gw_timestamp":3572237147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2739, '2016-08-10 19:47:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:44.730137Z","gw_timestamp":3586600907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2741, '2016-08-10 19:48:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:47:59.094251Z","gw_timestamp":3600963523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2743, '2016-08-10 19:48:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:13.451502Z","gw_timestamp":3615327171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUyNzAxMjIyMDA0NDOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2745, '2016-08-10 19:48:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:27.831219Z","gw_timestamp":3629689987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NTAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2747, '2016-08-10 19:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:42.177136Z","gw_timestamp":3644053643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2722, '2016-08-10 19:45:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:45:56.999766Z","gw_timestamp":3478875171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDOvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2752, '2016-08-10 19:49:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:18.089385Z","gw_timestamp":3679960899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2754, '2016-08-10 19:49:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:32.451633Z","gw_timestamp":3694324555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2756, '2016-08-10 19:49:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:46.82189Z","gw_timestamp":3708688307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2758, '2016-08-10 19:50:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:01.200412Z","gw_timestamp":3723050923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwMDAxMjIyMDA0NDOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2760, '2016-08-10 19:50:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:15.53538Z","gw_timestamp":3737413531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2762, '2016-08-10 19:50:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:29.903832Z","gw_timestamp":3751776355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2792, '2016-08-10 19:54:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:58.171024Z","gw_timestamp":3960044843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzNDAxMjIyMDA0NDOyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2794, '2016-08-10 19:54:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:12.535485Z","gw_timestamp":3974407667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MjAxMjIyMDA0NDOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2796, '2016-08-10 19:54:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:26.906491Z","gw_timestamp":3988770899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5NTAxMjIyMDA0NDOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2798, '2016-08-10 19:54:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:41.261899Z","gw_timestamp":4003133619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIyMDA0NDOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2800, '2016-08-10 19:55:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:55.622022Z","gw_timestamp":4017495707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NTAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2802, '2016-08-10 19:55:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:09.984272Z","gw_timestamp":4031859355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIyMDA0NDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2804, '2016-08-10 19:55:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:24.34153Z","gw_timestamp":4046222179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2749, '2016-08-10 19:48:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:48:56.543372Z","gw_timestamp":3658416355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIyMDA0NDOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2779, '2016-08-10 19:52:26', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":792,"f_cnt_down":1448,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:10:01.604609Z","gw_timestamp":1242961996,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-13.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwMjAxMjM5MDA0MjMMMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2781, '2016-08-10 19:52:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:31.987404Z","gw_timestamp":3873862827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2811, '2016-08-10 19:56:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:14.614903Z","gw_timestamp":4096493403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIyMDA0NDOyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2813, '2016-08-10 19:56:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:36.162898Z","gw_timestamp":4118038467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2815, '2016-08-10 19:56:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:50.526284Z","gw_timestamp":4132401179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUxNjAxMjIyMDA0NDOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2817, '2016-08-10 19:57:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:04.892469Z","gw_timestamp":4146764835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0MTAxMjIyMDA0NDOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2819, '2016-08-10 19:57:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:19.255877Z","gw_timestamp":4161127659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NTAxMjIyMDA0NDOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2821, '2016-08-10 19:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:40.800532Z","gw_timestamp":4182672195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2823, '2016-08-10 19:57:58', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1276,"f_cnt_down":2078,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:57:48.755457Z","gw_timestamp":2935109508,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:29.588417Z","gw_timestamp":1570945804,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3MTAxMjI0MDA0NTIKsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2825, '2016-08-10 19:58:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:02.346411Z","gw_timestamp":4204217779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MDAxMjIyMDA0NDOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2827, '2016-08-10 19:58:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:16.714942Z","gw_timestamp":4218580915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIyMDA0NDOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2829, '2016-08-10 19:58:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:31.063847Z","gw_timestamp":4232944043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNDAxMjIyMDA0NDOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2750, '2016-08-10 19:49:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:49:03.743259Z","gw_timestamp":3665598083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MzAxMjIyMDA0NDOyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2764, '2016-08-10 19:50:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:44.271081Z","gw_timestamp":3766140107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUyNzAxMjIyMDA0NDOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2766, '2016-08-10 19:50:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:50:58.630136Z","gw_timestamp":3780503659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MjAxMjIyMDA0NDOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2768, '2016-08-10 19:51:07', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":799,"f_cnt_down":1492,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T19:50:59.113248Z","gw_timestamp":2525467092,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDYwNTAxMjI2MDA0NjEOYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2770, '2016-08-10 19:51:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:12.996524Z","gw_timestamp":3794867419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwOTAxMjIyMDA0NDOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2772, '2016-08-10 19:51:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:34.538396Z","gw_timestamp":3816411963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIyMDA0NDOyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2774, '2016-08-10 19:51:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:51:48.898646Z","gw_timestamp":3830774675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2776, '2016-08-10 19:52:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:03.264889Z","gw_timestamp":3845137491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2778, '2016-08-10 19:52:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:17.64512Z","gw_timestamp":3859500003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4MTAxMjIyMDA0NDOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2780, '2016-08-10 19:52:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:24.823022Z","gw_timestamp":3866681307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2782, '2016-08-10 19:52:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:39.176013Z","gw_timestamp":3881044539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2784, '2016-08-10 19:53:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:53.542697Z","gw_timestamp":3895408307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2786, '2016-08-10 19:53:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:07.904601Z","gw_timestamp":3909771955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NTAxMjIyMDA0NDOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2788, '2016-08-10 19:53:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:22.257768Z","gw_timestamp":3924135611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzODAxMjIyMDA0NDOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2777, '2016-08-10 19:52:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:10.450731Z","gw_timestamp":3852319011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIyMDA0NDOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2783, '2016-08-10 19:52:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:52:46.35864Z","gw_timestamp":3888226371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2785, '2016-08-10 19:53:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:00.741885Z","gw_timestamp":3902590235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2787, '2016-08-10 19:53:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:15.089418Z","gw_timestamp":3916953883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0MzAxMjIyMDA0NDOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2789, '2016-08-10 19:53:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:36.631016Z","gw_timestamp":3938499363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwNzAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2791, '2016-08-10 19:53:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:50.984482Z","gw_timestamp":3952863019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUyMzAxMjIyMDA0NDOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2793, '2016-08-10 19:54:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:05.353633Z","gw_timestamp":3967226667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIyMDA0NDOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2795, '2016-08-10 19:54:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:19.710119Z","gw_timestamp":3981589491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MzAxMjIyMDA0NDOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2797, '2016-08-10 19:54:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:34.080149Z","gw_timestamp":3995952099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2799, '2016-08-10 19:54:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:54:48.442992Z","gw_timestamp":4010314715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2801, '2016-08-10 19:55:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:02.809895Z","gw_timestamp":4024677531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2803, '2016-08-10 19:55:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:17.160896Z","gw_timestamp":4039041187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDQ5MzAxMjIyMDA0NDOumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2805, '2016-08-10 19:55:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:31.533154Z","gw_timestamp":4053403907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4MTAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2807, '2016-08-10 19:55:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:45.893398Z","gw_timestamp":4067767659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUxNjAxMjIyMDA0NDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2790, '2016-08-10 19:53:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:53:43.802656Z","gw_timestamp":3945681187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NjAxMjIyMDA0NDOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2808, '2016-08-10 19:55:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:53.1093Z","gw_timestamp":4074949379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjIyMDA0NDOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2810, '2016-08-10 19:56:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:07.439273Z","gw_timestamp":4089312203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NTAxMjIyMDA0NDOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2812, '2016-08-10 19:56:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:21.799518Z","gw_timestamp":4103674915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjIyMDA0NDOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2814, '2016-08-10 19:56:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:43.351927Z","gw_timestamp":4125220083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIyMDA0NDOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2816, '2016-08-10 19:57:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:57.713182Z","gw_timestamp":4139583115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDQ5NzAxMjIyMDA0NDOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2818, '2016-08-10 19:57:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:12.070026Z","gw_timestamp":4153945827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NTAxMjIyMDA0NDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2820, '2016-08-10 19:57:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:26.438412Z","gw_timestamp":4168309379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIyMDA0NDOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2822, '2016-08-10 19:57:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:47.975076Z","gw_timestamp":4189853915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2824, '2016-08-10 19:58:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:57:55.165043Z","gw_timestamp":4197035843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzODAxMjIyMDA0NDOvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2826, '2016-08-10 19:58:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:09.530305Z","gw_timestamp":4211399603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwNzAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2828, '2016-08-10 19:58:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:23.895501Z","gw_timestamp":4225762219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIyMDA0NDOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2830, '2016-08-10 19:58:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:38.243798Z","gw_timestamp":4240125979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2832, '2016-08-10 19:59:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:52.61291Z","gw_timestamp":4254488691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIyMDA0NDOuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2806, '2016-08-10 19:55:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:55:38.708762Z","gw_timestamp":4060585835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUyMTAxMjIyMDA0NDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2864, '2016-08-10 20:02:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:42.417169Z","gw_timestamp":189335363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIyMDA0NDKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2866, '2016-08-10 20:03:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:56.789297Z","gw_timestamp":203699227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMjAxMjIyMDA0NDKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2868, '2016-08-10 20:03:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:11.169816Z","gw_timestamp":218062779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIyMDA0NDKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2870, '2016-08-10 20:03:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:25.515799Z","gw_timestamp":232426427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIyMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2872, '2016-08-10 20:03:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:39.904642Z","gw_timestamp":246789243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIyMDA0NDKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2874, '2016-08-10 20:04:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:54.242695Z","gw_timestamp":261151963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2876, '2016-08-10 20:04:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:08.606678Z","gw_timestamp":275515619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIyMDA0NDKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2878, '2016-08-10 20:04:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:22.966927Z","gw_timestamp":289878643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIyMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2880, '2016-08-10 20:04:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:37.354958Z","gw_timestamp":304242091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDKyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2882, '2016-08-10 20:04:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:51.709696Z","gw_timestamp":318605843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIyMDA0NDKyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2884, '2016-08-10 20:05:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:06.05Z","gw_timestamp":332968875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIyMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2886, '2016-08-10 20:05:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:20.412925Z","gw_timestamp":347332115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIyMDA0NDKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2888, '2016-08-10 20:05:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:34.776174Z","gw_timestamp":361695971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2809, '2016-08-10 19:56:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:56:00.259653Z","gw_timestamp":4082131099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIyMDA0NDOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2833, '2016-08-10 19:59:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:59.811937Z","gw_timestamp":4261670515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIyMDA0NDOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2835, '2016-08-10 19:59:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:14.160595Z","gw_timestamp":4276034275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2837, '2016-08-10 19:59:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:28.52317Z","gw_timestamp":4290396987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIyMDA0NDOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2839, '2016-08-10 19:59:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:50.074187Z","gw_timestamp":16974547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIyMDA0NDOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2841, '2016-08-10 20:00:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:04.441429Z","gw_timestamp":31337891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwNzAxMjIyMDA0NDOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2843, '2016-08-10 20:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:18.800359Z","gw_timestamp":45701435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjIyMDA0NDOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2845, '2016-08-10 20:00:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:33.158657Z","gw_timestamp":60065299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIyMDA0NDOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2847, '2016-08-10 20:00:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:47.516918Z","gw_timestamp":74428851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIyMDA0NDOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2849, '2016-08-10 20:01:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:01.882167Z","gw_timestamp":88792611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIyMDA0NDOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2851, '2016-08-10 20:01:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:09.055919Z","gw_timestamp":95973699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2853, '2016-08-10 20:01:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:23.422162Z","gw_timestamp":110337147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2855, '2016-08-10 20:01:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:37.788289Z","gw_timestamp":124700907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIyMDA0NDOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2857, '2016-08-10 20:02:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:52.157672Z","gw_timestamp":139063827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NDAxMjIyMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2831, '2016-08-10 19:58:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:58:45.432289Z","gw_timestamp":4247307699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NTAxMjIyMDA0NDOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2861, '2016-08-10 20:02:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:20.899278Z","gw_timestamp":167790931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIyMDA0NDOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2863, '2016-08-10 20:02:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:35.243046Z","gw_timestamp":182153643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIyMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2865, '2016-08-10 20:02:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:49.607674Z","gw_timestamp":196517403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIyMDA0NDKvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2867, '2016-08-10 20:03:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:03.972915Z","gw_timestamp":210880947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIyMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2869, '2016-08-10 20:03:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:18.33216Z","gw_timestamp":225244707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIyMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2871, '2016-08-10 20:03:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:32.694497Z","gw_timestamp":239607419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIyMDA0NDKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2873, '2016-08-10 20:03:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:03:47.06379Z","gw_timestamp":253970243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIyMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2875, '2016-08-10 20:04:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:01.439406Z","gw_timestamp":268333683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MzAxMjIyMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2877, '2016-08-10 20:04:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:15.787305Z","gw_timestamp":282697547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIyMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2879, '2016-08-10 20:04:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:30.149548Z","gw_timestamp":297060155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIyMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2881, '2016-08-10 20:04:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:44.508788Z","gw_timestamp":311423915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDKvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2909, '2016-08-10 20:07:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:44.051747Z","gw_timestamp":490965003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwMjAxMjIyMDA0NDKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2915, '2016-08-10 20:08:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:34.31716Z","gw_timestamp":541236011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIyMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2834, '2016-08-10 19:59:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:06.971165Z","gw_timestamp":4268852347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2836, '2016-08-10 19:59:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:21.33741Z","gw_timestamp":4283215995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2838, '2016-08-10 19:59:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:42.881282Z","gw_timestamp":9793347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MjAxMjIyMDA0NDOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2840, '2016-08-10 20:00:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T19:59:57.25254Z","gw_timestamp":24155955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjIyMDA0NDOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2842, '2016-08-10 20:00:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:11.61779Z","gw_timestamp":38519715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2844, '2016-08-10 20:00:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:25.976022Z","gw_timestamp":52883371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIyMDA0NDOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2846, '2016-08-10 20:00:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:40.340503Z","gw_timestamp":67247131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIyMDA0NDOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2848, '2016-08-10 20:01:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:00:54.705441Z","gw_timestamp":81610779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIyMDA0NDOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2850, '2016-08-10 20:01:11', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":713,"f_cnt_down":1294,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:01:08.409971Z","gw_timestamp":3134764124,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0NjkIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2852, '2016-08-10 20:01:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:16.248543Z","gw_timestamp":103155219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzODAxMjIyMDA0NDOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2854, '2016-08-10 20:01:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:30.62328Z","gw_timestamp":117519083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjIyMDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2856, '2016-08-10 20:01:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:44.986449Z","gw_timestamp":131882731,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjIyMDA0NDKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2858, '2016-08-10 20:02:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:01:59.328159Z","gw_timestamp":146245347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIyMDA0NDKyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2860, '2016-08-10 20:02:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:13.701532Z","gw_timestamp":160609099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIyMDA0NDOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2859, '2016-08-10 20:02:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:06.519919Z","gw_timestamp":153427275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIyMDA0NDKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2883, '2016-08-10 20:05:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:04:58.877305Z","gw_timestamp":325787571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIyMDA0NDKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2885, '2016-08-10 20:05:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:13.248572Z","gw_timestamp":340150283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNjAxMjIyMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2887, '2016-08-10 20:05:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:27.627797Z","gw_timestamp":354514043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NDAxMjIyMDA0NDKvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2889, '2016-08-10 20:05:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:41.968804Z","gw_timestamp":368877691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2891, '2016-08-10 20:06:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:56.320058Z","gw_timestamp":383240307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwMjAxMjIyMDA0NDKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2893, '2016-08-10 20:06:11', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":799,"f_cnt_down":1493,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:50.71005Z","gw_timestamp":2072067436,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU5MTAxMjI2MDA0NjEGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2895, '2016-08-10 20:06:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:10.687428Z","gw_timestamp":397603963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzNjAxMjIyMDA0NDKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2897, '2016-08-10 20:06:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:25.05868Z","gw_timestamp":411967723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MzAxMjIyMDA0NDKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2899, '2016-08-10 20:06:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:39.416185Z","gw_timestamp":426331059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NTAxMjIyMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2901, '2016-08-10 20:07:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:53.783179Z","gw_timestamp":440693147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIyMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2903, '2016-08-10 20:07:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:08.1587Z","gw_timestamp":455056803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NTAxMjIyMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2905, '2016-08-10 20:07:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:22.505675Z","gw_timestamp":469419827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzODAxMjIyMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2917, '2016-08-10 20:08:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:48.688566Z","gw_timestamp":555599771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIyMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2862, '2016-08-10 20:02:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:02:28.062161Z","gw_timestamp":174971923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjIyMDA0NDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2892, '2016-08-10 20:06:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:03.526177Z","gw_timestamp":390422235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIyMDA0NDKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2894, '2016-08-10 20:06:12', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":800,"f_cnt_down":1494,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:06:09.877065Z","gw_timestamp":3436231372,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU5MTAxMjI2MDA0NjEGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2896, '2016-08-10 20:06:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:17.878896Z","gw_timestamp":404785891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjIyMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2898, '2016-08-10 20:06:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:32.239294Z","gw_timestamp":419149547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIyMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2900, '2016-08-10 20:06:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:06:46.592806Z","gw_timestamp":433512155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIyMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2902, '2016-08-10 20:07:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:00.960811Z","gw_timestamp":447874971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NjAxMjIyMDA0NDKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2932, '2016-08-10 20:10:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:36.410939Z","gw_timestamp":663324355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NTAxMjIyMDA0NDKvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2934, '2016-08-10 20:10:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:50.801069Z","gw_timestamp":677687803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIzMDA0NDKyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2936, '2016-08-10 20:11:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:05.147594Z","gw_timestamp":692049787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIzMDA0NDKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2938, '2016-08-10 20:11:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:19.503573Z","gw_timestamp":706413131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIzMDA0NDKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2940, '2016-08-10 20:11:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:33.855811Z","gw_timestamp":720775947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2942, '2016-08-10 20:12:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:48.228447Z","gw_timestamp":735138763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzNDAxMjIzMDA0NDKxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2944, '2016-08-10 20:12:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:09.771941Z","gw_timestamp":756683307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwMjAxMjIzMDA0NDKumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2890, '2016-08-10 20:05:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:05:49.154929Z","gw_timestamp":376059003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIyMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2904, '2016-08-10 20:07:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:15.328053Z","gw_timestamp":462238731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjIyMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2906, '2016-08-10 20:07:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:29.688308Z","gw_timestamp":476601451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIyMDA0NDKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2908, '2016-08-10 20:07:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:36.876936Z","gw_timestamp":483783067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIyMDA0NDKzKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2910, '2016-08-10 20:08:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:07:58.415807Z","gw_timestamp":505327811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzNDAxMjIyMDA0NDKu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2912, '2016-08-10 20:08:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:12.78206Z","gw_timestamp":519690539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjIyMDA0NDKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2914, '2016-08-10 20:08:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:27.140423Z","gw_timestamp":534054083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIzMDA0NDKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2916, '2016-08-10 20:08:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:41.503673Z","gw_timestamp":548417835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIyMDA0NDKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2918, '2016-08-10 20:09:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:55.867938Z","gw_timestamp":562781595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIyMDA0NDKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2920, '2016-08-10 20:09:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:10.224185Z","gw_timestamp":577145251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4MTAxMjIyMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2922, '2016-08-10 20:09:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:24.600545Z","gw_timestamp":591507963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIyMDA0NDKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2924, '2016-08-10 20:09:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:38.961695Z","gw_timestamp":605871515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4MTAxMjIyMDA0NDKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2926, '2016-08-10 20:10:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:53.323928Z","gw_timestamp":620233603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwMjAxMjIzMDA0NDKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2928, '2016-08-10 20:10:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:07.686173Z","gw_timestamp":634597051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MDAxMjIzMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2907, '2016-08-10 20:07:38', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":793,"f_cnt_down":1449,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:07:31.607503Z","gw_timestamp":3517961852,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:25:12.440489Z","gw_timestamp":2153797876,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ3NDAxMjM3MDA0MjMKQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2911, '2016-08-10 20:08:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:05.59143Z","gw_timestamp":512509019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5NzAxMjIyMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2913, '2016-08-10 20:08:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:08:19.961678Z","gw_timestamp":526872459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIyMDA0NDKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2921, '2016-08-10 20:09:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:17.415814Z","gw_timestamp":584326971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NTAxMjIyMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2923, '2016-08-10 20:09:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:31.779059Z","gw_timestamp":598689691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0MzAxMjIyMDA0NDKxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2925, '2016-08-10 20:09:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:46.136315Z","gw_timestamp":613052507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIyMDA0NDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2927, '2016-08-10 20:10:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:00.509814Z","gw_timestamp":627415227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MDAxMjIzMDA0NDKyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2937, '2016-08-10 20:11:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:12.321941Z","gw_timestamp":699231723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIzMDA0NDKvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2939, '2016-08-10 20:11:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:26.683179Z","gw_timestamp":713594227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIzMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2941, '2016-08-10 20:11:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:11:41.044698Z","gw_timestamp":727957043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzODAxMjIzMDA0NDKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2943, '2016-08-10 20:12:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:02.578312Z","gw_timestamp":749501483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIzMDA0NDKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2949, '2016-08-10 20:12:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:45.68107Z","gw_timestamp":792591715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2951, '2016-08-10 20:13:02', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1277,"f_cnt_down":2079,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:13:00.276254Z","gw_timestamp":3846630772,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-90,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjIzMDA0NTIIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2919, '2016-08-10 20:09:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:09:03.051581Z","gw_timestamp":569963523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2929, '2016-08-10 20:10:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:14.860024Z","gw_timestamp":641778875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIyMDA0NDKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2931, '2016-08-10 20:10:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:29.231065Z","gw_timestamp":656142531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NjAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2933, '2016-08-10 20:10:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:43.594309Z","gw_timestamp":670506283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MDAxMjIzMDA0NDKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2935, '2016-08-10 20:11:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:57.951639Z","gw_timestamp":684868795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIzMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2945, '2016-08-10 20:12:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:16.944621Z","gw_timestamp":763864827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIzMDA0NDKyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2947, '2016-08-10 20:12:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:31.319085Z","gw_timestamp":778227955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIzMDA0NDKxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2955, '2016-08-10 20:13:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:21.586326Z","gw_timestamp":828499811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MzAxMjIzMDA0NDKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2973, '2016-08-10 20:15:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:30.851573Z","gw_timestamp":957768003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIzMDA0NDKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2975, '2016-08-10 20:15:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:45.2232Z","gw_timestamp":972131859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0MzAxMjIzMDA0NDKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2977, '2016-08-10 20:16:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:59.576198Z","gw_timestamp":986495515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIzMDA0NDKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2981, '2016-08-10 20:16:22', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":715,"f_cnt_down":1296,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:16:19.814616Z","gw_timestamp":4046169236,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0NjcGwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2983, '2016-08-10 20:16:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:28.305696Z","gw_timestamp":1015221883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzMDAxMjIzMDA0NDKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2995, '2016-08-10 20:18:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:54.487329Z","gw_timestamp":1101401091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2930, '2016-08-10 20:10:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:10:22.041442Z","gw_timestamp":648960707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MzAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2946, '2016-08-10 20:12:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:24.130186Z","gw_timestamp":771046027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUyMzAxMjIzMDA0NDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2948, '2016-08-10 20:12:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:38.495447Z","gw_timestamp":785409891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIzMDA0NDKyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2950, '2016-08-10 20:13:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:12:52.856682Z","gw_timestamp":799773539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NjAxMjIzMDA0NDKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2952, '2016-08-10 20:13:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:00.032949Z","gw_timestamp":806955267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjIzMDA0NDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2956, '2016-08-10 20:13:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:28.761946Z","gw_timestamp":835681635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIzMDA0NDKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2970, '2016-08-10 20:15:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:09.309681Z","gw_timestamp":936223659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIzMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2972, '2016-08-10 20:15:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:23.688585Z","gw_timestamp":950586795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MDAxMjIzMDA0NDKxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2974, '2016-08-10 20:15:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:38.034384Z","gw_timestamp":964949931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzMjAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2976, '2016-08-10 20:16:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:52.392577Z","gw_timestamp":979313691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzNjAxMjIzMDA0NDKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2978, '2016-08-10 20:16:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:06.761828Z","gw_timestamp":993677443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzMjAxMjIzMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2986, '2016-08-10 20:16:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:49.849579Z","gw_timestamp":1036767155,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIzMDA0NDKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2988, '2016-08-10 20:17:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:04.209099Z","gw_timestamp":1051129867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIzMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2990, '2016-08-10 20:17:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:18.570076Z","gw_timestamp":1065492899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIzMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2953, '2016-08-10 20:13:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:07.242418Z","gw_timestamp":814136259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzNDAxMjIzMDA0NDKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2957, '2016-08-10 20:13:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:35.948687Z","gw_timestamp":842862627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MzAxMjIzMDA0NDKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2959, '2016-08-10 20:13:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:50.312821Z","gw_timestamp":857225755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2961, '2016-08-10 20:14:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:04.670078Z","gw_timestamp":871588475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIzMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2963, '2016-08-10 20:14:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:19.049665Z","gw_timestamp":885951707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2965, '2016-08-10 20:14:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:33.39158Z","gw_timestamp":900314843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIzMDA0NDKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2967, '2016-08-10 20:14:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:47.769086Z","gw_timestamp":914678075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjIzMDA0NDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2969, '2016-08-10 20:15:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:02.168319Z","gw_timestamp":929041835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2971, '2016-08-10 20:15:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:15:16.483321Z","gw_timestamp":943405483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2979, '2016-08-10 20:16:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:13.947707Z","gw_timestamp":1000859371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzMDAxMjIzMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2985, '2016-08-10 20:16:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:42.665891Z","gw_timestamp":1029585739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MzAxMjIzMDA0NDKuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2987, '2016-08-10 20:17:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:57.052576Z","gw_timestamp":1043948355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2MTAxMjIzMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2989, '2016-08-10 20:17:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:11.389457Z","gw_timestamp":1058310971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1MjAxMjIzMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2991, '2016-08-10 20:17:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:25.750705Z","gw_timestamp":1072674723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0NzAxMjIzMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2954, '2016-08-10 20:13:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:14.401679Z","gw_timestamp":821318083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NDAxMjIzMDA0NDKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2958, '2016-08-10 20:13:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:43.128839Z","gw_timestamp":850044347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5MTAxMjIzMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2960, '2016-08-10 20:14:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:13:57.50871Z","gw_timestamp":864407163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MDAxMjIzMDA0NDKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2962, '2016-08-10 20:14:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:11.856694Z","gw_timestamp":878769883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2964, '2016-08-10 20:14:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:26.224178Z","gw_timestamp":893133643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDUzODAxMjIzMDA0NDKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2966, '2016-08-10 20:14:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:40.572198Z","gw_timestamp":907496355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2968, '2016-08-10 20:15:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:14:54.945443Z","gw_timestamp":921859907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4NDAxMjIzMDA0NDKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2980, '2016-08-10 20:16:21', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":714,"f_cnt_down":1295,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:22:25.680346Z","gw_timestamp":2682005028,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0NjcGwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2982, '2016-08-10 20:16:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:21.137351Z","gw_timestamp":1008040883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjIzMDA0NDKzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2984, '2016-08-10 20:16:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:16:35.47934Z","gw_timestamp":1022403811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjIzMDA0NDKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2994, '2016-08-10 20:17:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:47.304594Z","gw_timestamp":1094219163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2996, '2016-08-10 20:18:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:01.670145Z","gw_timestamp":1108582083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2998, '2016-08-10 20:18:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:16.027484Z","gw_timestamp":1122945531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIzMDA0NDKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3000, '2016-08-10 20:18:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:30.386458Z","gw_timestamp":1137309395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNjAxMjIzMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2992, '2016-08-10 20:17:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:32.937466Z","gw_timestamp":1079856443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3MjAxMjIzMDA0NDKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3004, '2016-08-10 20:19:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:59.114943Z","gw_timestamp":1166036803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3006, '2016-08-10 20:19:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:13.488482Z","gw_timestamp":1180400459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3008, '2016-08-10 20:19:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:27.845578Z","gw_timestamp":1194764107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3010, '2016-08-10 20:19:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:42.211703Z","gw_timestamp":1209127867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3012, '2016-08-10 20:20:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:56.576217Z","gw_timestamp":1223491515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3014, '2016-08-10 20:20:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:10.96848Z","gw_timestamp":1237854235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3016, '2016-08-10 20:20:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:25.309857Z","gw_timestamp":1252217779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NzAxMjIzMDA0NDKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3018, '2016-08-10 20:20:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:39.662845Z","gw_timestamp":1266580603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3020, '2016-08-10 20:21:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:54.024079Z","gw_timestamp":1280943843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNjAxMjIzMDA0NDKymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3022, '2016-08-10 20:21:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:08.386323Z","gw_timestamp":1295306035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIzMDA0NDKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3024, '2016-08-10 20:21:22', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":800,"f_cnt_down":1495,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:27:26.510585Z","gw_timestamp":2982835268,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4NTAxMjI2MDA0NjEG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2993, '2016-08-10 20:17:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:17:40.11796Z","gw_timestamp":1087037443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5NzAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2999, '2016-08-10 20:18:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:23.208818Z","gw_timestamp":1130127459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjIzMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3001, '2016-08-10 20:18:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:37.583154Z","gw_timestamp":1144491427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIzMDA0NDKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3003, '2016-08-10 20:19:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:51.931333Z","gw_timestamp":1158854867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIzMDA0NDKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3005, '2016-08-10 20:19:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:06.292709Z","gw_timestamp":1173218627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIzMDA0NDKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3007, '2016-08-10 20:19:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:20.661832Z","gw_timestamp":1187582283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjIzMDA0NDKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3009, '2016-08-10 20:19:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:35.036416Z","gw_timestamp":1201946043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3011, '2016-08-10 20:19:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:19:49.389662Z","gw_timestamp":1216309691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjIzMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3013, '2016-08-10 20:20:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:03.748586Z","gw_timestamp":1230672723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjIzMDA0NDKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3015, '2016-08-10 20:20:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:18.115961Z","gw_timestamp":1245036059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjIzMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3017, '2016-08-10 20:20:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:32.478213Z","gw_timestamp":1259398779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjIzMDA0NDKu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3019, '2016-08-10 20:20:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:20:46.837466Z","gw_timestamp":1273762427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIzMDA0NDKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3021, '2016-08-10 20:21:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:01.21108Z","gw_timestamp":1288125043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIzMDA0NDKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3023, '2016-08-10 20:21:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:15.565957Z","gw_timestamp":1302487859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIzMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (2997, '2016-08-10 20:18:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:08.837571Z","gw_timestamp":1115763803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3027, '2016-08-10 20:21:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:29.922207Z","gw_timestamp":1316850579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3029, '2016-08-10 20:21:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:44.288466Z","gw_timestamp":1331213291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MzAxMjIzMDA0NDKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3002, '2016-08-10 20:18:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:18:44.747697Z","gw_timestamp":1151672939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NTAxMjIzMDA0NDKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3026, '2016-08-10 20:21:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:22.747586Z","gw_timestamp":1309669587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3028, '2016-08-10 20:21:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:37.118846Z","gw_timestamp":1324031675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3025, '2016-08-10 20:21:24', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":801,"f_cnt_down":1496,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:21:20.644837Z","gw_timestamp":52032316,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4NTAxMjI2MDA0NjEG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3030, '2016-08-10 20:22:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:51.490364Z","gw_timestamp":1338395115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MDAxMjIzMDA0NDKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3031, '2016-08-10 20:22:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:21:58.659715Z","gw_timestamp":1345576843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzODAxMjIzMDA0NDKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3032, '2016-08-10 20:22:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:05.837337Z","gw_timestamp":1352758771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MzAxMjIzMDA0NDKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3033, '2016-08-10 20:22:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:13.016963Z","gw_timestamp":1359940603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjIzMDA0NDKu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3034, '2016-08-10 20:22:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:20.203588Z","gw_timestamp":1367121795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIzMDA0NDKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3035, '2016-08-10 20:22:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:27.385197Z","gw_timestamp":1374303315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjIzMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3036, '2016-08-10 20:22:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:34.560594Z","gw_timestamp":1381485147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3037, '2016-08-10 20:22:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:41.75286Z","gw_timestamp":1388666971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3038, '2016-08-10 20:22:50', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":794,"f_cnt_down":1450,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:22:42.447827Z","gw_timestamp":133835348,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:28:48.313578Z","gw_timestamp":3064638260,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4MjAxMjM2MDA0MjIiMg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3039, '2016-08-10 20:22:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:48.925222Z","gw_timestamp":1395848899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3040, '2016-08-10 20:23:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:22:56.104847Z","gw_timestamp":1403030723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3041, '2016-08-10 20:23:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:03.292468Z","gw_timestamp":1410212555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3042, '2016-08-10 20:23:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:10.465069Z","gw_timestamp":1417394171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3046, '2016-08-10 20:23:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:39.194658Z","gw_timestamp":1446119707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3048, '2016-08-10 20:24:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:53.56084Z","gw_timestamp":1460483571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIzMDA0NDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3050, '2016-08-10 20:24:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:15.107994Z","gw_timestamp":1482028003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MjAxMjIzMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3052, '2016-08-10 20:24:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:29.471972Z","gw_timestamp":1496391763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MzAxMjIzMDA0NDKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3054, '2016-08-10 20:24:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:43.828209Z","gw_timestamp":1510754483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3056, '2016-08-10 20:25:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:58.207872Z","gw_timestamp":1525118131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3058, '2016-08-10 20:25:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:12.556973Z","gw_timestamp":1539481787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxMDAxMjIzMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3060, '2016-08-10 20:25:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:26.919098Z","gw_timestamp":1553844195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIzMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3062, '2016-08-10 20:25:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:41.282332Z","gw_timestamp":1568207115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3064, '2016-08-10 20:26:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:55.664821Z","gw_timestamp":1582570875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjIzMDA0NDKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3066, '2016-08-10 20:26:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:10.010447Z","gw_timestamp":1596934003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIzMDA0NDKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3068, '2016-08-10 20:26:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:24.378046Z","gw_timestamp":1611297035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3070, '2016-08-10 20:26:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:38.734415Z","gw_timestamp":1625659851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIzMDA0NDKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3043, '2016-08-10 20:23:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:17.672986Z","gw_timestamp":1424575163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMzAxMjIzMDA0NDKxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3047, '2016-08-10 20:23:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:46.377225Z","gw_timestamp":1453301635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYxNjAxMjIzMDA0NDKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3049, '2016-08-10 20:24:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:00.748456Z","gw_timestamp":1467665291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3057, '2016-08-10 20:25:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:05.371226Z","gw_timestamp":1532299851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIzMDA0NDKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3059, '2016-08-10 20:25:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:19.734544Z","gw_timestamp":1546662779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3061, '2016-08-10 20:25:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:34.120088Z","gw_timestamp":1561025283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3063, '2016-08-10 20:25:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:25:48.46697Z","gw_timestamp":1575388939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3065, '2016-08-10 20:26:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:02.82948Z","gw_timestamp":1589752691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIzMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3067, '2016-08-10 20:26:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:17.184544Z","gw_timestamp":1604115419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjIzMDA0NDKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3069, '2016-08-10 20:26:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:31.559714Z","gw_timestamp":1618478123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NTAxMjIzMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3071, '2016-08-10 20:26:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:45.945364Z","gw_timestamp":1632841883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjIzMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3073, '2016-08-10 20:27:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:00.284419Z","gw_timestamp":1647204395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjIzMDA0NDKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3075, '2016-08-10 20:27:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:14.648598Z","gw_timestamp":1661567211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3077, '2016-08-10 20:27:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:29.004833Z","gw_timestamp":1675930867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3044, '2016-08-10 20:23:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:24.833269Z","gw_timestamp":1431756155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3074, '2016-08-10 20:27:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:07.459964Z","gw_timestamp":1654385907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3076, '2016-08-10 20:27:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:21.826224Z","gw_timestamp":1668749043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjIzMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3078, '2016-08-10 20:27:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:36.193845Z","gw_timestamp":1683111859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3080, '2016-08-10 20:27:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:50.554727Z","gw_timestamp":1697474571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIzMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3082, '2016-08-10 20:28:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:04.911237Z","gw_timestamp":1711838131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIzMDA0NDKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3084, '2016-08-10 20:28:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:12.10921Z","gw_timestamp":1719020059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDKuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3086, '2016-08-10 20:28:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:26.483224Z","gw_timestamp":1733382979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxODAxMjIzMDA0NDKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3088, '2016-08-10 20:28:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:40.816105Z","gw_timestamp":1747745907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIzMDA0NDKzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3090, '2016-08-10 20:29:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:55.184326Z","gw_timestamp":1762109139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3092, '2016-08-10 20:29:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:09.540984Z","gw_timestamp":1776472171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3094, '2016-08-10 20:29:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:23.919234Z","gw_timestamp":1790835507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3096, '2016-08-10 20:29:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:38.276231Z","gw_timestamp":1805199163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIzMDA0NDKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3098, '2016-08-10 20:30:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:52.636488Z","gw_timestamp":1819562915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMTAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3045, '2016-08-10 20:23:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:23:32.018969Z","gw_timestamp":1438937979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDKu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3051, '2016-08-10 20:24:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:22.295569Z","gw_timestamp":1489209931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3053, '2016-08-10 20:24:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:36.6486Z","gw_timestamp":1503572755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIzMDA0NDKyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3055, '2016-08-10 20:25:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:24:51.010961Z","gw_timestamp":1517936203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MDAxMjIzMDA0NDKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3081, '2016-08-10 20:28:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:57.729353Z","gw_timestamp":1704656299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3083, '2016-08-10 20:28:13', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1278,"f_cnt_down":2080,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:28:11.094624Z","gw_timestamp":462482316,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjIzMDA0NTEHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3085, '2016-08-10 20:28:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:19.277231Z","gw_timestamp":1726201883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNjAxMjIzMDA0NDKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3087, '2016-08-10 20:28:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:33.64148Z","gw_timestamp":1740564491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIzMDA0NDKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3089, '2016-08-10 20:28:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:28:48.000732Z","gw_timestamp":1754927211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3091, '2016-08-10 20:29:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:02.379073Z","gw_timestamp":1769290963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIzMDA0NDKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3093, '2016-08-10 20:29:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:16.732307Z","gw_timestamp":1783653683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMzAxMjIzMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3095, '2016-08-10 20:29:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:31.088234Z","gw_timestamp":1798017235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NzAxMjIzMDA0NDKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3097, '2016-08-10 20:29:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:45.460978Z","gw_timestamp":1812381099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3099, '2016-08-10 20:30:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:29:59.830355Z","gw_timestamp":1826744747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjIzMDA0NDKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3072, '2016-08-10 20:27:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:26:53.10023Z","gw_timestamp":1640023091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3102, '2016-08-10 20:30:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:28.551556Z","gw_timestamp":1855472155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNjAxMjIzMDA0NDKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3104, '2016-08-10 20:30:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:42.912867Z","gw_timestamp":1869835291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3106, '2016-08-10 20:31:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:57.278366Z","gw_timestamp":1884198107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjIzMDA0NDKyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3108, '2016-08-10 20:31:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:11.637354Z","gw_timestamp":1898561243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3110, '2016-08-10 20:31:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:25.997866Z","gw_timestamp":1912924163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjIzMDA0NDKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3140, '2016-08-10 20:35:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:01.444626Z","gw_timestamp":2128370219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMzAxMjIzMDA0NDGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3142, '2016-08-10 20:35:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:15.81087Z","gw_timestamp":2142733971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3144, '2016-08-10 20:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:30.166973Z","gw_timestamp":2157097627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3146, '2016-08-10 20:35:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:44.554723Z","gw_timestamp":2171460339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NDAxMjIzMDA0NDGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3148, '2016-08-10 20:36:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:58.891728Z","gw_timestamp":2185823995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3150, '2016-08-10 20:36:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:13.262999Z","gw_timestamp":2200186715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjIzMDA0NDGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3152, '2016-08-10 20:36:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:27.622251Z","gw_timestamp":2214549739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjIzMDA0NDGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3154, '2016-08-10 20:36:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:34.79581Z","gw_timestamp":2221731355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3079, '2016-08-10 20:27:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:27:43.373103Z","gw_timestamp":1690293587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3103, '2016-08-10 20:30:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:35.724573Z","gw_timestamp":1862653883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIzMDA0NDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3105, '2016-08-10 20:30:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:50.095479Z","gw_timestamp":1877016595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3107, '2016-08-10 20:31:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:04.455727Z","gw_timestamp":1891379315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NzAxMjIzMDA0NDKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3109, '2016-08-10 20:31:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:18.813243Z","gw_timestamp":1905743075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MjAxMjIzMDA0NDKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3137, '2016-08-10 20:34:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:39.928953Z","gw_timestamp":2106826299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3139, '2016-08-10 20:35:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:54.254277Z","gw_timestamp":2121189019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NzAxMjIzMDA0NDGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3141, '2016-08-10 20:35:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:08.617239Z","gw_timestamp":2135552147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjIzMDA0NDGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3143, '2016-08-10 20:35:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:22.980498Z","gw_timestamp":2149915803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIzMDA0NDGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3145, '2016-08-10 20:35:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:37.346127Z","gw_timestamp":2164279139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIzMDA0NDGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3147, '2016-08-10 20:35:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:35:51.716364Z","gw_timestamp":2178642275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDGumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3149, '2016-08-10 20:36:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:06.087619Z","gw_timestamp":2193004987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MzAxMjIzMDA0NDGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3193, '2016-08-10 20:41:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:22.059086Z","gw_timestamp":2508995571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1OTAxMjIzMDA0NDGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3195, '2016-08-10 20:41:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:36.428391Z","gw_timestamp":2523358915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1OTAxMjIzMDA0NDGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3100, '2016-08-10 20:30:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:06.996731Z","gw_timestamp":1833926571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIzMDA0NDKyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3112, '2016-08-10 20:31:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:33.189891Z","gw_timestamp":1920105787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MjAxMjIzMDA0NDKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3114, '2016-08-10 20:31:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:47.549615Z","gw_timestamp":1934468395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3116, '2016-08-10 20:32:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:01.920119Z","gw_timestamp":1948832155,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxODAxMjIzMDA0NDGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3118, '2016-08-10 20:32:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:16.271103Z","gw_timestamp":1963195811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MjAxMjIzMDA0NDGuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3120, '2016-08-10 20:32:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:30.628349Z","gw_timestamp":1977558523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MjAxMjIzMDA0NDGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3122, '2016-08-10 20:32:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:44.991603Z","gw_timestamp":1991922179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NTAxMjIzMDA0NDGvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3124, '2016-08-10 20:33:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:59.367207Z","gw_timestamp":2006285827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjIzMDA0NDGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3126, '2016-08-10 20:33:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:13.726307Z","gw_timestamp":2020648859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjIzMDA0NDGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3128, '2016-08-10 20:33:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:28.101634Z","gw_timestamp":2035012307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIzMDA0NDGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3130, '2016-08-10 20:33:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:42.441749Z","gw_timestamp":2049375851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjIzMDA0NDGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3132, '2016-08-10 20:34:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:56.81287Z","gw_timestamp":2063737947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3134, '2016-08-10 20:34:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:11.180248Z","gw_timestamp":2078101075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3136, '2016-08-10 20:34:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:32.71611Z","gw_timestamp":2099644995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3101, '2016-08-10 20:30:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:30:21.391251Z","gw_timestamp":1848290331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NzAxMjIzMDA0NDKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3111, '2016-08-10 20:31:35', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":715,"f_cnt_down":1297,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:31:30.586434Z","gw_timestamp":661974228,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:37:36.452225Z","gw_timestamp":3592776908,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1MTAxMjI2MDA0NjUHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3113, '2016-08-10 20:31:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:40.367258Z","gw_timestamp":1927286987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDKuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3115, '2016-08-10 20:31:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:31:54.729238Z","gw_timestamp":1941650331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIzMDA0NDKxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3117, '2016-08-10 20:32:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:09.104008Z","gw_timestamp":1956013979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjIzMDA0NDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3119, '2016-08-10 20:32:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:23.455737Z","gw_timestamp":1970377531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3121, '2016-08-10 20:32:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:37.811145Z","gw_timestamp":1984740347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxODAxMjIzMDA0NDGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3123, '2016-08-10 20:33:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:32:52.174228Z","gw_timestamp":1999104003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3125, '2016-08-10 20:33:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:06.538497Z","gw_timestamp":2013467763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MjAxMjIzMDA0NDGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3127, '2016-08-10 20:33:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:20.906747Z","gw_timestamp":2027830371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjIzMDA0NDGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3129, '2016-08-10 20:33:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:35.264969Z","gw_timestamp":2042194131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjIzMDA0NDGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3131, '2016-08-10 20:33:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:33:49.623364Z","gw_timestamp":2056556843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjIzMDA0NDGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3133, '2016-08-10 20:34:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:04.00193Z","gw_timestamp":2070919563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3135, '2016-08-10 20:34:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:18.359869Z","gw_timestamp":2085282067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIzMDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3151, '2016-08-10 20:36:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:20.458136Z","gw_timestamp":2207368539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3153, '2016-08-10 20:36:37', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":801,"f_cnt_down":1497,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:36:31.412489Z","gw_timestamp":962800436,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:42:37.278305Z","gw_timestamp":3893602988,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI1MDA0NjAJcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3155, '2016-08-10 20:36:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:41.993956Z","gw_timestamp":2228913075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MTAxMjIzMDA0NDGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3157, '2016-08-10 20:37:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:56.349752Z","gw_timestamp":2243276835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjIzMDA0NDGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3159, '2016-08-10 20:37:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:10.713126Z","gw_timestamp":2257640283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NTAxMjIzMDA0NDGu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3161, '2016-08-10 20:37:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:25.067121Z","gw_timestamp":2272003203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjIzMDA0NDGyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3163, '2016-08-10 20:37:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:39.436876Z","gw_timestamp":2286366963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjIzMDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3165, '2016-08-10 20:37:56', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":795,"f_cnt_down":1451,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:37:53.286533Z","gw_timestamp":1044674524,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:43:59.152354Z","gw_timestamp":3975477036,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ4NjAxMjM1MDA0MjIJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3167, '2016-08-10 20:38:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:00.988408Z","gw_timestamp":2307911403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIzMDA0NDGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3169, '2016-08-10 20:38:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:15.34676Z","gw_timestamp":2322274219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU3OTAxMjIzMDA0NDGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3171, '2016-08-10 20:38:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:29.707001Z","gw_timestamp":2336637875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjIzMDA0NDGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3173, '2016-08-10 20:38:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:44.076245Z","gw_timestamp":2351001523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjIzMDA0NDGt+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3138, '2016-08-10 20:34:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:34:47.083368Z","gw_timestamp":2114007603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NDAxMjIzMDA0NDGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3158, '2016-08-10 20:37:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:03.527361Z","gw_timestamp":2250458667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjIzMDA0NDGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3160, '2016-08-10 20:37:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:17.918427Z","gw_timestamp":2264821379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3162, '2016-08-10 20:37:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:32.263334Z","gw_timestamp":2279185035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3192, '2016-08-10 20:41:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:14.888516Z","gw_timestamp":2501814371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU2NjAxMjIzMDA0NDGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3194, '2016-08-10 20:41:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:29.238757Z","gw_timestamp":2516176979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU2ODAxMjIzMDA0NDGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3196, '2016-08-10 20:41:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:43.644696Z","gw_timestamp":2530540739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU3NzAxMjIzMDA0NDGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3198, '2016-08-10 20:42:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:57.973265Z","gw_timestamp":2544904499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU0NDAxMjIzMDA0NDGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3200, '2016-08-10 20:42:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:12.338652Z","gw_timestamp":2559267107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU2MTAxMjIzMDA0NDGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3202, '2016-08-10 20:42:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:26.695139Z","gw_timestamp":2573630859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1MzAxMjIzMDA0NDGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3204, '2016-08-10 20:42:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:41.061599Z","gw_timestamp":2587994515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjIzMDA0NDGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3206, '2016-08-10 20:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:55.422644Z","gw_timestamp":2602358067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDYwNDAxMjIzMDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3208, '2016-08-10 20:43:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:09.808333Z","gw_timestamp":2616721931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NTAxMjIzMDA0NDGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3210, '2016-08-10 20:43:22', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1279,"f_cnt_down":2081,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:27.778002Z","gw_timestamp":9135388,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDYxNTAxMjIyMDA0NTEI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3156, '2016-08-10 20:36:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:36:49.161121Z","gw_timestamp":2236094907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3164, '2016-08-10 20:37:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:46.617124Z","gw_timestamp":2293548795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjIzMDA0NDGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3166, '2016-08-10 20:38:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:37:53.801963Z","gw_timestamp":2300730099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NjAxMjIzMDA0NDGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3168, '2016-08-10 20:38:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:08.160126Z","gw_timestamp":2315092499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU3MDAxMjIzMDA0NDGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3170, '2016-08-10 20:38:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:22.53765Z","gw_timestamp":2329455947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjIzMDA0NDGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3172, '2016-08-10 20:38:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:36.892791Z","gw_timestamp":2343819595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyNzAxMjIzMDA0NDGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3174, '2016-08-10 20:38:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:51.255258Z","gw_timestamp":2358182619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NTAxMjIzMDA0NDGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3176, '2016-08-10 20:39:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:05.621132Z","gw_timestamp":2372545235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MzAxMjIzMDA0NDGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3178, '2016-08-10 20:39:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:27.165937Z","gw_timestamp":2394089675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MTAxMjIzMDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3180, '2016-08-10 20:39:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:41.523236Z","gw_timestamp":2408452603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjIzMDA0NDGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3182, '2016-08-10 20:40:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:55.886784Z","gw_timestamp":2422816051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1MzAxMjIzMDA0NDGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3184, '2016-08-10 20:40:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:10.278276Z","gw_timestamp":2437179699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU2MzAxMjIzMDA0NDGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3186, '2016-08-10 20:40:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:24.607134Z","gw_timestamp":2451543147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1NDAxMjIzMDA0NDGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3188, '2016-08-10 20:40:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:46.153012Z","gw_timestamp":2473087891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDYwMjAxMjIzMDA0NDGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3175, '2016-08-10 20:39:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:38:58.438503Z","gw_timestamp":2365364139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjIzMDA0NDGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3177, '2016-08-10 20:39:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:19.978382Z","gw_timestamp":2386907851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4ODAxMjIzMDA0NDGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3179, '2016-08-10 20:39:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:34.34276Z","gw_timestamp":2401271403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjIzMDA0NDGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3181, '2016-08-10 20:39:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:39:48.740161Z","gw_timestamp":2415634115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYzOTAxMjIzMDA0NDGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3183, '2016-08-10 20:40:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:03.063375Z","gw_timestamp":2429997867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1NjAxMjIzMDA0NDGt6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3185, '2016-08-10 20:40:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:17.434527Z","gw_timestamp":2444361627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDUzNDAxMjIzMDA0NDGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3187, '2016-08-10 20:40:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:38.979378Z","gw_timestamp":2465905963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU3NzAxMjIzMDA0NDGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3189, '2016-08-10 20:40:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:40:53.339082Z","gw_timestamp":2480268883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU3NzAxMjIzMDA0NDGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3191, '2016-08-10 20:41:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:07.705349Z","gw_timestamp":2494632747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU1NzAxMjIzMDA0NDGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3199, '2016-08-10 20:42:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:05.157144Z","gw_timestamp":2552086011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDUzMjAxMjIzMDA0NDGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3201, '2016-08-10 20:42:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:19.529416Z","gw_timestamp":2566448931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDU3MDAxMjIzMDA0NDGu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3203, '2016-08-10 20:42:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:33.890103Z","gw_timestamp":2580812587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDUzNTAxMjIzMDA0NDGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3233, '2016-08-10 20:46:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:02.178031Z","gw_timestamp":2789082331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3NzAxMjIzMDA0NDGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3235, '2016-08-10 20:46:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:16.515011Z","gw_timestamp":2803445875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3MDAxMjIzMDA0NDGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3190, '2016-08-10 20:41:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:00.519266Z","gw_timestamp":2487450715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDYwMDAxMjIzMDA0NDGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3214, '2016-08-10 20:43:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:38.515115Z","gw_timestamp":2645448507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjIzMDA0NDGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3216, '2016-08-10 20:44:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:52.88338Z","gw_timestamp":2659811747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NzAxMjIzMDA0NDGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3218, '2016-08-10 20:44:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:07.247628Z","gw_timestamp":2674174659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjIzMDA0NDGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3220, '2016-08-10 20:44:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:21.610895Z","gw_timestamp":2688538011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjIzMDA0NDGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3222, '2016-08-10 20:44:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:43.151901Z","gw_timestamp":2710081923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwMDAxMjIzMDA0NDGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3224, '2016-08-10 20:45:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:57.51714Z","gw_timestamp":2724445579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzNDAxMjIzMDA0NDGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3226, '2016-08-10 20:45:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:11.877393Z","gw_timestamp":2738809235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjIzMDA0NDGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3228, '2016-08-10 20:45:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:26.237901Z","gw_timestamp":2753173091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3OTAxMjIzMDA0NDGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3230, '2016-08-10 20:45:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:40.618148Z","gw_timestamp":2767536739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NzAxMjIzMDA0NDGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3232, '2016-08-10 20:46:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:54.97057Z","gw_timestamp":2781900499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NDAxMjIzMDA0NDGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3234, '2016-08-10 20:46:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:09.334453Z","gw_timestamp":2796263843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3MDAxMjIzMDA0NDGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3236, '2016-08-10 20:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:23.698647Z","gw_timestamp":2810627811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NjAxMjIzMDA0NDGu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3238, '2016-08-10 20:46:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:38.059897Z","gw_timestamp":2824991571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3NzAxMjIzMDA0NDGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3197, '2016-08-10 20:41:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:41:50.786626Z","gw_timestamp":2537722667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDYwNTAxMjIzMDA0NDGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3205, '2016-08-10 20:42:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:42:48.241772Z","gw_timestamp":2595176443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAowMDU5MTAxMjIzMDA0NDGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3207, '2016-08-10 20:43:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:02.614013Z","gw_timestamp":2609539995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjIzMDA0NDGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3209, '2016-08-10 20:43:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:16.970269Z","gw_timestamp":2623903755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MTAxMjIzMDA0NDGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3211, '2016-08-10 20:43:23', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1280,"f_cnt_down":2082,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:43:21.912157Z","gw_timestamp":1373300316,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDYxNTAxMjIyMDA0NTEI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3213, '2016-08-10 20:43:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:31.328386Z","gw_timestamp":2638267515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYzNTAxMjIzMDA0NDGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3215, '2016-08-10 20:43:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:45.70015Z","gw_timestamp":2652630227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MTAxMjIzMDA0NDGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3217, '2016-08-10 20:44:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:00.07606Z","gw_timestamp":2666992843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4ODAxMjIzMDA0NDGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3219, '2016-08-10 20:44:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:14.419271Z","gw_timestamp":2681356595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjIzMDA0NDGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3221, '2016-08-10 20:44:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:28.781571Z","gw_timestamp":2695719107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4ODAxMjIzMDA0NDGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3223, '2016-08-10 20:44:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:44:50.333786Z","gw_timestamp":2717263747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3OTAxMjIzMDA0NDGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3225, '2016-08-10 20:45:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:04.697148Z","gw_timestamp":2731627403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1NjAxMjIzMDA0NDGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3227, '2016-08-10 20:45:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:19.054018Z","gw_timestamp":2745991163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1OTAxMjIzMDA0NDGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3229, '2016-08-10 20:45:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:33.417263Z","gw_timestamp":2760354915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4NDAxMjIzMDA0NDGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3212, '2016-08-10 20:43:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:43:24.161523Z","gw_timestamp":2631085579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU5NzAxMjIzMDA0NDGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3242, '2016-08-10 20:47:10', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":716,"f_cnt_down":1298,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:47:06.041833Z","gw_timestamp":1597430108,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI1MDA0NjQJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3244, '2016-08-10 20:47:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:13.959399Z","gw_timestamp":2860899763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzNzAxMjIzMDA0NDGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3246, '2016-08-10 20:47:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:28.339701Z","gw_timestamp":2875263411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjIzMDA0NDGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3248, '2016-08-10 20:47:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:42.696652Z","gw_timestamp":2889627171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4MjAxMjIzMDA0NDGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3250, '2016-08-10 20:48:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:57.054884Z","gw_timestamp":2903990827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjIzMDA0NDGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3252, '2016-08-10 20:48:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:11.421148Z","gw_timestamp":2918354483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1OTAxMjIzMDA0NDGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3254, '2016-08-10 20:48:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:25.781397Z","gw_timestamp":2932718235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4NjAxMjIzMDA0NDGuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3256, '2016-08-10 20:48:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:40.141651Z","gw_timestamp":2947080851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NDAxMjIzMDA0NDCyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3258, '2016-08-10 20:49:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:54.546333Z","gw_timestamp":2961444611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjIzMDA0NDCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3260, '2016-08-10 20:49:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:08.90055Z","gw_timestamp":2975808363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1NTAxMjIzMDA0NDCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3262, '2016-08-10 20:49:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:23.240534Z","gw_timestamp":2990172011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MzAxMjIzMDA0NDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3264, '2016-08-10 20:49:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:37.595783Z","gw_timestamp":3004535571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4ODAxMjIzMDA0NDCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3266, '2016-08-10 20:49:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:51.965285Z","gw_timestamp":3018899427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjIzMDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3231, '2016-08-10 20:45:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:45:47.793046Z","gw_timestamp":2774718571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzMjAxMjIzMDA0NDGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3239, '2016-08-10 20:46:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:45.245889Z","gw_timestamp":2832173395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3NzAxMjIzMDA0NDGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3269, '2016-08-10 20:50:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:13.510902Z","gw_timestamp":3040444803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MzAxMjIzMDA0NDCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3271, '2016-08-10 20:50:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:27.871157Z","gw_timestamp":3054807627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NTAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3273, '2016-08-10 20:50:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:49.412411Z","gw_timestamp":3076352795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3NTAxMjIzMDA0NDCyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3275, '2016-08-10 20:51:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:03.778624Z","gw_timestamp":3090715715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU5ODAxMjIzMDA0NDCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3277, '2016-08-10 20:51:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:18.140675Z","gw_timestamp":3105079571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MTAxMjIzMDA0NDCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3279, '2016-08-10 20:51:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:32.524132Z","gw_timestamp":3119443235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3OTAxMjIzMDA0NDCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3281, '2016-08-10 20:51:49', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":802,"f_cnt_down":1498,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:51:42.179716Z","gw_timestamp":1873568132,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:48.045594Z","gw_timestamp":509402980,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU5MjAxMjI0MDA0NjAIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3283, '2016-08-10 20:52:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:54.051549Z","gw_timestamp":3140987667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NjAxMjIzMDA0NDCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3285, '2016-08-10 20:52:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:08.409677Z","gw_timestamp":3155351531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MDAxMjIzMDA0NDCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3287, '2016-08-10 20:52:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:22.783505Z","gw_timestamp":3169715291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3MDAxMjIzMDA0NDCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3289, '2016-08-10 20:52:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:37.147929Z","gw_timestamp":3184078107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3MDAxMjIzMDA0NDCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3237, '2016-08-10 20:46:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:30.919546Z","gw_timestamp":2817809531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2MTAxMjIzMDA0NDGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3241, '2016-08-10 20:47:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:59.608031Z","gw_timestamp":2846536939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2MjAxMjIzMDA0NDGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3243, '2016-08-10 20:47:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:06.786527Z","gw_timestamp":2853718243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4NDAxMjIzMDA0NDGyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3245, '2016-08-10 20:47:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:21.142775Z","gw_timestamp":2868081483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDYwMzAxMjIzMDA0NDGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3247, '2016-08-10 20:47:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:35.514022Z","gw_timestamp":2882445243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2MjAxMjIzMDA0NDGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3249, '2016-08-10 20:47:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:47:49.876266Z","gw_timestamp":2896808899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjIzMDA0NDGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3251, '2016-08-10 20:48:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:04.238284Z","gw_timestamp":2911172659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjIzMDA0NDGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3253, '2016-08-10 20:48:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:18.612039Z","gw_timestamp":2925536411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1OTAxMjIzMDA0NDGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3255, '2016-08-10 20:48:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:32.96402Z","gw_timestamp":2939899547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NDAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3257, '2016-08-10 20:48:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:48:47.323481Z","gw_timestamp":2954262571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NDAxMjIzMDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3259, '2016-08-10 20:49:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:01.70012Z","gw_timestamp":2968626331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzNzAxMjIzMDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3261, '2016-08-10 20:49:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:16.061908Z","gw_timestamp":2982990195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2MjAxMjIzMDA0NDCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3263, '2016-08-10 20:49:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:30.434499Z","gw_timestamp":2997353843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4MTAxMjIzMDA0NDCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3265, '2016-08-10 20:49:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:44.786629Z","gw_timestamp":3011717499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzOTAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3240, '2016-08-10 20:47:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:46:52.416276Z","gw_timestamp":2839354907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4NDAxMjIzMDA0NDGu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3324, '2016-08-10 20:56:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:55.690573Z","gw_timestamp":3442618451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2MjAxMjIzMDA0NDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3326, '2016-08-10 20:57:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:10.045674Z","gw_timestamp":3456982099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU4MjAxMjI0MDA0NDCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3328, '2016-08-10 20:57:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:24.403051Z","gw_timestamp":3471345651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2ODAxMjIzMDA0NDCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3330, '2016-08-10 20:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:38.766176Z","gw_timestamp":3485709515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU1MTAxMjIzMDA0NDCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3332, '2016-08-10 20:58:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:53.126796Z","gw_timestamp":3500073067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDUzNzAxMjIzMDA0NDCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3334, '2016-08-10 20:58:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:07.492674Z","gw_timestamp":3514436923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3MzAxMjIzMDA0NDCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3336, '2016-08-10 20:58:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:21.880196Z","gw_timestamp":3528800579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU0ODAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3338, '2016-08-10 20:58:38', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1280,"f_cnt_down":2083,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:58:32.72973Z","gw_timestamp":2284118356,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU3OTAxMjIyMDA0NTIJUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3340, '2016-08-10 20:58:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:43.408789Z","gw_timestamp":3550345123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3MzAxMjI0MDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3342, '2016-08-10 20:59:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:04.944779Z","gw_timestamp":3571889667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDUyODAxMjIzMDA0NDCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3344, '2016-08-10 20:59:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:19.314Z","gw_timestamp":3586253323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU5NjAxMjI0MDA0NDCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3346, '2016-08-10 20:59:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:33.678293Z","gw_timestamp":3600617179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NTAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3348, '2016-08-10 20:59:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:48.067829Z","gw_timestamp":3614980731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NzAxMjIzMDA0NDCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3267, '2016-08-10 20:50:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:49:59.151602Z","gw_timestamp":3026081251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0ODAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3293, '2016-08-10 20:53:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:05.866167Z","gw_timestamp":3212805315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3OTAxMjIzMDA0NDCyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3295, '2016-08-10 20:53:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:20.226401Z","gw_timestamp":3227168963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDYwMDAxMjIzMDA0NDCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3297, '2016-08-10 20:53:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:34.596905Z","gw_timestamp":3241532099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU4NDAxMjIzMDA0NDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3299, '2016-08-10 20:53:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:48.960501Z","gw_timestamp":3255895235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjIzMDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3301, '2016-08-10 20:54:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:03.324164Z","gw_timestamp":3270258467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1NzAxMjIzMDA0NDCqqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3303, '2016-08-10 20:54:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:17.678316Z","gw_timestamp":3284621811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDYxMDAxMjIzMDA0NDCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3305, '2016-08-10 20:54:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:32.04266Z","gw_timestamp":3298985459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2NDAxMjIzMDA0NDCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3307, '2016-08-10 20:55:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:53.591539Z","gw_timestamp":3320530315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU0NjAxMjIzMDA0NDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3309, '2016-08-10 20:55:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:07.953915Z","gw_timestamp":3334893659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NzAxMjIzMDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3311, '2016-08-10 20:55:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:22.322171Z","gw_timestamp":3349257307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU4MjAxMjIzMDA0NDCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3313, '2016-08-10 20:55:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:36.688433Z","gw_timestamp":3363620755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2ODAxMjIzMDA0NDCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3315, '2016-08-10 20:55:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:51.049927Z","gw_timestamp":3377983779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2NDAxMjIzMDA0NDCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3317, '2016-08-10 20:56:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:05.426163Z","gw_timestamp":3392347331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NzAxMjIzMDA0NDCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3268, '2016-08-10 20:50:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:06.329287Z","gw_timestamp":3033263187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NDAxMjIzMDA0NDCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3270, '2016-08-10 20:50:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:20.7288Z","gw_timestamp":3047626323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MTAxMjIzMDA0NDCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3272, '2016-08-10 20:50:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:35.058781Z","gw_timestamp":3061989555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNTAxMjIzMDA0NDCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3274, '2016-08-10 20:51:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:50:56.606151Z","gw_timestamp":3083533891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MTAxMjIzMDA0NDCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3276, '2016-08-10 20:51:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:10.965164Z","gw_timestamp":3097897651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzOTAxMjIzMDA0NDCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3278, '2016-08-10 20:51:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:25.330283Z","gw_timestamp":3112261403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3MzAxMjIzMDA0NDCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3280, '2016-08-10 20:51:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:39.689533Z","gw_timestamp":3126625163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2MjAxMjIzMDA0NDCueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3282, '2016-08-10 20:51:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:51:46.885376Z","gw_timestamp":3133806363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NjAxMjIzMDA0NDCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3284, '2016-08-10 20:52:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:01.23679Z","gw_timestamp":3148169707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2MjAxMjIzMDA0NDCu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3286, '2016-08-10 20:52:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:15.596658Z","gw_timestamp":3162533355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NDAxMjIzMDA0NDCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3288, '2016-08-10 20:52:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:29.95692Z","gw_timestamp":3176897011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3OTAxMjIzMDA0NDCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3290, '2016-08-10 20:53:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:51.503791Z","gw_timestamp":3198441347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NzAxMjIzMDA0NDCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3292, '2016-08-10 20:53:07', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":796,"f_cnt_down":1452,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T20:53:04.127124Z","gw_timestamp":1955515580,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:59:09.99301Z","gw_timestamp":591350396,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":-12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjMzMDA0MjIs4g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3291, '2016-08-10 20:53:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:52:58.683367Z","gw_timestamp":3205623379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4ODAxMjIzMDA0NDCuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3321, '2016-08-10 20:56:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:34.129409Z","gw_timestamp":3421073915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2NDAxMjIzMDA0NDCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3323, '2016-08-10 20:56:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:48.499673Z","gw_timestamp":3435436619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDUxNDAxMjIzMDA0NDCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3325, '2016-08-10 20:57:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:02.861052Z","gw_timestamp":3449800179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2NjAxMjIzMDA0NDCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3327, '2016-08-10 20:57:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:17.218292Z","gw_timestamp":3464163931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDYwMzAxMjIzMDA0NDCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3329, '2016-08-10 20:57:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:31.601923Z","gw_timestamp":3478527483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NTAxMjIzMDA0NDCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3331, '2016-08-10 20:57:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:57:45.989069Z","gw_timestamp":3492891243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU0ODAxMjI0MDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3333, '2016-08-10 20:58:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:00.310052Z","gw_timestamp":3507255003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2NjAxMjIzMDA0NDCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3335, '2016-08-10 20:58:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:14.676299Z","gw_timestamp":3521618651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2ODAxMjI0MDA0NDCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3337, '2016-08-10 20:58:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:29.036797Z","gw_timestamp":3535982411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NTAxMjI0MDA0NDCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3339, '2016-08-10 20:58:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:36.21918Z","gw_timestamp":3543163507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU0NjAxMjIzMDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3341, '2016-08-10 20:59:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:58:57.765157Z","gw_timestamp":3564707739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NTAxMjIzMDA0NDCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3343, '2016-08-10 20:59:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:12.154947Z","gw_timestamp":3579071387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDUzOTAxMjIzMDA0NDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3345, '2016-08-10 20:59:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:26.488681Z","gw_timestamp":3593435251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU5MzAxMjIzMDA0NDCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3294, '2016-08-10 20:53:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:13.06248Z","gw_timestamp":3219987035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjIzMDA0NDCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3296, '2016-08-10 20:53:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:27.410045Z","gw_timestamp":3234350691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU5NjAxMjIzMDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3298, '2016-08-10 20:53:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:41.782283Z","gw_timestamp":3248713507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU5MTAxMjIzMDA0NDCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3300, '2016-08-10 20:54:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:53:56.149788Z","gw_timestamp":3263077267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU4ODAxMjIzMDA0NDCu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3302, '2016-08-10 20:54:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:10.503788Z","gw_timestamp":3277439979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1MzAxMjIzMDA0NDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3304, '2016-08-10 20:54:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:24.872565Z","gw_timestamp":3291803531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2NjAxMjIzMDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3306, '2016-08-10 20:54:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:54:39.222296Z","gw_timestamp":3306167387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAcwMDU4MjAxMjIzMDA0NDCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3308, '2016-08-10 20:55:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:00.77017Z","gw_timestamp":3327711731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3OTAxMjIzMDA0NDCuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3310, '2016-08-10 20:55:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:15.159816Z","gw_timestamp":3342075587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU1NTAxMjIzMDA0NDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3312, '2016-08-10 20:55:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:29.499792Z","gw_timestamp":3356439243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU4ODAxMjIzMDA0NDCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3314, '2016-08-10 20:55:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:43.860043Z","gw_timestamp":3370801851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDUzMjAxMjIzMDA0NDCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3316, '2016-08-10 20:56:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:55:58.223292Z","gw_timestamp":3385165507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU1OTAxMjIzMDA0NDCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3318, '2016-08-10 20:56:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:12.589544Z","gw_timestamp":3399529371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2NDAxMjIzMDA0NDCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3320, '2016-08-10 20:56:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:26.9568Z","gw_timestamp":3413891979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3OTAxMjIzMDA0NDCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3319, '2016-08-10 20:56:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:19.774151Z","gw_timestamp":3406710571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3MzAxMjIzMDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3349, '2016-08-10 21:00:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:55.219189Z","gw_timestamp":3622162563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU2MjAxMjI0MDA0NDCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3351, '2016-08-10 21:00:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:09.589429Z","gw_timestamp":3636526107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAgwMDUzOTAxMjI0MDA0NDCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3359, '2016-08-10 21:01:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:07.039589Z","gw_timestamp":3693978947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4ODAxMjIzMDA0NDCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3361, '2016-08-10 21:01:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:21.407806Z","gw_timestamp":3708342707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDYwMzAxMjI0MDA0NDCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3363, '2016-08-10 21:01:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:35.761331Z","gw_timestamp":3722706459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5ODAxMjIzMDA0NDCyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3365, '2016-08-10 21:01:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:50.132309Z","gw_timestamp":3737070123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1NzAxMjI0MDA0NDCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3367, '2016-08-10 21:02:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:04.501086Z","gw_timestamp":3751433771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzOTAxMjIzMDA0NDCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3369, '2016-08-10 21:02:20', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":718,"f_cnt_down":1299,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:02:16.813777Z","gw_timestamp":2508202516,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:22.679689Z","gw_timestamp":1144037076,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2ODAxMjI1MDA0NjQIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3371, '2016-08-10 21:02:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:26.038438Z","gw_timestamp":3772979251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUwNjAxMjI0MDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3373, '2016-08-10 21:02:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:40.394668Z","gw_timestamp":3787342379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4MjAxMjI0MDA0NDCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3375, '2016-08-10 21:03:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:54.764155Z","gw_timestamp":3801705723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1OTAxMjI0MDA0NDCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3377, '2016-08-10 21:03:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:09.149458Z","gw_timestamp":3816069475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NzAxMjI0MDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3322, '2016-08-10 20:56:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:56:41.326045Z","gw_timestamp":3428255531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NTAxMjIzMDA0NDCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3352, '2016-08-10 21:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:16.765184Z","gw_timestamp":3643708043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzOTAxMjIzMDA0NDCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3354, '2016-08-10 21:00:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:31.13353Z","gw_timestamp":3658070747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU5NjAxMjIzMDA0NDCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3356, '2016-08-10 21:00:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:45.497772Z","gw_timestamp":3672434507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2NjAxMjIzMDA0NDCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3358, '2016-08-10 21:01:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:59.862435Z","gw_timestamp":3686797227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0MTAxMjI0MDA0NDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3360, '2016-08-10 21:01:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:14.224177Z","gw_timestamp":3701160883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1NzAxMjI0MDA0NDCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3362, '2016-08-10 21:01:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:28.601709Z","gw_timestamp":3715524635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2NjAxMjI0MDA0NDCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3364, '2016-08-10 21:01:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:42.944804Z","gw_timestamp":3729888291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NTAxMjI0MDA0NDCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3366, '2016-08-10 21:02:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:01:57.305944Z","gw_timestamp":3744251947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0NjAxMjIzMDA0NDCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3368, '2016-08-10 21:02:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:11.675177Z","gw_timestamp":3758615699,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0NDCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3374, '2016-08-10 21:02:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:47.577303Z","gw_timestamp":3794523795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1NTAxMjI0MDA0NDCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3376, '2016-08-10 21:03:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:01.943562Z","gw_timestamp":3808887659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2ODAxMjI0MDA0NDCu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3378, '2016-08-10 21:03:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:16.310926Z","gw_timestamp":3823251203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2MjAxMjI0MDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3380, '2016-08-10 21:03:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:30.668316Z","gw_timestamp":3837614131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzMjAxMjI0MDA0NDCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3347, '2016-08-10 20:59:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T20:59:40.859929Z","gw_timestamp":3607798803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3OTAxMjIzMDA0NDCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3353, '2016-08-10 21:00:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:23.948667Z","gw_timestamp":3650889235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4NDAxMjIzMDA0NDCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3355, '2016-08-10 21:00:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:38.339167Z","gw_timestamp":3665252683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU0ODAxMjIzMDA0NDCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3357, '2016-08-10 21:01:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:52.674302Z","gw_timestamp":3679615715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5NjAxMjI0MDA0NDCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3379, '2016-08-10 21:03:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:23.497815Z","gw_timestamp":3830432931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU5NjAxMjI0MDA0NDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3381, '2016-08-10 21:03:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:37.85581Z","gw_timestamp":3844796059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU4ODAxMjI0MDA0NDCzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3383, '2016-08-10 21:04:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:52.211065Z","gw_timestamp":3859159611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU2MjAxMjI0MDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3385, '2016-08-10 21:04:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:06.580319Z","gw_timestamp":3873522531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2NDAxMjI0MDA0NDCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3350, '2016-08-10 21:00:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:00:02.431793Z","gw_timestamp":3629344483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAYwMDU3NzAxMjI0MDA0NDCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3370, '2016-08-10 21:02:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:18.866206Z","gw_timestamp":3765797419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDUzNzAxMjIzMDA0NDCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3372, '2016-08-10 21:02:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:02:33.218064Z","gw_timestamp":3780161283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU3NzAxMjIzMDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3384, '2016-08-10 21:04:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:59.436005Z","gw_timestamp":3866341435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0NDCu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3382, '2016-08-10 21:03:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:03:45.034511Z","gw_timestamp":3851977779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABMwMDU1NzAxMjI0MDA0NDCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3386, '2016-08-10 21:04:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:13.763941Z","gw_timestamp":3880704155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0ODAxMjI0MDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3387, '2016-08-10 21:04:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:20.94057Z","gw_timestamp":3887885459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU0ODAxMjI0MDA0NDCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3388, '2016-08-10 21:04:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:28.129203Z","gw_timestamp":3895066763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3OTAxMjI0MDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3389, '2016-08-10 21:04:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:35.32793Z","gw_timestamp":3902248587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0NDCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3390, '2016-08-10 21:04:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:42.489436Z","gw_timestamp":3909430523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0NDCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3391, '2016-08-10 21:05:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:04:49.694648Z","gw_timestamp":3916612347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NTAxMjI0MDA0NDCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3392, '2016-08-10 21:05:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:04.031318Z","gw_timestamp":3930975587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU3NzAxMjI0MDA0NDCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3393, '2016-08-10 21:05:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:11.210301Z","gw_timestamp":3938156891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyODAxMjI0MDA0NDCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3394, '2016-08-10 21:05:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:18.388697Z","gw_timestamp":3945338715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMzAxMjI0MDA0NDCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3395, '2016-08-10 21:05:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:25.582322Z","gw_timestamp":3952520547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0NDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3396, '2016-08-10 21:05:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:32.752939Z","gw_timestamp":3959702371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3397, '2016-08-10 21:05:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:39.951889Z","gw_timestamp":3966884203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3398, '2016-08-10 21:05:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:47.119467Z","gw_timestamp":3974066123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0NDCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3399, '2016-08-10 21:06:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:05:54.30182Z","gw_timestamp":3981247323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0NDCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3401, '2016-08-10 21:06:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:08.662073Z","gw_timestamp":3995610675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyNTAxMjI0MDA0NDCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3403, '2016-08-10 21:06:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:23.031311Z","gw_timestamp":4009974219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3405, '2016-08-10 21:06:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:37.391636Z","gw_timestamp":4024337139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU1NzAxMjI0MDA0NDCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3409, '2016-08-10 21:07:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:06.130348Z","gw_timestamp":4053063307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0NDCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3411, '2016-08-10 21:07:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:20.504682Z","gw_timestamp":4067426755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU4MjAxMjI0MDA0NDCyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3413, '2016-08-10 21:07:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:34.842694Z","gw_timestamp":4081789987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0NDCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3415, '2016-08-10 21:07:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:49.209945Z","gw_timestamp":4096153531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0NDCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3417, '2016-08-10 21:08:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:03.575208Z","gw_timestamp":4110517187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0NDCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3419, '2016-08-10 21:08:19', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":797,"f_cnt_down":1453,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:08:14.970216Z","gw_timestamp":2866359140,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjMyMDA0MjQKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3421, '2016-08-10 21:08:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:25.112078Z","gw_timestamp":4132061731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0NDCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3425, '2016-08-10 21:09:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:53.844602Z","gw_timestamp":4160789147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0NDCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3427, '2016-08-10 21:09:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:15.390578Z","gw_timestamp":4182333579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0NDCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3429, '2016-08-10 21:09:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:29.779099Z","gw_timestamp":4196697443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0NDCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3400, '2016-08-10 21:06:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:01.508714Z","gw_timestamp":3988428739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0NDCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3404, '2016-08-10 21:06:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:30.234306Z","gw_timestamp":4017155211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0NDCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3406, '2016-08-10 21:06:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:44.573146Z","gw_timestamp":4031518867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjI0MDA0NDCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3408, '2016-08-10 21:07:08', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":803,"f_cnt_down":1499,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:12:58.814225Z","gw_timestamp":1420171612,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU5OTAxMjI0MDA0NjAWIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3410, '2016-08-10 21:07:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:13.303695Z","gw_timestamp":4060245235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0NDCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3412, '2016-08-10 21:07:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:27.664805Z","gw_timestamp":4074607955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDYwMzAxMjI0MDA0NDCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3414, '2016-08-10 21:07:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:42.022325Z","gw_timestamp":4088971611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0NDCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3416, '2016-08-10 21:07:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:07:56.420178Z","gw_timestamp":4103335363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3418, '2016-08-10 21:08:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:10.773094Z","gw_timestamp":4117699123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0NDCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3420, '2016-08-10 21:08:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:17.935445Z","gw_timestamp":4124880531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0NDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3422, '2016-08-10 21:08:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:32.294704Z","gw_timestamp":4139243667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3424, '2016-08-10 21:08:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:46.669204Z","gw_timestamp":4153607211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0NDCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3426, '2016-08-10 21:09:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:08.211825Z","gw_timestamp":4175152171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABIwMDU2ODAxMjI0MDA0NDCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3428, '2016-08-10 21:09:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:22.569548Z","gw_timestamp":4189515515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0NDCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3402, '2016-08-10 21:06:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:15.848828Z","gw_timestamp":4002792499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0NDCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3432, '2016-08-10 21:09:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:51.290705Z","gw_timestamp":4218242715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYxNzAxMjI0MDA0NDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3434, '2016-08-10 21:10:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:05.654934Z","gw_timestamp":4232605427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0NDCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3436, '2016-08-10 21:10:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:20.018208Z","gw_timestamp":4246968251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0NDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3438, '2016-08-10 21:10:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:34.37846Z","gw_timestamp":4261331699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3440, '2016-08-10 21:10:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:48.768974Z","gw_timestamp":4275693787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0NDCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3442, '2016-08-10 21:11:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:10.293578Z","gw_timestamp":2271971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0NDCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3444, '2016-08-10 21:11:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:24.655084Z","gw_timestamp":16635627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMzAxMjI0MDA0NDCvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3446, '2016-08-10 21:11:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:39.023456Z","gw_timestamp":30998339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0NDCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3448, '2016-08-10 21:12:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:53.385779Z","gw_timestamp":45362099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3450, '2016-08-10 21:12:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:07.739968Z","gw_timestamp":59725651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0NDCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3452, '2016-08-10 21:12:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:22.110961Z","gw_timestamp":74088883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0NDCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3454, '2016-08-10 21:12:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:36.475196Z","gw_timestamp":88452019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0NDCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3456, '2016-08-10 21:12:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:50.828457Z","gw_timestamp":102815771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0NDCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3407, '2016-08-10 21:06:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:06:51.749327Z","gw_timestamp":4038700171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3423, '2016-08-10 21:08:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:08:39.474401Z","gw_timestamp":4146425491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0NDCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3433, '2016-08-10 21:10:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:58.491332Z","gw_timestamp":4225423707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0NDCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3435, '2016-08-10 21:10:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:12.852098Z","gw_timestamp":4239786419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0NDCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3437, '2016-08-10 21:10:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:27.209814Z","gw_timestamp":4254150187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0NDCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3439, '2016-08-10 21:10:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:41.567334Z","gw_timestamp":4268512691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NjAxMjI0MDA0NDCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3441, '2016-08-10 21:11:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:10:55.924389Z","gw_timestamp":4282875619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0NDCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3443, '2016-08-10 21:11:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:17.473331Z","gw_timestamp":9453795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0NDCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3445, '2016-08-10 21:11:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:31.843532Z","gw_timestamp":23817139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0NDCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3447, '2016-08-10 21:11:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:11:46.205825Z","gw_timestamp":38180163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0NDCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3449, '2016-08-10 21:12:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:00.56208Z","gw_timestamp":52543931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0NDCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3457, '2016-08-10 21:13:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:58.016329Z","gw_timestamp":109997707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0NDCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3459, '2016-08-10 21:13:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:12.394848Z","gw_timestamp":124361259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3461, '2016-08-10 21:13:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:26.749713Z","gw_timestamp":138723971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0NDCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3430, '2016-08-10 21:09:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:36.931447Z","gw_timestamp":4203879171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0NDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3460, '2016-08-10 21:13:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:19.568085Z","gw_timestamp":131542771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0NDCzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3462, '2016-08-10 21:13:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:33.918341Z","gw_timestamp":145905899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0NDCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3480, '2016-08-10 21:15:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:43.159321Z","gw_timestamp":275175139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0MzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3482, '2016-08-10 21:16:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:57.519062Z","gw_timestamp":289538899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3484, '2016-08-10 21:16:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:11.856038Z","gw_timestamp":303902547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mzmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3486, '2016-08-10 21:16:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:26.211819Z","gw_timestamp":318265163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3488, '2016-08-10 21:16:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:40.566903Z","gw_timestamp":332627875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3490, '2016-08-10 21:16:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:54.920972Z","gw_timestamp":346990699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mzmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3492, '2016-08-10 21:17:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:09.274162Z","gw_timestamp":361354459,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0Mzmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3494, '2016-08-10 21:17:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:23.630538Z","gw_timestamp":375716963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0Mzmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3496, '2016-08-10 21:17:32', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":720,"f_cnt_down":1301,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:17:27.587821Z","gw_timestamp":3418977028,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-4.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjIzMDA0NTIIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3498, '2016-08-10 21:17:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:38.007484Z","gw_timestamp":390080611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NjAxMjI0MDA0MzmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3500, '2016-08-10 21:18:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:52.347754Z","gw_timestamp":404444475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0MzmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3431, '2016-08-10 21:09:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:09:44.123077Z","gw_timestamp":4211061099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0NDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3451, '2016-08-10 21:12:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:14.944728Z","gw_timestamp":66907579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0NDCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3453, '2016-08-10 21:12:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:29.283579Z","gw_timestamp":81270187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0NDCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3455, '2016-08-10 21:12:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:12:43.658087Z","gw_timestamp":95633947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3465, '2016-08-10 21:13:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:48.314635Z","gw_timestamp":160269035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNjAxMjI0MDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3481, '2016-08-10 21:15:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:50.332875Z","gw_timestamp":282356963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3483, '2016-08-10 21:16:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:04.684855Z","gw_timestamp":296720723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0MzmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3485, '2016-08-10 21:16:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:19.033786Z","gw_timestamp":311083963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mzmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3487, '2016-08-10 21:16:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:33.394256Z","gw_timestamp":325446467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0Mzmzmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3489, '2016-08-10 21:16:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:16:47.7592Z","gw_timestamp":339808867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0MzmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3491, '2016-08-10 21:17:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:02.127832Z","gw_timestamp":354172627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUwNjAxMjI0MDA0Mzmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3493, '2016-08-10 21:17:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:16.455189Z","gw_timestamp":368535451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYzNTAxMjI0MDA0Mzmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3495, '2016-08-10 21:17:28', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":719,"f_cnt_down":1300,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:33.453801Z","gw_timestamp":2054811188,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjIzMDA0NTIIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3497, '2016-08-10 21:17:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:30.80427Z","gw_timestamp":382898891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3458, '2016-08-10 21:13:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:05.20071Z","gw_timestamp":117179531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0NDCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3464, '2016-08-10 21:13:49', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1281,"f_cnt_down":2084,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:13:43.548608Z","gw_timestamp":3194937700,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjIxMDA0NTIYUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3466, '2016-08-10 21:13:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:55.468212Z","gw_timestamp":167450443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0NDCy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3468, '2016-08-10 21:14:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:09.853284Z","gw_timestamp":181814203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0NDCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3470, '2016-08-10 21:14:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:24.181121Z","gw_timestamp":196177859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3472, '2016-08-10 21:14:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:38.536189Z","gw_timestamp":210541507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0NDCueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3474, '2016-08-10 21:15:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:52.902256Z","gw_timestamp":224904123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0Mzmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3476, '2016-08-10 21:15:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:14.430487Z","gw_timestamp":246448771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0NDCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3478, '2016-08-10 21:15:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:28.790551Z","gw_timestamp":260812523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0NDCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3528, '2016-08-10 21:21:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:20.625669Z","gw_timestamp":612710059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3530, '2016-08-10 21:21:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:34.961835Z","gw_timestamp":627073707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0Mzmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3532, '2016-08-10 21:21:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:49.313218Z","gw_timestamp":641437363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3534, '2016-08-10 21:22:04', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":804,"f_cnt_down":1500,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:22:03.714792Z","gw_timestamp":3695104140,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-1.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3MzAxMjIyMDA0NTAMoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3536, '2016-08-10 21:22:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:10.877088Z","gw_timestamp":662982947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjI0MDA0MzmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3463, '2016-08-10 21:13:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:13:41.125583Z","gw_timestamp":153087731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NjAxMjI0MDA0NDCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3467, '2016-08-10 21:14:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:02.64702Z","gw_timestamp":174632371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0NDCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3469, '2016-08-10 21:14:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:17.005596Z","gw_timestamp":188995923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0NDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3471, '2016-08-10 21:14:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:31.364145Z","gw_timestamp":203359683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjI0MDA0NDCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3473, '2016-08-10 21:14:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:14:45.745688Z","gw_timestamp":217723123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0NDCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3475, '2016-08-10 21:15:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:00.068559Z","gw_timestamp":232085947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0NDCuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3477, '2016-08-10 21:15:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:21.629111Z","gw_timestamp":253630595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3479, '2016-08-10 21:15:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:15:35.965599Z","gw_timestamp":267993835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0NDCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3501, '2016-08-10 21:18:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:59.520407Z","gw_timestamp":411625571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0Mzmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3503, '2016-08-10 21:18:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:13.885402Z","gw_timestamp":425989019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0MzmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3505, '2016-08-10 21:18:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:28.234402Z","gw_timestamp":440352675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjI0MDA0Mzmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3507, '2016-08-10 21:18:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:42.597089Z","gw_timestamp":454716227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0Mzmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3509, '2016-08-10 21:19:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:56.959828Z","gw_timestamp":469079043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0MzmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3511, '2016-08-10 21:19:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:18.501818Z","gw_timestamp":490623587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3499, '2016-08-10 21:17:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:17:45.175716Z","gw_timestamp":397262547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjI0MDA0MzmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3515, '2016-08-10 21:19:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:47.239175Z","gw_timestamp":519349539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0MzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3517, '2016-08-10 21:20:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:01.628853Z","gw_timestamp":533712675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0Mzmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3519, '2016-08-10 21:20:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:15.950827Z","gw_timestamp":548075595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0MzmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3521, '2016-08-10 21:20:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:30.317065Z","gw_timestamp":562438827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mzmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3523, '2016-08-10 21:20:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:44.689333Z","gw_timestamp":576800819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjI0MDA0MzmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3525, '2016-08-10 21:21:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:59.05071Z","gw_timestamp":591164475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0MzmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3527, '2016-08-10 21:21:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:13.403952Z","gw_timestamp":605528131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjI0MDA0Mzmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3529, '2016-08-10 21:21:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:27.7762Z","gw_timestamp":619891883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mzmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3531, '2016-08-10 21:21:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:42.143203Z","gw_timestamp":634255539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0MzmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3533, '2016-08-10 21:22:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:56.534081Z","gw_timestamp":648619299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mzmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3535, '2016-08-10 21:22:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:03.676329Z","gw_timestamp":655801123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxMDAxMjI0MDA0Mzmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3537, '2016-08-10 21:22:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:18.043586Z","gw_timestamp":670164675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0Mzmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3539, '2016-08-10 21:22:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:32.409839Z","gw_timestamp":684528531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3502, '2016-08-10 21:18:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:06.693428Z","gw_timestamp":418807091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0Mzmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3504, '2016-08-10 21:18:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:21.053511Z","gw_timestamp":433170747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0Mzmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3506, '2016-08-10 21:18:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:35.426829Z","gw_timestamp":447534499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0MzmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3508, '2016-08-10 21:18:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:18:49.776201Z","gw_timestamp":461897427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0MzmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3510, '2016-08-10 21:19:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:04.142574Z","gw_timestamp":476260763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0MzmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3512, '2016-08-10 21:19:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:25.686455Z","gw_timestamp":497805307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0MzmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3514, '2016-08-10 21:19:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:40.043703Z","gw_timestamp":512168131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0MzmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3516, '2016-08-10 21:20:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:54.407144Z","gw_timestamp":526530843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mzmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3518, '2016-08-10 21:20:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:08.795498Z","gw_timestamp":540894499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0Mzmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3520, '2016-08-10 21:20:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:23.143453Z","gw_timestamp":555257211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0Mzmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3522, '2016-08-10 21:20:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:37.501711Z","gw_timestamp":569619827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0Mzmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3524, '2016-08-10 21:21:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:20:51.869956Z","gw_timestamp":583982747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mzmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3526, '2016-08-10 21:21:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:21:06.230329Z","gw_timestamp":598346403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0Mzmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3540, '2016-08-10 21:22:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:39.589592Z","gw_timestamp":691710363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3513, '2016-08-10 21:19:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:19:32.871079Z","gw_timestamp":504986507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0MzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3543, '2016-08-10 21:23:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:01.144085Z","gw_timestamp":713254803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0Mzmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3545, '2016-08-10 21:23:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:15.495701Z","gw_timestamp":727618459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3547, '2016-08-10 21:23:29', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":798,"f_cnt_down":1454,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:23:25.808Z","gw_timestamp":3777197388,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:29:31.674002Z","gw_timestamp":2413031388,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwNjAxMjMyMDA0MjUMAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3549, '2016-08-10 21:23:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:37.042806Z","gw_timestamp":749162995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3551, '2016-08-10 21:24:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:51.399847Z","gw_timestamp":763525819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MzmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3553, '2016-08-10 21:24:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:05.774088Z","gw_timestamp":777889363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3555, '2016-08-10 21:24:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:20.145493Z","gw_timestamp":792252187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0Mzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3557, '2016-08-10 21:24:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:34.49258Z","gw_timestamp":806614803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0Mzmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3559, '2016-08-10 21:24:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:48.85284Z","gw_timestamp":820978555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0Mzmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3561, '2016-08-10 21:25:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:03.263479Z","gw_timestamp":835342419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYxMDAxMjI0MDA0MzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3563, '2016-08-10 21:25:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:24.760035Z","gw_timestamp":856886747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0Mzmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3565, '2016-08-10 21:25:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:39.135344Z","gw_timestamp":871250507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMzAxMjI0MDA0Mzmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3538, '2016-08-10 21:22:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:25.231213Z","gw_timestamp":677346603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mzmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3544, '2016-08-10 21:23:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:08.311086Z","gw_timestamp":720436731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0Mzmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3546, '2016-08-10 21:23:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:22.684414Z","gw_timestamp":734800283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMTAxMjI0MDA0MzmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3548, '2016-08-10 21:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:29.863907Z","gw_timestamp":741981995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0Mzmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3550, '2016-08-10 21:23:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:44.222212Z","gw_timestamp":756344091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0Mzmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3552, '2016-08-10 21:24:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:23:58.58846Z","gw_timestamp":770707539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNjAxMjI0MDA0Mzmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3554, '2016-08-10 21:24:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:12.957982Z","gw_timestamp":785070355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3556, '2016-08-10 21:24:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:27.313962Z","gw_timestamp":799433387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0Mzmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3558, '2016-08-10 21:24:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:41.670219Z","gw_timestamp":813796627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYxMjAxMjI0MDA0MzmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3560, '2016-08-10 21:25:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:24:56.04358Z","gw_timestamp":828160483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0MzmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3562, '2016-08-10 21:25:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:10.415346Z","gw_timestamp":842524139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MzmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3564, '2016-08-10 21:25:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:31.949708Z","gw_timestamp":864068683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mzmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3566, '2016-08-10 21:25:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:46.311972Z","gw_timestamp":878432339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mzmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3568, '2016-08-10 21:26:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:00.674204Z","gw_timestamp":892796091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mzmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3541, '2016-08-10 21:22:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:46.785693Z","gw_timestamp":698891667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mzmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3581, '2016-08-10 21:27:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:41.220316Z","gw_timestamp":993338955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3583, '2016-08-10 21:28:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:55.575349Z","gw_timestamp":1007702619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0MzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3585, '2016-08-10 21:28:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:09.949601Z","gw_timestamp":1022065331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mziveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3587, '2016-08-10 21:28:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:24.311064Z","gw_timestamp":1036428979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mziwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3589, '2016-08-10 21:28:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:38.668108Z","gw_timestamp":1050791595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0Mziveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3591, '2016-08-10 21:28:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:53.034626Z","gw_timestamp":1065154419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0Mzivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3593, '2016-08-10 21:29:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:00.24036Z","gw_timestamp":1072336243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0MzixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3595, '2016-08-10 21:29:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:14.582832Z","gw_timestamp":1086699171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0Mziumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3597, '2016-08-10 21:29:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:28.939604Z","gw_timestamp":1101062091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mzizaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3599, '2016-08-10 21:29:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:43.304843Z","gw_timestamp":1115425331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0MzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3601, '2016-08-10 21:30:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:57.67229Z","gw_timestamp":1129789083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0MzixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3603, '2016-08-10 21:30:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:12.031926Z","gw_timestamp":1144152843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3605, '2016-08-10 21:30:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:26.390601Z","gw_timestamp":1158516283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3542, '2016-08-10 21:23:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:22:53.953711Z","gw_timestamp":706072867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0Mzmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3572, '2016-08-10 21:26:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:29.410063Z","gw_timestamp":921522459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0MzixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3574, '2016-08-10 21:26:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:43.76922Z","gw_timestamp":935885491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mzmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3576, '2016-08-10 21:27:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:58.127351Z","gw_timestamp":950248523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0MzmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3578, '2016-08-10 21:27:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:12.490851Z","gw_timestamp":964611443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0MziyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3580, '2016-08-10 21:27:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:34.039476Z","gw_timestamp":986157131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3582, '2016-08-10 21:27:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:48.393718Z","gw_timestamp":1000520787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0Mziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3584, '2016-08-10 21:28:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:02.78548Z","gw_timestamp":1014884339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3586, '2016-08-10 21:28:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:17.125173Z","gw_timestamp":1029247051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0MziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3588, '2016-08-10 21:28:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:31.494544Z","gw_timestamp":1043610395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0MziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3590, '2016-08-10 21:28:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:28:45.846721Z","gw_timestamp":1057973419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0MziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3592, '2016-08-10 21:29:02', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1282,"f_cnt_down":2085,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:28:54.369032Z","gw_timestamp":4105758588,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjIxMDA0NTEJUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3594, '2016-08-10 21:29:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:07.395728Z","gw_timestamp":1079517963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3596, '2016-08-10 21:29:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:21.762589Z","gw_timestamp":1093880883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxMDAxMjI0MDA0MzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3567, '2016-08-10 21:25:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:25:53.508856Z","gw_timestamp":885614267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0Mzmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3569, '2016-08-10 21:26:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:07.858845Z","gw_timestamp":899977811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0MzmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3571, '2016-08-10 21:26:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:22.216094Z","gw_timestamp":914340635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0MzivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3573, '2016-08-10 21:26:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:36.582348Z","gw_timestamp":928704291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNDAxMjI0MDA0Mzmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3575, '2016-08-10 21:26:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:50.944711Z","gw_timestamp":943067011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUwODAxMjI0MDA0Mzmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3577, '2016-08-10 21:27:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:05.307089Z","gw_timestamp":957429619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0Mziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3579, '2016-08-10 21:27:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:27:26.862196Z","gw_timestamp":978975203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0MzixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3609, '2016-08-10 21:31:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:55.13565Z","gw_timestamp":1187243283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MziyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3611, '2016-08-10 21:31:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:09.488477Z","gw_timestamp":1201606515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxOTAxMjI0MDA0Mziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3613, '2016-08-10 21:31:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:23.842852Z","gw_timestamp":1215970067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0MziyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3615, '2016-08-10 21:31:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:45.391604Z","gw_timestamp":1237515243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3617, '2016-08-10 21:32:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:59.75585Z","gw_timestamp":1251877435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3619, '2016-08-10 21:32:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:14.123108Z","gw_timestamp":1266241187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3621, '2016-08-10 21:32:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:28.475563Z","gw_timestamp":1280604323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0Mzivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3570, '2016-08-10 21:26:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:26:15.032467Z","gw_timestamp":907159011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0Mzmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3600, '2016-08-10 21:29:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:50.495076Z","gw_timestamp":1122607155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3602, '2016-08-10 21:30:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:04.852725Z","gw_timestamp":1136970907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0MzixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3604, '2016-08-10 21:30:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:19.206975Z","gw_timestamp":1151334563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0MziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3606, '2016-08-10 21:30:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:33.576371Z","gw_timestamp":1165698323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0MziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3608, '2016-08-10 21:30:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:47.942604Z","gw_timestamp":1180061971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0MzixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3610, '2016-08-10 21:31:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:02.301859Z","gw_timestamp":1194424587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3612, '2016-08-10 21:31:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:16.669098Z","gw_timestamp":1208788347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0Mzixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3614, '2016-08-10 21:31:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:38.206986Z","gw_timestamp":1230333931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3616, '2016-08-10 21:32:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:31:52.58118Z","gw_timestamp":1244696435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mzixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3618, '2016-08-10 21:32:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:06.937701Z","gw_timestamp":1259059363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0Mziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3620, '2016-08-10 21:32:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:21.296733Z","gw_timestamp":1273422915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mziwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3622, '2016-08-10 21:32:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:35.668972Z","gw_timestamp":1287785627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0MziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3624, '2016-08-10 21:32:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:42.860177Z","gw_timestamp":1294967243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0MzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3598, '2016-08-10 21:29:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:29:36.140491Z","gw_timestamp":1108243603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3654, '2016-08-10 21:36:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:25.472304Z","gw_timestamp":1517596171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0Mziv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3656, '2016-08-10 21:36:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:39.850842Z","gw_timestamp":1531959515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0MzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3658, '2016-08-10 21:37:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:54.198854Z","gw_timestamp":1546323163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0Mziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3660, '2016-08-10 21:37:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:08.566126Z","gw_timestamp":1560686923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0MziyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3662, '2016-08-10 21:37:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:15.758013Z","gw_timestamp":1567868747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mziwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3664, '2016-08-10 21:37:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:30.103863Z","gw_timestamp":1582231363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyNTAxMjI0MDA0Mziwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3666, '2016-08-10 21:37:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:44.472694Z","gw_timestamp":1596595115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mzix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3668, '2016-08-10 21:38:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:58.832497Z","gw_timestamp":1610957835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0Mziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3670, '2016-08-10 21:38:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:13.19686Z","gw_timestamp":1625321075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MTAxMjI0MDA0Mziwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3672, '2016-08-10 21:38:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:27.554117Z","gw_timestamp":1639684107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0Mzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3674, '2016-08-10 21:38:39', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":799,"f_cnt_down":1455,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:38:36.645383Z","gw_timestamp":393067940,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjMyMDA0MjYmIg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3676, '2016-08-10 21:38:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:41.921494Z","gw_timestamp":1654047963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3678, '2016-08-10 21:39:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:56.312039Z","gw_timestamp":1668411099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0Mzivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3607, '2016-08-10 21:30:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:30:40.768127Z","gw_timestamp":1172880147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MziwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3653, '2016-08-10 21:36:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:18.29387Z","gw_timestamp":1510414971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxMDAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3655, '2016-08-10 21:36:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:32.644982Z","gw_timestamp":1524777683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0MzixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3657, '2016-08-10 21:36:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:47.02123Z","gw_timestamp":1539141339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0MzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3659, '2016-08-10 21:37:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:01.389767Z","gw_timestamp":1553504995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0Mziveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3661, '2016-08-10 21:37:18', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":805,"f_cnt_down":1501,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:37:14.482393Z","gw_timestamp":310904908,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:45.381154Z","gw_timestamp":3241705836,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjE5MDA0NjEKYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3663, '2016-08-10 21:37:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:22.926369Z","gw_timestamp":1575049947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3665, '2016-08-10 21:37:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:37.290754Z","gw_timestamp":1589413291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0MzivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3667, '2016-08-10 21:38:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:37:51.651082Z","gw_timestamp":1603776843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3697, '2016-08-10 21:41:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:19.922257Z","gw_timestamp":1812045555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0MzixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3699, '2016-08-10 21:41:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:34.282509Z","gw_timestamp":1826409203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3701, '2016-08-10 21:42:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:55.819389Z","gw_timestamp":1847954787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3703, '2016-08-10 21:42:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:10.188641Z","gw_timestamp":1862318131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3623, '2016-08-10 21:32:45', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":720,"f_cnt_down":1302,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:32:38.36054Z","gw_timestamp":34782916,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjE4MDA0NzAIcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3625, '2016-08-10 21:32:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:50.018359Z","gw_timestamp":1302148347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0MziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3627, '2016-08-10 21:33:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:04.393544Z","gw_timestamp":1316512099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0MzivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3629, '2016-08-10 21:33:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:18.747242Z","gw_timestamp":1330874715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mziyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3631, '2016-08-10 21:33:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:33.121132Z","gw_timestamp":1345237435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0Mzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3633, '2016-08-10 21:33:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:47.473928Z","gw_timestamp":1359601083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0Mziw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3635, '2016-08-10 21:34:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:01.841607Z","gw_timestamp":1373963907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0Mziuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3637, '2016-08-10 21:34:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:16.194849Z","gw_timestamp":1388326419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3639, '2016-08-10 21:34:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:30.563236Z","gw_timestamp":1402689235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0Mziwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3641, '2016-08-10 21:34:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:44.932489Z","gw_timestamp":1417052995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0MzivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3643, '2016-08-10 21:35:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:59.320017Z","gw_timestamp":1431416019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0MziyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3645, '2016-08-10 21:35:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:13.669211Z","gw_timestamp":1445779251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0Mziwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3647, '2016-08-10 21:35:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:28.023482Z","gw_timestamp":1460143011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0Mziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3649, '2016-08-10 21:35:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:49.557116Z","gw_timestamp":1481687555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3626, '2016-08-10 21:33:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:32:57.21257Z","gw_timestamp":1309330275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0MziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3628, '2016-08-10 21:33:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:11.572237Z","gw_timestamp":1323693411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0Mzixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3630, '2016-08-10 21:33:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:25.929493Z","gw_timestamp":1338055915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3632, '2016-08-10 21:33:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:40.294737Z","gw_timestamp":1352419259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYxMjAxMjI0MDA0MziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3634, '2016-08-10 21:34:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:33:54.652981Z","gw_timestamp":1366782075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0Mziyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3636, '2016-08-10 21:34:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:09.016238Z","gw_timestamp":1381145211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0Mzivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3638, '2016-08-10 21:34:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:23.405245Z","gw_timestamp":1395507403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI0MDA0MziwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3640, '2016-08-10 21:34:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:37.74199Z","gw_timestamp":1409871059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0Mziv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3642, '2016-08-10 21:35:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:34:52.104111Z","gw_timestamp":1424234819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0Mziv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3644, '2016-08-10 21:35:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:06.46632Z","gw_timestamp":1438597531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mzix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3646, '2016-08-10 21:35:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:20.834244Z","gw_timestamp":1452961187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0Mziuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3648, '2016-08-10 21:35:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:42.381673Z","gw_timestamp":1474506251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0Mziyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3650, '2016-08-10 21:36:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:35:56.743951Z","gw_timestamp":1488869491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0MzixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3652, '2016-08-10 21:36:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:11.102377Z","gw_timestamp":1503233139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0Mzixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3651, '2016-08-10 21:36:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:36:03.958621Z","gw_timestamp":1496051315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0MziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3669, '2016-08-10 21:38:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:06.025109Z","gw_timestamp":1618139659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3671, '2016-08-10 21:38:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:20.381494Z","gw_timestamp":1632502379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3673, '2016-08-10 21:38:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:34.74175Z","gw_timestamp":1646866027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mziu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3675, '2016-08-10 21:38:42', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":800,"f_cnt_down":1456,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:33:07.544154Z","gw_timestamp":3323868836,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-5.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjMyMDA0MjYmIg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3677, '2016-08-10 21:38:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:38:49.10412Z","gw_timestamp":1661229795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0MziyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3679, '2016-08-10 21:39:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:03.469242Z","gw_timestamp":1675592403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0MzixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3681, '2016-08-10 21:39:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:17.822497Z","gw_timestamp":1689955123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MzixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3683, '2016-08-10 21:39:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:32.191746Z","gw_timestamp":1704318771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxOTAxMjI0MDA0Mziwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3685, '2016-08-10 21:40:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:53.741631Z","gw_timestamp":1725863939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mziyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3687, '2016-08-10 21:40:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:08.103266Z","gw_timestamp":1740227075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mziwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3689, '2016-08-10 21:40:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:22.466256Z","gw_timestamp":1754590835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0Mzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3691, '2016-08-10 21:40:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:36.82788Z","gw_timestamp":1768954483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mziveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3693, '2016-08-10 21:40:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:51.18276Z","gw_timestamp":1783318139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0MzivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3680, '2016-08-10 21:39:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:10.650603Z","gw_timestamp":1682773707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0MziyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3682, '2016-08-10 21:39:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:25.009128Z","gw_timestamp":1697136947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0Mziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3684, '2016-08-10 21:39:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:39:46.56128Z","gw_timestamp":1718682427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0MziwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3686, '2016-08-10 21:40:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:00.913252Z","gw_timestamp":1733045139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0Mzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3688, '2016-08-10 21:40:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:15.276616Z","gw_timestamp":1747408899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3690, '2016-08-10 21:40:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:29.648883Z","gw_timestamp":1761772659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0MzivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3692, '2016-08-10 21:40:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:44.004127Z","gw_timestamp":1776136307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0Mziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3694, '2016-08-10 21:41:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:40:58.378597Z","gw_timestamp":1790500067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3696, '2016-08-10 21:41:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:12.728761Z","gw_timestamp":1804863723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0Mziw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3698, '2016-08-10 21:41:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:27.101875Z","gw_timestamp":1819227371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3700, '2016-08-10 21:41:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:48.665103Z","gw_timestamp":1840772955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI0MDA0MzivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3702, '2016-08-10 21:42:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:03.006014Z","gw_timestamp":1855136507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNjAxMjI0MDA0MzivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3704, '2016-08-10 21:42:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:17.370772Z","gw_timestamp":1869499331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0Mziwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3706, '2016-08-10 21:42:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:31.735637Z","gw_timestamp":1883862051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0MziwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3695, '2016-08-10 21:41:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:41:05.561006Z","gw_timestamp":1797681795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3707, '2016-08-10 21:42:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:38.930373Z","gw_timestamp":1891043979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0Mziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3709, '2016-08-10 21:43:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:53.280495Z","gw_timestamp":1905406899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3711, '2016-08-10 21:43:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:07.643624Z","gw_timestamp":1919769619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0MzivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3713, '2016-08-10 21:43:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:21.999879Z","gw_timestamp":1934132859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3715, '2016-08-10 21:43:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:36.377261Z","gw_timestamp":1948496715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0MziwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3717, '2016-08-10 21:43:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:50.731515Z","gw_timestamp":1962860267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3719, '2016-08-10 21:44:07', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1283,"f_cnt_down":2086,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:44:05.186294Z","gw_timestamp":721609020,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:38:36.08509Z","gw_timestamp":3652409772,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU4NjAxMjIwMDA0NTIIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3721, '2016-08-10 21:44:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:12.2741Z","gw_timestamp":1984405851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0Mziwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3723, '2016-08-10 21:44:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:26.634746Z","gw_timestamp":1998769611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI0MDA0Mziwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3725, '2016-08-10 21:44:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:40.996003Z","gw_timestamp":2013132851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI0MDA0MzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3727, '2016-08-10 21:45:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:55.366266Z","gw_timestamp":2027495875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3729, '2016-08-10 21:45:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:45:16.908144Z","gw_timestamp":2049041459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI0MDA0Mziw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3705, '2016-08-10 21:42:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:24.547006Z","gw_timestamp":1876680635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3761, '2016-08-10 21:49:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:06.728383Z","gw_timestamp":2278854707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0MzeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3763, '2016-08-10 21:49:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:21.086642Z","gw_timestamp":2293217947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0MzewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3765, '2016-08-10 21:49:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:35.451895Z","gw_timestamp":2307580763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI0MDA0Mzexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3767, '2016-08-10 21:49:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:49.804284Z","gw_timestamp":2321942747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4ODAxMjI1MDA0Mzewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3769, '2016-08-10 21:50:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:04.172527Z","gw_timestamp":2336306403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI1MDA0Mzeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3771, '2016-08-10 21:50:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:18.542783Z","gw_timestamp":2350669643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNDAxMjI0MDA0MzewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3773, '2016-08-10 21:50:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:32.898788Z","gw_timestamp":2365032779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0MzewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3775, '2016-08-10 21:50:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:47.262277Z","gw_timestamp":2379396531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3777, '2016-08-10 21:51:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:01.647802Z","gw_timestamp":2393760195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MzexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3708, '2016-08-10 21:42:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:42:46.101884Z","gw_timestamp":1898225707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI0MDA0MzivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3740, '2016-08-10 21:46:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:43.105035Z","gw_timestamp":2135221611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3742, '2016-08-10 21:47:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:57.454003Z","gw_timestamp":2149585371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0Mziu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3744, '2016-08-10 21:47:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:11.823274Z","gw_timestamp":2163948187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3746, '2016-08-10 21:47:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:26.174583Z","gw_timestamp":2178311843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0MzewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3748, '2016-08-10 21:47:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:40.549773Z","gw_timestamp":2192675499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxOTAxMjI0MDA0MzivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3750, '2016-08-10 21:47:54', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":721,"f_cnt_down":1303,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:47:49.13735Z","gw_timestamp":945560188,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjE5MDA0NzEHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3752, '2016-08-10 21:48:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:02.095051Z","gw_timestamp":2214220035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0Mzexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3754, '2016-08-10 21:48:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:16.449024Z","gw_timestamp":2228583691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0Mzeuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3756, '2016-08-10 21:48:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:30.814265Z","gw_timestamp":2242947451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNDAxMjI0MDA0Mzev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3758, '2016-08-10 21:48:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:45.184597Z","gw_timestamp":2257310067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0MzewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3760, '2016-08-10 21:49:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:59.534693Z","gw_timestamp":2271672779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxNjAxMjI0MDA0Mzevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3762, '2016-08-10 21:49:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:13.909028Z","gw_timestamp":2286036539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0MzevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3764, '2016-08-10 21:49:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:28.262259Z","gw_timestamp":2300399147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mzewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3710, '2016-08-10 21:43:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:00.458131Z","gw_timestamp":1912588523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5NjAxMjI0MDA0Mziwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3712, '2016-08-10 21:43:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:14.823362Z","gw_timestamp":1926951235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mziw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3714, '2016-08-10 21:43:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:29.212345Z","gw_timestamp":1941314787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mziwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3716, '2016-08-10 21:43:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:43.55183Z","gw_timestamp":1955678547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0MzixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3718, '2016-08-10 21:44:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:43:57.908126Z","gw_timestamp":1970042195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0Mziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3720, '2016-08-10 21:44:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:05.089265Z","gw_timestamp":1977224027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0MzivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3722, '2016-08-10 21:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:19.473409Z","gw_timestamp":1991587787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3724, '2016-08-10 21:44:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":2998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:33.831754Z","gw_timestamp":2005951331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI0MDA0Mzixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3726, '2016-08-10 21:44:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:44:48.188641Z","gw_timestamp":2020314155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI0MDA0Mzivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3728, '2016-08-10 21:45:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:45:09.734278Z","gw_timestamp":2041859739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI0MDA0Mzixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3730, '2016-08-10 21:45:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:45:24.087766Z","gw_timestamp":2056222979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI0MDA0MzivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3732, '2016-08-10 21:45:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:45:38.457014Z","gw_timestamp":2070586211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyODAxMjI0MDA0Mziyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3734, '2016-08-10 21:46:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:00.008147Z","gw_timestamp":2092131587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI0MDA0Mziuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3736, '2016-08-10 21:46:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:14.360259Z","gw_timestamp":2106495347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI0MDA0Mzixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3731, '2016-08-10 21:45:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:45:31.287784Z","gw_timestamp":2063404283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYxMjAxMjI0MDA0Mzixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3733, '2016-08-10 21:46:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:45:52.816389Z","gw_timestamp":2084949763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI0MDA0Mziv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3735, '2016-08-10 21:46:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:07.177146Z","gw_timestamp":2099313419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI0MDA0MziwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3737, '2016-08-10 21:46:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:21.542895Z","gw_timestamp":2113676547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mziv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3739, '2016-08-10 21:46:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:35.913141Z","gw_timestamp":2128039787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0MziyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3741, '2016-08-10 21:46:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:50.269391Z","gw_timestamp":2142403539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3743, '2016-08-10 21:47:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:04.63963Z","gw_timestamp":2156766467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMTAxMjI0MDA0MzixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3745, '2016-08-10 21:47:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:19.013164Z","gw_timestamp":2171129915,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3747, '2016-08-10 21:47:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:33.359142Z","gw_timestamp":2185493563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI0MDA0MzeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3749, '2016-08-10 21:47:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:47.73052Z","gw_timestamp":2199857323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI0MDA0Mzexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3751, '2016-08-10 21:48:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:47:54.900137Z","gw_timestamp":2207038419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0MziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3753, '2016-08-10 21:48:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:09.287749Z","gw_timestamp":2221401763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI0MDA0MziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3755, '2016-08-10 21:48:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:23.631772Z","gw_timestamp":2235765619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0MzewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3757, '2016-08-10 21:48:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:37.993719Z","gw_timestamp":2250129067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI0MDA0MzexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3738, '2016-08-10 21:46:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:46:28.748788Z","gw_timestamp":2120858059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI0MDA0Mzivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3768, '2016-08-10 21:50:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:56.996903Z","gw_timestamp":2329124475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0MzewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3770, '2016-08-10 21:50:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:11.363805Z","gw_timestamp":2343488339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI0MDA0MzeuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3772, '2016-08-10 21:50:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:25.719406Z","gw_timestamp":2357850851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU5MzAxMjI0MDA0Mzevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3774, '2016-08-10 21:50:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:40.078645Z","gw_timestamp":2372214707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI0MDA0MzeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3776, '2016-08-10 21:51:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:50:54.447905Z","gw_timestamp":2386578363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI1MDA0MzexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3778, '2016-08-10 21:51:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:08.809151Z","gw_timestamp":2400942011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0MzeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3759, '2016-08-10 21:49:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:48:52.357142Z","gw_timestamp":2264491579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI1MDA0Mzex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3766, '2016-08-10 21:49:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:49:42.626534Z","gw_timestamp":2314761755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0Mzeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3779, '2016-08-10 21:51:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:15.992773Z","gw_timestamp":2408123947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0Mzev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3780, '2016-08-10 21:51:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:23.174757Z","gw_timestamp":2415305675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI1MDA0Mzewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3781, '2016-08-10 21:51:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:30.360022Z","gw_timestamp":2422487603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyNTAxMjI1MDA0Mzevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3782, '2016-08-10 21:51:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:37.541715Z","gw_timestamp":2429669427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI1MDA0Mzex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3783, '2016-08-10 21:52:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:44.724483Z","gw_timestamp":2436851355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0Mzew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3784, '2016-08-10 21:52:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:51:59.085648Z","gw_timestamp":2451215011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI1MDA0Mzevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3785, '2016-08-10 21:52:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:06.258279Z","gw_timestamp":2458396731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI0MDA0Mzew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3786, '2016-08-10 21:52:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:13.446145Z","gw_timestamp":2465578667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NjAxMjI1MDA0Mzewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3787, '2016-08-10 21:52:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:20.628661Z","gw_timestamp":2472760595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI1MDA0MzewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3788, '2016-08-10 21:52:27', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":806,"f_cnt_down":1502,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:52:25.250769Z","gw_timestamp":1221673748,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4ODAxMjE5MDA0NjMMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3789, '2016-08-10 21:52:28', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":807,"f_cnt_down":1503,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:56.149585Z","gw_timestamp":4152474268,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4ODAxMjE5MDA0NjMMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3790, '2016-08-10 21:52:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:27.818534Z","gw_timestamp":2479942315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI0MDA0MzewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3791, '2016-08-10 21:52:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:34.990788Z","gw_timestamp":2487123419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxOTAxMjI0MDA0Mzevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3792, '2016-08-10 21:52:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:42.176405Z","gw_timestamp":2494305035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI1MDA0Mzey2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3796, '2016-08-10 21:53:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:10.896067Z","gw_timestamp":2523030363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDQ5NTAxMjI0MDA0Mzexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3798, '2016-08-10 21:53:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:25.278381Z","gw_timestamp":2537394227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI1MDA0MzevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3800, '2016-08-10 21:53:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:39.623517Z","gw_timestamp":2551757875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI1MDA0Mzevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3802, '2016-08-10 21:54:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:46.803146Z","gw_timestamp":2558939707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxMDAxMjI1MDA0Mzevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3804, '2016-08-10 21:54:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:08.356029Z","gw_timestamp":2580484251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0MzexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3806, '2016-08-10 21:54:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:22.719287Z","gw_timestamp":2594847699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABAwMDUyMzAxMjI1MDA0MzeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3808, '2016-08-10 21:54:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:37.076538Z","gw_timestamp":2609210619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI1MDA0MzeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3810, '2016-08-10 21:55:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:51.459058Z","gw_timestamp":2623574371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MzAxMjI1MDA0Mzexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3812, '2016-08-10 21:55:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:05.798264Z","gw_timestamp":2637937923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMTAxMjI0MDA0MzexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3814, '2016-08-10 21:55:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:20.170411Z","gw_timestamp":2652300955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI1MDA0Mzex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3816, '2016-08-10 21:55:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:34.53767Z","gw_timestamp":2666664299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0MTAxMjI1MDA0MzewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3818, '2016-08-10 21:55:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:48.890918Z","gw_timestamp":2681027643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI1MDA0Mzevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3820, '2016-08-10 21:56:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:03.249168Z","gw_timestamp":2695390251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI1MDA0Mzewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3793, '2016-08-10 21:52:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:49.35103Z","gw_timestamp":2501486547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MzAxMjI1MDA0Mzeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3795, '2016-08-10 21:53:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:03.719476Z","gw_timestamp":2515848643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI1MDA0Mzewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3797, '2016-08-10 21:53:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:18.079528Z","gw_timestamp":2530212299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI1MDA0Mzexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3799, '2016-08-10 21:53:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:53:32.437903Z","gw_timestamp":2544576051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1OTAxMjI1MDA0MzexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3801, '2016-08-10 21:53:49', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":800,"f_cnt_down":1457,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:53:47.484502Z","gw_timestamp":1303907524,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:48:18.383338Z","gw_timestamp":4234708020,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjMyMDA0MjYI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3803, '2016-08-10 21:54:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:01.165617Z","gw_timestamp":2573302419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI1MDA0Mzewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3805, '2016-08-10 21:54:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:15.529953Z","gw_timestamp":2587666075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3OTAxMjI1MDA0Mzew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3807, '2016-08-10 21:54:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:29.893908Z","gw_timestamp":2602028691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI1MDA0Mzewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3809, '2016-08-10 21:54:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:44.253364Z","gw_timestamp":2616392547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI0MDA0Mzeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3811, '2016-08-10 21:55:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:54:58.614486Z","gw_timestamp":2630756099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI1MDA0Mzev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3813, '2016-08-10 21:55:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:12.99067Z","gw_timestamp":2645119859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI1MDA0Mzeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3815, '2016-08-10 21:55:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:27.365171Z","gw_timestamp":2659482571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0MzewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3817, '2016-08-10 21:55:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:41.719877Z","gw_timestamp":2673846227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0MzexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3794, '2016-08-10 21:53:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:52:56.529656Z","gw_timestamp":2508667651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMjAxMjI1MDA0Mzexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3838, '2016-08-10 21:58:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:12.52255Z","gw_timestamp":2824660011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI1MDA0Mzewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3840, '2016-08-10 21:58:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:26.885869Z","gw_timestamp":2839022723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI1MDA0MzexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3842, '2016-08-10 21:58:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:41.258328Z","gw_timestamp":2853385443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI1MDA0MzexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3844, '2016-08-10 21:59:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:55.639561Z","gw_timestamp":2867748155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI1MDA0MzexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3846, '2016-08-10 21:59:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:09.976666Z","gw_timestamp":2882110971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MDAxMjI1MDA0MzewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3862, '2016-08-10 22:01:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:04.886802Z","gw_timestamp":2997018435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MzAxMjI1MDA0MzawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3864, '2016-08-10 22:01:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:19.242041Z","gw_timestamp":3011381987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mzawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3866, '2016-08-10 22:01:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:33.609304Z","gw_timestamp":3025745747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3868, '2016-08-10 22:01:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:47.970856Z","gw_timestamp":3040108979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjI1MDA0Mzax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3870, '2016-08-10 22:02:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:09.515424Z","gw_timestamp":3061654043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMDAxMjI1MDA0MzawOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3900, '2016-08-10 22:05:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:44.964578Z","gw_timestamp":3277107179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMjAxMjI1MDA0MzawOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3902, '2016-08-10 22:06:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:13.691937Z","gw_timestamp":3305834907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3904, '2016-08-10 22:06:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:28.057591Z","gw_timestamp":3320198251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MTAxMjI1MDA0Mzavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3819, '2016-08-10 21:56:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:55:56.072543Z","gw_timestamp":2688208835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUyMzAxMjI1MDA0Mzewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3823, '2016-08-10 21:56:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:24.798036Z","gw_timestamp":2716935315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI1MDA0Mzewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3825, '2016-08-10 21:56:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:39.164277Z","gw_timestamp":2731299179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0ODAxMjI1MDA0Mzexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3827, '2016-08-10 21:57:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:53.539813Z","gw_timestamp":2745661683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0MzexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3829, '2016-08-10 21:57:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:07.89079Z","gw_timestamp":2760024395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NTAxMjI1MDA0Mzexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3831, '2016-08-10 21:57:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:22.247171Z","gw_timestamp":2774388155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NzAxMjI1MDA0MzewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3833, '2016-08-10 21:57:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:36.616419Z","gw_timestamp":2788751291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4NDAxMjI1MDA0Mzexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3835, '2016-08-10 21:58:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:50.979668Z","gw_timestamp":2803114427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NjAxMjI1MDA0Mzevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3837, '2016-08-10 21:58:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:05.341367Z","gw_timestamp":2817478283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU0NDAxMjI1MDA0MzewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3839, '2016-08-10 21:58:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:19.698171Z","gw_timestamp":2831841627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NjAxMjI1MDA0Mzev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3841, '2016-08-10 21:58:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:34.073363Z","gw_timestamp":2846203923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI1MDA0MzexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3843, '2016-08-10 21:58:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:58:48.426648Z","gw_timestamp":2860566435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNTAxMjI1MDA0MzeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3845, '2016-08-10 21:59:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:02.786927Z","gw_timestamp":2874929563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI1MDA0Mzexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3847, '2016-08-10 21:59:18', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1284,"f_cnt_down":2087,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T21:59:16.004126Z","gw_timestamp":1632427316,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjIwMDA0NTIH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3821, '2016-08-10 21:56:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:10.439783Z","gw_timestamp":2702571555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzNzAxMjI1MDA0MzewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3851, '2016-08-10 21:59:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:38.705158Z","gw_timestamp":2910837139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2NDAxMjI1MDA0Mzewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3853, '2016-08-10 22:00:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:53.062425Z","gw_timestamp":2925200995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjI1MDA0MzaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3855, '2016-08-10 22:00:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:14.606245Z","gw_timestamp":2946745547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAgwMDUzOTAxMjI1MDA0MzaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3857, '2016-08-10 22:00:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:28.976554Z","gw_timestamp":2961109299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4MjAxMjI1MDA0Mzavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3859, '2016-08-10 22:00:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:43.331804Z","gw_timestamp":2975472747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1OTAxMjI1MDA0Mzavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3861, '2016-08-10 22:01:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:57.713445Z","gw_timestamp":2989836499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MTAxMjI1MDA0MzawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3863, '2016-08-10 22:01:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:12.065437Z","gw_timestamp":3004200259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4ODAxMjI1MDA0Mzawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3865, '2016-08-10 22:01:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:26.429678Z","gw_timestamp":3018564019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYxMDAxMjI1MDA0Mzav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3867, '2016-08-10 22:01:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:40.787915Z","gw_timestamp":3032927571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzaySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3869, '2016-08-10 22:02:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:01:55.157293Z","gw_timestamp":3047290179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjI1MDA0Mzaueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3871, '2016-08-10 22:02:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:16.698055Z","gw_timestamp":3068835979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDYwMDAxMjI1MDA0MzaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3873, '2016-08-10 22:02:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:31.056434Z","gw_timestamp":3083199523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0Mzawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3875, '2016-08-10 22:03:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:45.421552Z","gw_timestamp":3097563179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MTAxMjI1MDA0Mzawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3822, '2016-08-10 21:56:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:17.627136Z","gw_timestamp":2709753483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMzAxMjI1MDA0MzexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3824, '2016-08-10 21:56:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:32.004638Z","gw_timestamp":2724117243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDYwMDAxMjI1MDA0Mzex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3826, '2016-08-10 21:56:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:56:46.338915Z","gw_timestamp":2738480275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI1MDA0Mzew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3828, '2016-08-10 21:57:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:00.702441Z","gw_timestamp":2752842675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3NTAxMjI1MDA0MzexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3830, '2016-08-10 21:57:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:15.074055Z","gw_timestamp":2767206331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2ODAxMjI1MDA0Mzexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3832, '2016-08-10 21:57:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:29.428793Z","gw_timestamp":2781569883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUwNDAxMjI1MDA0MzexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3834, '2016-08-10 21:57:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:43.795027Z","gw_timestamp":2795932595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU3MDAxMjI1MDA0Mzewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3836, '2016-08-10 21:58:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:57:58.162301Z","gw_timestamp":2810296355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUzOTAxMjI1MDA0Mzevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3848, '2016-08-10 21:59:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:17.160292Z","gw_timestamp":2889292075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1NzAxMjI1MDA0Mzewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3850, '2016-08-10 21:59:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:31.517545Z","gw_timestamp":2903655315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU4MjAxMjI1MDA0MzeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3852, '2016-08-10 21:59:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:45.880089Z","gw_timestamp":2918019075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU2MjAxMjI1MDA0Mzawew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3854, '2016-08-10 22:00:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:07.42268Z","gw_timestamp":2939563611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDUxMjAxMjI1MDA0MzavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3856, '2016-08-10 22:00:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:21.798197Z","gw_timestamp":2953927267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAUwMDU1NzAxMjI1MDA0Mzavmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3858, '2016-08-10 22:00:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:36.146165Z","gw_timestamp":2968291027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MDAxMjI1MDA0Mzaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3849, '2016-08-10 21:59:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T21:59:24.339046Z","gw_timestamp":2896473587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjI1MDA0Mzex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3879, '2016-08-10 22:03:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:14.160434Z","gw_timestamp":3126290691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1OTAxMjI1MDA0MzawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3881, '2016-08-10 22:03:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:28.508417Z","gw_timestamp":3140654347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MTAxMjI1MDA0MzavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3883, '2016-08-10 22:03:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:42.884931Z","gw_timestamp":3155018107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0Mzavmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3885, '2016-08-10 22:04:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:57.245936Z","gw_timestamp":3169381659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0Mzaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3887, '2016-08-10 22:04:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:11.604177Z","gw_timestamp":3183745515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0Mzaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3889, '2016-08-10 22:04:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:25.97956Z","gw_timestamp":3198109171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3891, '2016-08-10 22:04:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:40.325799Z","gw_timestamp":3212472827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0Mzaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3893, '2016-08-10 22:04:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:54.694338Z","gw_timestamp":3226835539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0Mzaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3895, '2016-08-10 22:05:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:09.061317Z","gw_timestamp":3241198155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMTAxMjI1MDA0MzawOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3897, '2016-08-10 22:05:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:23.423687Z","gw_timestamp":3255561915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2ODAxMjI1MDA0MzavKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3899, '2016-08-10 22:05:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:37.779814Z","gw_timestamp":3269925563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0Mzav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3901, '2016-08-10 22:06:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:52.154066Z","gw_timestamp":3284289219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NTAxMjI1MDA0MzaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3903, '2016-08-10 22:06:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:20.883569Z","gw_timestamp":3313016731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2ODAxMjI1MDA0Mzawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3860, '2016-08-10 22:00:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:00:50.514487Z","gw_timestamp":2982654579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyODAxMjI1MDA0Mzaymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3872, '2016-08-10 22:02:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:23.875675Z","gw_timestamp":3076017803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1OTAxMjI1MDA0Mzawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3874, '2016-08-10 22:02:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:38.269184Z","gw_timestamp":3090381459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMjAxMjI1MDA0Mzawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3876, '2016-08-10 22:03:04', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":722,"f_cnt_down":1304,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:02:59.909901Z","gw_timestamp":1856333204,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjE5MDA0NzAGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3878, '2016-08-10 22:03:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:06.964604Z","gw_timestamp":3119108867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3880, '2016-08-10 22:03:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:21.336812Z","gw_timestamp":3133472627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4ODAxMjI1MDA0MzayGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3882, '2016-08-10 22:03:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:35.69243Z","gw_timestamp":3147836179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0Mzaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3884, '2016-08-10 22:03:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:03:50.069523Z","gw_timestamp":3162199931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mzaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3886, '2016-08-10 22:04:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:04.428558Z","gw_timestamp":3176563587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3888, '2016-08-10 22:04:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:18.783424Z","gw_timestamp":3190927235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0Mzaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3890, '2016-08-10 22:04:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:33.151063Z","gw_timestamp":3205291003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0Mzaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3892, '2016-08-10 22:04:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:04:47.519698Z","gw_timestamp":3219653915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0MzayKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3894, '2016-08-10 22:05:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:01.882877Z","gw_timestamp":3234017059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0Mzaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3896, '2016-08-10 22:05:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:16.237315Z","gw_timestamp":3248380187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0Mzax+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3877, '2016-08-10 22:03:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:02:59.787923Z","gw_timestamp":3111927043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NDAxMjI1MDA0Mzawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3907, '2016-08-10 22:06:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:49.602177Z","gw_timestamp":3341744043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2ODAxMjI1MDA0Mzawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3909, '2016-08-10 22:07:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:03.973701Z","gw_timestamp":3356107795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NzAxMjI1MDA0MzawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3911, '2016-08-10 22:07:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:18.331277Z","gw_timestamp":3370471347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3913, '2016-08-10 22:07:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:32.692942Z","gw_timestamp":3384835107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0Mzawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3915, '2016-08-10 22:07:41', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":808,"f_cnt_down":1505,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:02:06.922914Z","gw_timestamp":768280300,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwMzAxMjE5MDA0NjMP0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3917, '2016-08-10 22:07:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:47.060194Z","gw_timestamp":3399198867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzayKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3919, '2016-08-10 22:08:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:01.430688Z","gw_timestamp":3413562307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0Mzau2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3921, '2016-08-10 22:08:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:15.777701Z","gw_timestamp":3427924923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0Mzay2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3947, '2016-08-10 22:11:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:22.503207Z","gw_timestamp":3614651275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NTAxMjI1MDA0Mzawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3949, '2016-08-10 22:11:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:36.866448Z","gw_timestamp":3629013987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0MzaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3951, '2016-08-10 22:12:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:51.231707Z","gw_timestamp":3643377755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNDAxMjI1MDA0MzWuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3953, '2016-08-10 22:12:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:05.605124Z","gw_timestamp":3657740571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3957, '2016-08-10 22:12:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:41.519309Z","gw_timestamp":3693649707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0MzWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3898, '2016-08-10 22:05:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:05:30.601117Z","gw_timestamp":3262743843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0Mzawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3916, '2016-08-10 22:07:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:39.87379Z","gw_timestamp":3392017035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0Mzax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3918, '2016-08-10 22:08:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:54.243815Z","gw_timestamp":3406380795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0Mzax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3920, '2016-08-10 22:08:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:08.602199Z","gw_timestamp":3420743411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1OTAxMjI1MDA0Mzawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3922, '2016-08-10 22:08:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:22.966444Z","gw_timestamp":3435106123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0Mzaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3924, '2016-08-10 22:08:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:37.330692Z","gw_timestamp":3449469779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0Mzauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3926, '2016-08-10 22:08:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:51.686134Z","gw_timestamp":3463833531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0Mzaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3928, '2016-08-10 22:09:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:58.876572Z","gw_timestamp":3471015155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2ODAxMjI1MDA0Mzau+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3930, '2016-08-10 22:09:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:13.243958Z","gw_timestamp":3485379019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0Mzaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3932, '2016-08-10 22:09:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:27.629343Z","gw_timestamp":3499742771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0Mzavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3934, '2016-08-10 22:09:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:49.145823Z","gw_timestamp":3521288355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0Mzawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3936, '2016-08-10 22:10:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:03.515453Z","gw_timestamp":3535651907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMjAxMjI1MDA0MzawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3938, '2016-08-10 22:10:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:17.895964Z","gw_timestamp":3550015563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3940, '2016-08-10 22:10:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:32.238945Z","gw_timestamp":3564378795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3905, '2016-08-10 22:06:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:35.23394Z","gw_timestamp":3327380283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0Mzavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3923, '2016-08-10 22:08:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:30.147074Z","gw_timestamp":3442287843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0Mzawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3925, '2016-08-10 22:08:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:08:44.515305Z","gw_timestamp":3456651603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0Mzaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3927, '2016-08-10 22:09:00', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":801,"f_cnt_down":1458,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:08:59.03987Z","gw_timestamp":2215463356,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:03:29.938762Z","gw_timestamp":851296148,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4OTAxMjMzMDA0MjYawQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3929, '2016-08-10 22:09:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:06.050194Z","gw_timestamp":3478197083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3931, '2016-08-10 22:09:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:20.42045Z","gw_timestamp":3492560843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0Mzawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3933, '2016-08-10 22:09:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:34.777801Z","gw_timestamp":3506924603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3935, '2016-08-10 22:10:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:09:56.327576Z","gw_timestamp":3528470083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1OTAxMjI1MDA0MzaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3937, '2016-08-10 22:10:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:10.695939Z","gw_timestamp":3542833843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MzAxMjI1MDA0MzayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3939, '2016-08-10 22:10:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:25.060199Z","gw_timestamp":3557197595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0Mzavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3941, '2016-08-10 22:10:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:39.42157Z","gw_timestamp":3571560107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3943, '2016-08-10 22:11:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:53.786704Z","gw_timestamp":3585923971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0Mzauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3945, '2016-08-10 22:11:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:08.14208Z","gw_timestamp":3600287619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0Mzavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3906, '2016-08-10 22:06:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:42.444906Z","gw_timestamp":3334562323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0MzavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3908, '2016-08-10 22:07:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:06:56.790822Z","gw_timestamp":3348925971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI1MDA0Mzawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3910, '2016-08-10 22:07:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:11.141329Z","gw_timestamp":3363289523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0Mzaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3912, '2016-08-10 22:07:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:07:25.512323Z","gw_timestamp":3377653387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3914, '2016-08-10 22:07:38', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":807,"f_cnt_down":1504,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:07:36.024024Z","gw_timestamp":2132447468,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwMzAxMjE5MDA0NjMP0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3944, '2016-08-10 22:11:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:00.962323Z","gw_timestamp":3593105691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNDAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3946, '2016-08-10 22:11:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:15.325207Z","gw_timestamp":3607469347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0Mzav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3948, '2016-08-10 22:11:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:29.704693Z","gw_timestamp":3621832691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0Mzayaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3950, '2016-08-10 22:11:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:44.098371Z","gw_timestamp":3636195819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzOTAxMjI1MDA0MzayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3952, '2016-08-10 22:12:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:11:58.421455Z","gw_timestamp":3650558843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNjAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3970, '2016-08-10 22:14:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:22.049083Z","gw_timestamp":3794194451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3972, '2016-08-10 22:14:30', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1286,"f_cnt_down":2089,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:57.721833Z","gw_timestamp":1179079220,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjIwMDA0NTMcMQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3974, '2016-08-10 22:14:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:36.411329Z","gw_timestamp":3808558099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3976, '2016-08-10 22:14:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:50.779797Z","gw_timestamp":3822921963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4NDAxMjI1MDA0MzWu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3942, '2016-08-10 22:10:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:10:46.592075Z","gw_timestamp":3578742139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0Mzav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3954, '2016-08-10 22:12:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:12.783698Z","gw_timestamp":3664922395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3956, '2016-08-10 22:12:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:34.321582Z","gw_timestamp":3686467771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3958, '2016-08-10 22:12:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:48.69284Z","gw_timestamp":3700831531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3960, '2016-08-10 22:13:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:03.046084Z","gw_timestamp":3715194035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3962, '2016-08-10 22:13:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:17.431601Z","gw_timestamp":3729557899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMzAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3964, '2016-08-10 22:13:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:31.783845Z","gw_timestamp":3743921555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3966, '2016-08-10 22:13:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:46.147947Z","gw_timestamp":3758285419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3968, '2016-08-10 22:14:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:00.510207Z","gw_timestamp":3772648867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3980, '2016-08-10 22:15:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:19.501081Z","gw_timestamp":3851648227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3982, '2016-08-10 22:15:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:33.872837Z","gw_timestamp":3866011051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMTAxMjI1MDA0MzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3984, '2016-08-10 22:15:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:48.228704Z","gw_timestamp":3880374595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NTAxMjI1MDA0MzWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3986, '2016-08-10 22:16:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:02.597955Z","gw_timestamp":3894738363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3988, '2016-08-10 22:16:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:16.957724Z","gw_timestamp":3909102115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzWyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3955, '2016-08-10 22:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:19.964276Z","gw_timestamp":3672104115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMDAxMjI1MDA0MzawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3959, '2016-08-10 22:13:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:12:55.86482Z","gw_timestamp":3708012947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3961, '2016-08-10 22:13:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:10.227714Z","gw_timestamp":3722376075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3963, '2016-08-10 22:13:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:24.595958Z","gw_timestamp":3736739627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3965, '2016-08-10 22:13:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:38.961599Z","gw_timestamp":3751103483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3967, '2016-08-10 22:14:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:13:53.316596Z","gw_timestamp":3765467139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3971, '2016-08-10 22:14:28', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1285,"f_cnt_down":2088,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:14:26.822922Z","gw_timestamp":2543246572,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjIwMDA0NTMcMQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3973, '2016-08-10 22:14:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:29.227088Z","gw_timestamp":3801376171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4003, '2016-08-10 22:18:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:04.709579Z","gw_timestamp":4016827851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4005, '2016-08-10 22:18:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:11.860327Z","gw_timestamp":4024009571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4007, '2016-08-10 22:18:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:26.23258Z","gw_timestamp":4038373331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4009, '2016-08-10 22:18:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:40.596244Z","gw_timestamp":4052736467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4011, '2016-08-10 22:19:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:54.953043Z","gw_timestamp":4067099595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4013, '2016-08-10 22:19:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:09.314551Z","gw_timestamp":4081463459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3969, '2016-08-10 22:14:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:07.690046Z","gw_timestamp":3779830795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3975, '2016-08-10 22:14:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:43.596959Z","gw_timestamp":3815739931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NDAxMjI1MDA0MzWyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3977, '2016-08-10 22:15:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:14:57.977551Z","gw_timestamp":3830103795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzWyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3979, '2016-08-10 22:15:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:12.324533Z","gw_timestamp":3844467131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3981, '2016-08-10 22:15:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:26.685841Z","gw_timestamp":3858829331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNTAxMjI1MDA0MzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3983, '2016-08-10 22:15:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:41.042093Z","gw_timestamp":3873192771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3985, '2016-08-10 22:16:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:55.415458Z","gw_timestamp":3887556531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3987, '2016-08-10 22:16:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:09.808285Z","gw_timestamp":3901920291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3989, '2016-08-10 22:16:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:24.137842Z","gw_timestamp":3916283939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3991, '2016-08-10 22:16:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:38.498037Z","gw_timestamp":3930647699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMjAxMjI1MDA0MzWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3993, '2016-08-10 22:17:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:52.866955Z","gw_timestamp":3945011251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3995, '2016-08-10 22:17:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:07.225599Z","gw_timestamp":3959373867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3997, '2016-08-10 22:17:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:21.592966Z","gw_timestamp":3973737723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzWx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3999, '2016-08-10 22:17:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:35.948229Z","gw_timestamp":3988101379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3978, '2016-08-10 22:15:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:15:05.143829Z","gw_timestamp":3837285619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0MzWvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3992, '2016-08-10 22:16:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:45.681717Z","gw_timestamp":3937829523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0MzWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3994, '2016-08-10 22:17:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:00.078498Z","gw_timestamp":3952192763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3996, '2016-08-10 22:17:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:14.427493Z","gw_timestamp":3966555795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3998, '2016-08-10 22:17:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:28.769666Z","gw_timestamp":3980919555,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4000, '2016-08-10 22:17:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:43.139221Z","gw_timestamp":3995282683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4002, '2016-08-10 22:18:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:57.494543Z","gw_timestamp":4009646131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4022, '2016-08-10 22:20:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:13.9471Z","gw_timestamp":4146098027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4024, '2016-08-10 22:20:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:28.314398Z","gw_timestamp":4160461779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4026, '2016-08-10 22:20:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:42.680602Z","gw_timestamp":4174825331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzWvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4028, '2016-08-10 22:21:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:57.037978Z","gw_timestamp":4189188467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4030, '2016-08-10 22:21:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:11.43079Z","gw_timestamp":4203551179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWzOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4032, '2016-08-10 22:21:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:25.77048Z","gw_timestamp":4217914419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjI1MDA0MzWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4034, '2016-08-10 22:21:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:40.127105Z","gw_timestamp":4232278179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (3990, '2016-08-10 22:16:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:16:31.321457Z","gw_timestamp":3923465667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU5NDAxMjI1MDA0MzWyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4004, '2016-08-10 22:18:13', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":723,"f_cnt_down":1305,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:18:10.682815Z","gw_timestamp":2767106580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:12:41.581737Z","gw_timestamp":1402939124,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-125,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjIwMDA0NjgKYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4006, '2016-08-10 22:18:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:19.049982Z","gw_timestamp":4031191395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4008, '2016-08-10 22:18:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:33.402221Z","gw_timestamp":4045555259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4010, '2016-08-10 22:18:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:18:47.76546Z","gw_timestamp":4059917979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4012, '2016-08-10 22:19:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:02.137852Z","gw_timestamp":4074281531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4014, '2016-08-10 22:19:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:16.492402Z","gw_timestamp":4088645291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMjAxMjI1MDA0MzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4016, '2016-08-10 22:19:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:30.871941Z","gw_timestamp":4103007899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4018, '2016-08-10 22:19:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:45.238594Z","gw_timestamp":4117371659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4020, '2016-08-10 22:20:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:59.585214Z","gw_timestamp":4131734371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0MzWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4038, '2016-08-10 22:22:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:08.850229Z","gw_timestamp":4261004651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4040, '2016-08-10 22:22:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:30.402232Z","gw_timestamp":4282550235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4042, '2016-08-10 22:22:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:44.758606Z","gw_timestamp":1945555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4001, '2016-08-10 22:17:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:17:50.328719Z","gw_timestamp":4002464091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4017, '2016-08-10 22:19:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:38.041353Z","gw_timestamp":4110189723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNTAxMjI1MDA0MzWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4019, '2016-08-10 22:20:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:52.410216Z","gw_timestamp":4124553275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0MzWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4021, '2016-08-10 22:20:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:06.764708Z","gw_timestamp":4138916203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4023, '2016-08-10 22:20:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:21.140987Z","gw_timestamp":4153279851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4025, '2016-08-10 22:20:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:35.501108Z","gw_timestamp":4167643611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4027, '2016-08-10 22:20:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:20:49.864461Z","gw_timestamp":4182007267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4029, '2016-08-10 22:21:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:04.220608Z","gw_timestamp":4196369987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4035, '2016-08-10 22:21:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:47.316543Z","gw_timestamp":4239460003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4037, '2016-08-10 22:22:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:01.681903Z","gw_timestamp":4253822827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4039, '2016-08-10 22:22:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:16.046515Z","gw_timestamp":4268186379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NDAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4041, '2016-08-10 22:22:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:37.580854Z","gw_timestamp":4289731443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4043, '2016-08-10 22:22:54', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":808,"f_cnt_down":1506,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:22:46.806123Z","gw_timestamp":3043230028,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:17:17.705065Z","gw_timestamp":1679062452,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-116,"snr":-13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYyNDAxMjE5MDA0NjMN0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4015, '2016-08-10 22:19:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:19:23.67172Z","gw_timestamp":4095826483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0MzWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4031, '2016-08-10 22:21:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:18.583784Z","gw_timestamp":4210732691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNTAxMjI1MDA0MzWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4033, '2016-08-10 22:21:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:32.949103Z","gw_timestamp":4225096355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4047, '2016-08-10 22:23:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:13.485914Z","gw_timestamp":30672963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4049, '2016-08-10 22:23:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:27.860468Z","gw_timestamp":45035787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNDAxMjI1MDA0MzWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4051, '2016-08-10 22:23:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:42.219698Z","gw_timestamp":59399443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4053, '2016-08-10 22:24:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:56.583729Z","gw_timestamp":73762995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4063, '2016-08-10 22:25:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:08.403719Z","gw_timestamp":145580635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4065, '2016-08-10 22:25:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:22.75635Z","gw_timestamp":159944075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMTAxMjI1MDA0MzWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4067, '2016-08-10 22:25:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:37.117606Z","gw_timestamp":174307835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4069, '2016-08-10 22:25:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:51.487859Z","gw_timestamp":188670867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNTAxMjI1MDA0MzWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4071, '2016-08-10 22:26:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:05.849248Z","gw_timestamp":203034315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI1MDA0MzWvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4073, '2016-08-10 22:26:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:20.219474Z","gw_timestamp":217397859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4075, '2016-08-10 22:26:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:41.758355Z","gw_timestamp":238943027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4036, '2016-08-10 22:22:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:21:54.484959Z","gw_timestamp":4246641107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzWvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4046, '2016-08-10 22:23:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:06.304518Z","gw_timestamp":23491139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4048, '2016-08-10 22:23:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:20.668606Z","gw_timestamp":37854787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4050, '2016-08-10 22:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:35.037859Z","gw_timestamp":52217403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4052, '2016-08-10 22:24:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:23:49.397094Z","gw_timestamp":66581163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNDAxMjI1MDA0MzWuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4054, '2016-08-10 22:24:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:03.755344Z","gw_timestamp":80944923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4056, '2016-08-10 22:24:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:10.941477Z","gw_timestamp":88126851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI1MDA0MzWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4058, '2016-08-10 22:24:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:32.508274Z","gw_timestamp":109672227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI1MDA0MzWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4060, '2016-08-10 22:24:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:46.858226Z","gw_timestamp":124035987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4062, '2016-08-10 22:25:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:01.212868Z","gw_timestamp":138398699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4064, '2016-08-10 22:25:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:15.580734Z","gw_timestamp":152762355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4066, '2016-08-10 22:25:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:29.941988Z","gw_timestamp":167125907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4068, '2016-08-10 22:25:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:44.313502Z","gw_timestamp":181489771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4070, '2016-08-10 22:26:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:25:58.682931Z","gw_timestamp":195852379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4044, '2016-08-10 22:23:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:51.949358Z","gw_timestamp":9127379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4072, '2016-08-10 22:26:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:13.026859Z","gw_timestamp":210216035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NDAxMjI1MDA0MzWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4074, '2016-08-10 22:26:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:34.57074Z","gw_timestamp":231761723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4076, '2016-08-10 22:26:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:48.968339Z","gw_timestamp":246124227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4132, '2016-08-10 22:33:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:45.477752Z","gw_timestamp":662662587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4134, '2016-08-10 22:34:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:59.839144Z","gw_timestamp":677026243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0MzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4136, '2016-08-10 22:34:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:14.219472Z","gw_timestamp":691389995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4138, '2016-08-10 22:34:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:28.580774Z","gw_timestamp":705753547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4140, '2016-08-10 22:34:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:50.109508Z","gw_timestamp":727299027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4142, '2016-08-10 22:35:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:04.490033Z","gw_timestamp":741662787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4144, '2016-08-10 22:35:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:18.837976Z","gw_timestamp":756026547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMjAxMjI1MDA0MzWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4146, '2016-08-10 22:35:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:33.195263Z","gw_timestamp":770390403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4148, '2016-08-10 22:35:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:47.571513Z","gw_timestamp":784753963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4150, '2016-08-10 22:36:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:01.942032Z","gw_timestamp":799116675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4045, '2016-08-10 22:23:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:22:59.127724Z","gw_timestamp":16309203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4055, '2016-08-10 22:24:12', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":802,"f_cnt_down":1459,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:24:09.87893Z","gw_timestamp":3126302876,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:18:40.777881Z","gw_timestamp":1762135268,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjMzMDA0MjULkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4057, '2016-08-10 22:24:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:18.130731Z","gw_timestamp":95308475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4059, '2016-08-10 22:24:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:39.666858Z","gw_timestamp":116854155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4061, '2016-08-10 22:25:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:24:54.033843Z","gw_timestamp":131217083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4079, '2016-08-10 22:27:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:10.486879Z","gw_timestamp":267669923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4081, '2016-08-10 22:27:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:24.847118Z","gw_timestamp":282033363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4083, '2016-08-10 22:27:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:46.399117Z","gw_timestamp":303577179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzWwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4085, '2016-08-10 22:28:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:00.78364Z","gw_timestamp":317940731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4087, '2016-08-10 22:28:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:15.122619Z","gw_timestamp":332304491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4089, '2016-08-10 22:28:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:29.477871Z","gw_timestamp":346667099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4091, '2016-08-10 22:28:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:43.851612Z","gw_timestamp":361030955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4093, '2016-08-10 22:29:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:58.214436Z","gw_timestamp":375394619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzWvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4077, '2016-08-10 22:27:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:26:56.118611Z","gw_timestamp":253306163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4097, '2016-08-10 22:29:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:26.937985Z","gw_timestamp":404121091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4099, '2016-08-10 22:29:43', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1286,"f_cnt_down":2090,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:24:08.541057Z","gw_timestamp":2089898444,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MDAxMjIwMDA0NTIKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4101, '2016-08-10 22:29:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:48.483864Z","gw_timestamp":425666571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4103, '2016-08-10 22:30:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:02.868395Z","gw_timestamp":440030331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4105, '2016-08-10 22:30:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:17.205381Z","gw_timestamp":454394083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI1MDA0MzWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4107, '2016-08-10 22:30:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:38.746241Z","gw_timestamp":475938635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4109, '2016-08-10 22:31:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:53.146386Z","gw_timestamp":490301763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5MjAxMjI1MDA0MzWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4111, '2016-08-10 22:31:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:07.478067Z","gw_timestamp":504664891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4113, '2016-08-10 22:31:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:21.840125Z","gw_timestamp":519028131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4115, '2016-08-10 22:31:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:36.20537Z","gw_timestamp":533390851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4117, '2016-08-10 22:32:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:57.75443Z","gw_timestamp":554935811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4119, '2016-08-10 22:32:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:12.105501Z","gw_timestamp":569299563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMTAxMjI1MDA0MzWuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4121, '2016-08-10 22:32:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:26.473734Z","gw_timestamp":583662179,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4078, '2016-08-10 22:27:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:03.309243Z","gw_timestamp":260488091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4080, '2016-08-10 22:27:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:17.671493Z","gw_timestamp":274851643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4082, '2016-08-10 22:27:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:39.208804Z","gw_timestamp":296395875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4084, '2016-08-10 22:28:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:27:53.579743Z","gw_timestamp":310759003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4086, '2016-08-10 22:28:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:07.939169Z","gw_timestamp":325122555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NjAxMjI1MDA0MzWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4088, '2016-08-10 22:28:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:22.297176Z","gw_timestamp":339485899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4090, '2016-08-10 22:28:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:36.675561Z","gw_timestamp":353849139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNDAxMjI1MDA0MzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4092, '2016-08-10 22:29:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:28:51.027749Z","gw_timestamp":368212787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4094, '2016-08-10 22:29:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:05.397004Z","gw_timestamp":382576131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4096, '2016-08-10 22:29:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:19.747243Z","gw_timestamp":396939059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDYwMTAxMjI1MDA0MzWvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4098, '2016-08-10 22:29:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:34.121617Z","gw_timestamp":411302915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4100, '2016-08-10 22:29:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:41.304198Z","gw_timestamp":418484843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4102, '2016-08-10 22:30:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:55.656753Z","gw_timestamp":432848291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYxMjAxMjI1MDA0MzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4104, '2016-08-10 22:30:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:10.019743Z","gw_timestamp":447212051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4095, '2016-08-10 22:29:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:29:12.589735Z","gw_timestamp":389757331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4125, '2016-08-10 22:33:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:02.389993Z","gw_timestamp":619571523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4127, '2016-08-10 22:33:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:16.745259Z","gw_timestamp":633935067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4129, '2016-08-10 22:33:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:23.953143Z","gw_timestamp":641117003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzWvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4131, '2016-08-10 22:33:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:38.305501Z","gw_timestamp":655480659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4133, '2016-08-10 22:34:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:52.661379Z","gw_timestamp":669844307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4135, '2016-08-10 22:34:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:07.025644Z","gw_timestamp":684207963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMDAxMjI1MDA0MzWyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4137, '2016-08-10 22:34:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:21.388886Z","gw_timestamp":698571827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMDAxMjI1MDA0MzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4139, '2016-08-10 22:34:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:42.93387Z","gw_timestamp":720117203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4141, '2016-08-10 22:35:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:34:57.292135Z","gw_timestamp":734481067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4143, '2016-08-10 22:35:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:11.662385Z","gw_timestamp":748844715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4145, '2016-08-10 22:35:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:26.023632Z","gw_timestamp":763208475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzWu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4147, '2016-08-10 22:35:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:40.382882Z","gw_timestamp":777572027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyODAxMjI1MDA0MzWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4177, '2016-08-10 22:39:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:15.8369Z","gw_timestamp":993023395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4106, '2016-08-10 22:30:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:24.38999Z","gw_timestamp":461575811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4108, '2016-08-10 22:30:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:30:45.944875Z","gw_timestamp":483120347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4110, '2016-08-10 22:31:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:00.301123Z","gw_timestamp":497483067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzWyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4112, '2016-08-10 22:31:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:14.665485Z","gw_timestamp":511846619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4114, '2016-08-10 22:31:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:29.029146Z","gw_timestamp":526209435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4116, '2016-08-10 22:31:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:31:50.568623Z","gw_timestamp":547753883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4118, '2016-08-10 22:32:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:04.936879Z","gw_timestamp":562117739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4120, '2016-08-10 22:32:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:19.298125Z","gw_timestamp":576480979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzWx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4122, '2016-08-10 22:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:40.841999Z","gw_timestamp":598025939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4124, '2016-08-10 22:33:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:55.210369Z","gw_timestamp":612389483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4126, '2016-08-10 22:33:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:09.574776Z","gw_timestamp":626753147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4128, '2016-08-10 22:33:26', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":724,"f_cnt_down":1306,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:33:21.455673Z","gw_timestamp":3677879900,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjIwMDA0NjcLoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4130, '2016-08-10 22:33:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:33:31.112498Z","gw_timestamp":648298827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzWumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4154, '2016-08-10 22:36:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:30.656376Z","gw_timestamp":827843979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4123, '2016-08-10 22:32:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:32:48.045917Z","gw_timestamp":605207659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4149, '2016-08-10 22:36:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:35:54.770252Z","gw_timestamp":791935571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4151, '2016-08-10 22:36:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:09.11039Z","gw_timestamp":806298499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4153, '2016-08-10 22:36:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:23.477749Z","gw_timestamp":820662051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4155, '2016-08-10 22:36:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:45.050751Z","gw_timestamp":842207739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzWuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4157, '2016-08-10 22:37:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:59.402179Z","gw_timestamp":856571395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4159, '2016-08-10 22:37:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:13.749082Z","gw_timestamp":870934115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4161, '2016-08-10 22:37:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:28.102517Z","gw_timestamp":885296827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4163, '2016-08-10 22:37:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:42.465631Z","gw_timestamp":899660587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4165, '2016-08-10 22:37:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:56.839019Z","gw_timestamp":914023203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4167, '2016-08-10 22:38:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:04.013634Z","gw_timestamp":921205131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4169, '2016-08-10 22:38:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:18.371839Z","gw_timestamp":935568675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4171, '2016-08-10 22:38:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:32.736143Z","gw_timestamp":949932435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzSx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4173, '2016-08-10 22:38:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:47.101644Z","gw_timestamp":964296195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NTAxMjI1MDA0MzSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4152, '2016-08-10 22:36:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:16.287123Z","gw_timestamp":813480219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4156, '2016-08-10 22:37:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:36:52.193266Z","gw_timestamp":849389571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4158, '2016-08-10 22:37:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:06.567513Z","gw_timestamp":863752699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4160, '2016-08-10 22:37:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:20.922767Z","gw_timestamp":878115627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4162, '2016-08-10 22:37:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:35.298285Z","gw_timestamp":892478659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMzAxMjI1MDA0MzWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4164, '2016-08-10 22:37:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:37:49.650414Z","gw_timestamp":906842099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4166, '2016-08-10 22:38:05', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":809,"f_cnt_down":1507,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:37:58.196102Z","gw_timestamp":3954620468,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwMzAxMjE5MDA0NjIJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4168, '2016-08-10 22:38:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:11.209538Z","gw_timestamp":928386955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4170, '2016-08-10 22:38:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:25.563706Z","gw_timestamp":942750611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzSwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4172, '2016-08-10 22:38:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:39.924766Z","gw_timestamp":957114363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzSu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4174, '2016-08-10 22:39:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:38:54.282019Z","gw_timestamp":971477915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU5MjAxMjI1MDA0MzSyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4176, '2016-08-10 22:39:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:08.646256Z","gw_timestamp":985841675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4178, '2016-08-10 22:39:25', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":803,"f_cnt_down":1460,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:22:16.650266Z","gw_timestamp":2672974948,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjM0MDA0MjQLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4180, '2016-08-10 22:39:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:30.194136Z","gw_timestamp":1007387259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4182, '2016-08-10 22:39:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:44.566519Z","gw_timestamp":1021750811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4175, '2016-08-10 22:39:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:01.487913Z","gw_timestamp":978659851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4181, '2016-08-10 22:39:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:37.37889Z","gw_timestamp":1014569083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4183, '2016-08-10 22:40:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:51.773024Z","gw_timestamp":1028932843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4185, '2016-08-10 22:40:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:06.111638Z","gw_timestamp":1043296395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4197, '2016-08-10 22:41:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:32.281027Z","gw_timestamp":1129476443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzSyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4199, '2016-08-10 22:41:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:46.654256Z","gw_timestamp":1143840411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4201, '2016-08-10 22:42:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:01.013512Z","gw_timestamp":1158203331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzSvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4203, '2016-08-10 22:42:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:15.375779Z","gw_timestamp":1172566883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4205, '2016-08-10 22:42:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:29.738028Z","gw_timestamp":1186930435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzSveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4207, '2016-08-10 22:43:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:51.279897Z","gw_timestamp":1208475915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4209, '2016-08-10 22:43:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:05.652278Z","gw_timestamp":1222839771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4179, '2016-08-10 22:39:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:23.02214Z","gw_timestamp":1000205331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4187, '2016-08-10 22:40:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:20.473264Z","gw_timestamp":1057659939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4189, '2016-08-10 22:40:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:34.8379Z","gw_timestamp":1072022867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0MzSyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4191, '2016-08-10 22:40:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:49.1954Z","gw_timestamp":1086386627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4193, '2016-08-10 22:41:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:03.561384Z","gw_timestamp":1100750283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4195, '2016-08-10 22:41:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:17.919993Z","gw_timestamp":1115113099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4184, '2016-08-10 22:40:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:39:58.923767Z","gw_timestamp":1036114675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzSumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4186, '2016-08-10 22:40:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:13.288023Z","gw_timestamp":1050478323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4188, '2016-08-10 22:40:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:27.668523Z","gw_timestamp":1064841035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4190, '2016-08-10 22:40:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:42.029824Z","gw_timestamp":1079204803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4192, '2016-08-10 22:41:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:40:56.379769Z","gw_timestamp":1093568451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzSvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4194, '2016-08-10 22:41:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:10.759259Z","gw_timestamp":1107932003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzSwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4196, '2016-08-10 22:41:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:25.097383Z","gw_timestamp":1122294819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4198, '2016-08-10 22:41:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:39.463644Z","gw_timestamp":1136658475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4200, '2016-08-10 22:42:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:41:53.845908Z","gw_timestamp":1151022235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4202, '2016-08-10 22:42:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:08.197558Z","gw_timestamp":1165384955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4204, '2016-08-10 22:42:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:22.551391Z","gw_timestamp":1179748499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzSxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4206, '2016-08-10 22:42:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:36.917649Z","gw_timestamp":1194112259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4208, '2016-08-10 22:43:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:42:58.473274Z","gw_timestamp":1215657739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4210, '2016-08-10 22:43:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:12.828152Z","gw_timestamp":1230021499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzSvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4211, '2016-08-10 22:43:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:20.011527Z","gw_timestamp":1237203323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4212, '2016-08-10 22:43:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:27.199102Z","gw_timestamp":1244385251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4213, '2016-08-10 22:43:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:34.373774Z","gw_timestamp":1251566451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4214, '2016-08-10 22:43:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:41.552405Z","gw_timestamp":1258747867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxOTAxMjI1MDA0MzSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4215, '2016-08-10 22:43:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:48.739036Z","gw_timestamp":1265929595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3ODAxMjI1MDA0MzSyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4216, '2016-08-10 22:44:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:43:55.922649Z","gw_timestamp":1273111627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4217, '2016-08-10 22:44:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:03.101269Z","gw_timestamp":1280293459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4218, '2016-08-10 22:44:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:10.29017Z","gw_timestamp":1287475283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzSvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4219, '2016-08-10 22:44:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:17.468531Z","gw_timestamp":1294657211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4220, '2016-08-10 22:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:24.649306Z","gw_timestamp":1301838931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4221, '2016-08-10 22:44:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:31.82791Z","gw_timestamp":1309020035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4222, '2016-08-10 22:44:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:39.004641Z","gw_timestamp":1316201755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4223, '2016-08-10 22:44:55', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1287,"f_cnt_down":2091,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:44:48.461078Z","gw_timestamp":69918356,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjIwMDA0NTIHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4224, '2016-08-10 22:45:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:44:53.376171Z","gw_timestamp":1330565299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4225, '2016-08-10 22:45:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:00.551401Z","gw_timestamp":1337747235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4229, '2016-08-10 22:45:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:29.277909Z","gw_timestamp":1366474643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI1MDA0MzSvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4231, '2016-08-10 22:45:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:43.656627Z","gw_timestamp":1380838299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4233, '2016-08-10 22:46:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:58.007395Z","gw_timestamp":1395202059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4235, '2016-08-10 22:46:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:12.366781Z","gw_timestamp":1409564779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4237, '2016-08-10 22:46:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:26.74004Z","gw_timestamp":1423928427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4239, '2016-08-10 22:46:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:41.091222Z","gw_timestamp":1438292083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4241, '2016-08-10 22:47:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:55.461535Z","gw_timestamp":1452655739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzSwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4243, '2016-08-10 22:47:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:09.833057Z","gw_timestamp":1467018563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzSuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4245, '2016-08-10 22:47:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:24.193036Z","gw_timestamp":1481382107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI1MDA0MzSu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4247, '2016-08-10 22:47:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:38.55067Z","gw_timestamp":1495745763,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4249, '2016-08-10 22:48:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:52.907537Z","gw_timestamp":1510109627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4251, '2016-08-10 22:48:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:07.273916Z","gw_timestamp":1524473171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzSxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4253, '2016-08-10 22:48:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:21.642164Z","gw_timestamp":1538837035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4226, '2016-08-10 22:45:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:07.755662Z","gw_timestamp":1344929171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4258, '2016-08-10 22:48:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:50.369516Z","gw_timestamp":1567564339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5ODAxMjI1MDA0MzSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4260, '2016-08-10 22:49:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:04.735899Z","gw_timestamp":1581928099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4262, '2016-08-10 22:49:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:19.096162Z","gw_timestamp":1596291755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4264, '2016-08-10 22:49:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:33.455528Z","gw_timestamp":1610654571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4266, '2016-08-10 22:49:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:47.84004Z","gw_timestamp":1625018123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4268, '2016-08-10 22:50:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:02.190612Z","gw_timestamp":1639381883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI1MDA0MzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4270, '2016-08-10 22:50:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:16.548299Z","gw_timestamp":1653745539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDYxNTAxMjI1MDA0MzOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4272, '2016-08-10 22:50:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:30.919545Z","gw_timestamp":1668109195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4274, '2016-08-10 22:50:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:45.282799Z","gw_timestamp":1682472947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4276, '2016-08-10 22:51:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:59.643162Z","gw_timestamp":1696836603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4278, '2016-08-10 22:51:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:13.999414Z","gw_timestamp":1711200155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4280, '2016-08-10 22:51:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:28.385144Z","gw_timestamp":1725564019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4282, '2016-08-10 22:51:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:42.727913Z","gw_timestamp":1739927771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4227, '2016-08-10 22:45:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:14.917642Z","gw_timestamp":1352110891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzSxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4257, '2016-08-10 22:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:43.189042Z","gw_timestamp":1560382307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4259, '2016-08-10 22:49:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:57.552293Z","gw_timestamp":1574746275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4261, '2016-08-10 22:49:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:11.91184Z","gw_timestamp":1589109923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4263, '2016-08-10 22:49:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:26.283785Z","gw_timestamp":1603472851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4265, '2016-08-10 22:49:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:40.637171Z","gw_timestamp":1617836195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4267, '2016-08-10 22:50:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:49:55.00842Z","gw_timestamp":1632199955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4269, '2016-08-10 22:50:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:09.36992Z","gw_timestamp":1646563811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NTAxMjI1MDA0MzOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4271, '2016-08-10 22:50:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:23.727913Z","gw_timestamp":1660927371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4273, '2016-08-10 22:50:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:38.120387Z","gw_timestamp":1675291019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4275, '2016-08-10 22:51:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:50:52.460406Z","gw_timestamp":1689654779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4277, '2016-08-10 22:51:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:06.827921Z","gw_timestamp":1704018435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4279, '2016-08-10 22:51:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:21.184371Z","gw_timestamp":1718382187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4281, '2016-08-10 22:51:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:35.542297Z","gw_timestamp":1732745843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NDAxMjI1MDA0MzOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4228, '2016-08-10 22:45:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:22.105288Z","gw_timestamp":1359292923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI1MDA0MzSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4230, '2016-08-10 22:45:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:36.45754Z","gw_timestamp":1373656475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4232, '2016-08-10 22:45:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:45:50.826901Z","gw_timestamp":1388020227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzSuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4234, '2016-08-10 22:46:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:05.19204Z","gw_timestamp":1402383155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4236, '2016-08-10 22:46:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:19.578683Z","gw_timestamp":1416746395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzSwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4238, '2016-08-10 22:46:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:33.914925Z","gw_timestamp":1431110251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4240, '2016-08-10 22:46:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:46:48.279157Z","gw_timestamp":1445474019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4242, '2016-08-10 22:47:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:02.648167Z","gw_timestamp":1459836835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzSzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4244, '2016-08-10 22:47:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:17.00242Z","gw_timestamp":1474200283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4246, '2016-08-10 22:47:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:31.372667Z","gw_timestamp":1488564043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MTAxMjI1MDA0MzSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4248, '2016-08-10 22:47:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:47:45.732914Z","gw_timestamp":1502927691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4250, '2016-08-10 22:48:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:00.104903Z","gw_timestamp":1517291139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzSzuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4252, '2016-08-10 22:48:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:14.461809Z","gw_timestamp":1531654995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI1MDA0MzSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4254, '2016-08-10 22:48:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:28.821793Z","gw_timestamp":1546018659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjI1MDA0MzSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4255, '2016-08-10 22:48:38', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":725,"f_cnt_down":1307,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:48:32.228563Z","gw_timestamp":293685956,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:28.160313Z","gw_timestamp":3224484996,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjIwMDA0NjYLcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4285, '2016-08-10 22:52:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:04.327909Z","gw_timestamp":1761473155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4287, '2016-08-10 22:52:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:18.644046Z","gw_timestamp":1775836907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4289, '2016-08-10 22:52:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:33.0023Z","gw_timestamp":1790200667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzOu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4291, '2016-08-10 22:52:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:47.372545Z","gw_timestamp":1804564323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4293, '2016-08-10 22:53:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:01.743397Z","gw_timestamp":1818926931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4295, '2016-08-10 22:53:11', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":811,"f_cnt_down":1509,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:53:08.965751Z","gw_timestamp":570423284,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjE5MDA0NjIJYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4297, '2016-08-10 22:53:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:16.089128Z","gw_timestamp":1833290899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI1MDA0MzOyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4355, '2016-08-10 23:00:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:05.446309Z","gw_timestamp":2242648267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4357, '2016-08-10 23:00:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:19.804702Z","gw_timestamp":2257011819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4359, '2016-08-10 23:00:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:34.173822Z","gw_timestamp":2271375467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4361, '2016-08-10 23:00:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:48.538065Z","gw_timestamp":2285739019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI1MDA0MzOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4363, '2016-08-10 23:01:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:10.083063Z","gw_timestamp":2307284603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4256, '2016-08-10 22:48:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:48:36.030683Z","gw_timestamp":1553200683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjI1MDA0MzSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4312, '2016-08-10 22:55:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:56.633037Z","gw_timestamp":1933836475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MTAxMjI1MDA0MzOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4314, '2016-08-10 22:55:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:11.019517Z","gw_timestamp":1948199819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4316, '2016-08-10 22:55:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:25.385805Z","gw_timestamp":1962562323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzOzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4318, '2016-08-10 22:55:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:39.720807Z","gw_timestamp":1976925667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4320, '2016-08-10 22:56:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:54.094057Z","gw_timestamp":1991289523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4322, '2016-08-10 22:56:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:08.450546Z","gw_timestamp":2005652459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4324, '2016-08-10 22:56:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:22.813683Z","gw_timestamp":2020015691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4326, '2016-08-10 22:56:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:37.185936Z","gw_timestamp":2034379451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4328, '2016-08-10 22:57:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:51.549397Z","gw_timestamp":2048742795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4330, '2016-08-10 22:57:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:13.092682Z","gw_timestamp":2070287651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4332, '2016-08-10 22:57:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:27.450311Z","gw_timestamp":2084651403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4334, '2016-08-10 22:57:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:41.810104Z","gw_timestamp":2099014851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4336, '2016-08-10 22:58:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:56.181932Z","gw_timestamp":2113377675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzOyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4283, '2016-08-10 22:51:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:49.915539Z","gw_timestamp":1747109603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4299, '2016-08-10 22:53:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:30.456615Z","gw_timestamp":1847654451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0MzOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4301, '2016-08-10 22:53:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:44.818377Z","gw_timestamp":1862018107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4303, '2016-08-10 22:54:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:59.181929Z","gw_timestamp":1876381763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4305, '2016-08-10 22:54:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:13.547178Z","gw_timestamp":1890745515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4307, '2016-08-10 22:54:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:27.911554Z","gw_timestamp":1905109275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4309, '2016-08-10 22:54:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:35.100433Z","gw_timestamp":1912290995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4311, '2016-08-10 22:54:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:49.455472Z","gw_timestamp":1926654651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4313, '2016-08-10 22:55:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:03.823676Z","gw_timestamp":1941018515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDYwMTAxMjI1MDA0MzOyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4315, '2016-08-10 22:55:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:18.180915Z","gw_timestamp":1955381019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4317, '2016-08-10 22:55:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:32.549181Z","gw_timestamp":1969743843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4319, '2016-08-10 22:55:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:55:46.915561Z","gw_timestamp":1984107603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4321, '2016-08-10 22:56:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:01.285303Z","gw_timestamp":1998471355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4323, '2016-08-10 22:56:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:15.650645Z","gw_timestamp":2012834075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4284, '2016-08-10 22:52:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:51:57.101173Z","gw_timestamp":1754291427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4286, '2016-08-10 22:52:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:11.46155Z","gw_timestamp":1768655187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4288, '2016-08-10 22:52:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:25.819914Z","gw_timestamp":1783018835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4290, '2016-08-10 22:52:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:40.198184Z","gw_timestamp":1797382283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4292, '2016-08-10 22:53:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:52:54.552514Z","gw_timestamp":1811745419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4294, '2016-08-10 22:53:10', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":810,"f_cnt_down":1508,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:04.897521Z","gw_timestamp":3501222204,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjE5MDA0NjIJYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4296, '2016-08-10 22:53:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:08.916549Z","gw_timestamp":1826108867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4298, '2016-08-10 22:53:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:23.270802Z","gw_timestamp":1840472619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4300, '2016-08-10 22:53:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:37.643189Z","gw_timestamp":1854836379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4302, '2016-08-10 22:54:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:53:52.001307Z","gw_timestamp":1869200035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4304, '2016-08-10 22:54:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:06.358808Z","gw_timestamp":1883563683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4306, '2016-08-10 22:54:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:20.754702Z","gw_timestamp":1897927347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4308, '2016-08-10 22:54:36', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":804,"f_cnt_down":1461,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:54:31.558237Z","gw_timestamp":653015812,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:37:27.490009Z","gw_timestamp":3583814692,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjMzMDA0MjMKcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4310, '2016-08-10 22:54:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:54:42.269811Z","gw_timestamp":1919472923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4340, '2016-08-10 22:58:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:24.901852Z","gw_timestamp":2142104251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzOvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4342, '2016-08-10 22:58:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:39.265682Z","gw_timestamp":2156467803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4344, '2016-08-10 22:58:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:53.629063Z","gw_timestamp":2170831563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4346, '2016-08-10 22:59:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:08.000409Z","gw_timestamp":2185195315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4348, '2016-08-10 22:59:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:22.372814Z","gw_timestamp":2199558555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzOvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4350, '2016-08-10 22:59:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:36.71781Z","gw_timestamp":2213921587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4352, '2016-08-10 23:00:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:51.07945Z","gw_timestamp":2228285339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjI1MDA0MzOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4354, '2016-08-10 23:00:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:58.262564Z","gw_timestamp":2235467275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4356, '2016-08-10 23:00:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:12.62989Z","gw_timestamp":2249829883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0MzOyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4358, '2016-08-10 23:00:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:26.98914Z","gw_timestamp":2264193539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0MzOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4360, '2016-08-10 23:00:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:41.359715Z","gw_timestamp":2278557083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4362, '2016-08-10 23:01:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:00:55.723813Z","gw_timestamp":2292920947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4366, '2016-08-10 23:01:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:31.621893Z","gw_timestamp":2328830291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4325, '2016-08-10 22:56:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:30.000296Z","gw_timestamp":2027197627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4327, '2016-08-10 22:56:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:56:44.36856Z","gw_timestamp":2041561387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzOuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4329, '2016-08-10 22:57:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:05.912436Z","gw_timestamp":2063105923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4331, '2016-08-10 22:57:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:20.276689Z","gw_timestamp":2077469579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4333, '2016-08-10 22:57:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:34.631211Z","gw_timestamp":2091833131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4335, '2016-08-10 22:57:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:57:48.99433Z","gw_timestamp":2106195947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI1MDA0MzOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4337, '2016-08-10 22:58:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:03.360565Z","gw_timestamp":2120559707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4339, '2016-08-10 22:58:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:17.718147Z","gw_timestamp":2134923259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4341, '2016-08-10 22:58:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:32.106488Z","gw_timestamp":2149286075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4343, '2016-08-10 22:58:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:46.445308Z","gw_timestamp":2163649731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4345, '2016-08-10 22:59:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:00.80957Z","gw_timestamp":2178013491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4347, '2016-08-10 22:59:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:15.172822Z","gw_timestamp":2192377035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4349, '2016-08-10 22:59:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:29.544195Z","gw_timestamp":2206739755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4351, '2016-08-10 22:59:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:59:43.938713Z","gw_timestamp":2221103411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4338, '2016-08-10 22:58:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T22:58:10.542314Z","gw_timestamp":2127741531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjI1MDA0MzOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4364, '2016-08-10 23:01:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:17.273692Z","gw_timestamp":2314466539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4370, '2016-08-10 23:02:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:00.352443Z","gw_timestamp":2357556563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4372, '2016-08-10 23:02:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:14.713097Z","gw_timestamp":2371920211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzOvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4374, '2016-08-10 23:02:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:29.086951Z","gw_timestamp":2386284075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzOymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4376, '2016-08-10 23:02:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:43.446332Z","gw_timestamp":2400647731,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4378, '2016-08-10 23:03:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:57.810419Z","gw_timestamp":2415010443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NTAxMjI1MDA0MzOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4384, '2016-08-10 23:03:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:40.903329Z","gw_timestamp":2458101507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4386, '2016-08-10 23:03:44', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":727,"f_cnt_down":1309,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:03:43.004973Z","gw_timestamp":1204462828,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjIwMDA0NjUOUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4412, '2016-08-10 23:06:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:47.626821Z","gw_timestamp":2644826195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4414, '2016-08-10 23:07:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:02.000351Z","gw_timestamp":2659189331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwMTAxMjI1MDA0MzOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4416, '2016-08-10 23:07:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:23.524228Z","gw_timestamp":2680734811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4418, '2016-08-10 23:07:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:37.889811Z","gw_timestamp":2695097427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4420, '2016-08-10 23:08:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:52.252707Z","gw_timestamp":2709461187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3ODAxMjI1MDA0MzOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4353, '2016-08-10 23:00:01', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1288,"f_cnt_down":2092,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T22:59:59.302487Z","gw_timestamp":980760228,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjIwMDA0NTIMAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4367, '2016-08-10 23:01:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:38.815572Z","gw_timestamp":2336012011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzOyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4369, '2016-08-10 23:02:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:53.166819Z","gw_timestamp":2350375459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzOzKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4371, '2016-08-10 23:02:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:07.551421Z","gw_timestamp":2364738387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4373, '2016-08-10 23:02:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:21.912367Z","gw_timestamp":2379102035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4375, '2016-08-10 23:02:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:36.264825Z","gw_timestamp":2393465795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4377, '2016-08-10 23:03:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:02:50.621947Z","gw_timestamp":2407828931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzO0Sw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4379, '2016-08-10 23:03:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:04.986456Z","gw_timestamp":2422192267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4381, '2016-08-10 23:03:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:19.357449Z","gw_timestamp":2436556131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzOyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4383, '2016-08-10 23:03:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:33.718958Z","gw_timestamp":2450919579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NzAxMjI1MDA0MzOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4385, '2016-08-10 23:03:44', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":726,"f_cnt_down":1308,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:38.936785Z","gw_timestamp":4135261468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjIwMDA0NjUOUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4387, '2016-08-10 23:03:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:48.105323Z","gw_timestamp":2465283339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4389, '2016-08-10 23:04:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:02.449148Z","gw_timestamp":2479646987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4391, '2016-08-10 23:04:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:16.803522Z","gw_timestamp":2494010643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NjAxMjI1MDA0MzOxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4365, '2016-08-10 23:01:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:24.44932Z","gw_timestamp":2321648363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4395, '2016-08-10 23:04:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:45.533084Z","gw_timestamp":2522738059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4MjAxMjI1MDA0MzOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4397, '2016-08-10 23:05:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:59.893328Z","gw_timestamp":2537101811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4399, '2016-08-10 23:05:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:14.263566Z","gw_timestamp":2551464427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4401, '2016-08-10 23:05:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:28.624081Z","gw_timestamp":2565828187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4403, '2016-08-10 23:05:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:42.993082Z","gw_timestamp":2580191843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4405, '2016-08-10 23:06:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:57.343451Z","gw_timestamp":2594554659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4407, '2016-08-10 23:06:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:11.710708Z","gw_timestamp":2608917163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0MzOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4409, '2016-08-10 23:06:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:26.081956Z","gw_timestamp":2623281035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4411, '2016-08-10 23:06:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:40.442209Z","gw_timestamp":2637644579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4441, '2016-08-10 23:10:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:08.711595Z","gw_timestamp":2845913291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4443, '2016-08-10 23:10:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:23.075832Z","gw_timestamp":2860276947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4445, '2016-08-10 23:10:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:37.433592Z","gw_timestamp":2874640603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NzAxMjI1MDA0MzKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4447, '2016-08-10 23:11:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:51.828744Z","gw_timestamp":2889003315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4368, '2016-08-10 23:01:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:01:45.993197Z","gw_timestamp":2343193843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzOvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4380, '2016-08-10 23:03:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:12.165826Z","gw_timestamp":2429374099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4382, '2016-08-10 23:03:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:26.534072Z","gw_timestamp":2443737755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4388, '2016-08-10 23:04:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:03:55.256562Z","gw_timestamp":2472465163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4390, '2016-08-10 23:04:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:09.634958Z","gw_timestamp":2486828819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4392, '2016-08-10 23:04:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:23.995324Z","gw_timestamp":2501192571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4394, '2016-08-10 23:04:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:38.361505Z","gw_timestamp":2515556331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI1MDA0MzOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4396, '2016-08-10 23:05:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:52.713695Z","gw_timestamp":2529919883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4398, '2016-08-10 23:05:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:07.083952Z","gw_timestamp":2544283019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4400, '2016-08-10 23:05:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:21.438191Z","gw_timestamp":2558646363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4402, '2016-08-10 23:05:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:35.812455Z","gw_timestamp":2573010115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4404, '2016-08-10 23:05:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:05:50.1747Z","gw_timestamp":2587372939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4406, '2016-08-10 23:06:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:04.540546Z","gw_timestamp":2601735859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4408, '2016-08-10 23:06:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:18.892599Z","gw_timestamp":2616099203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4393, '2016-08-10 23:04:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:04:31.171826Z","gw_timestamp":2508374403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4413, '2016-08-10 23:07:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:54.815447Z","gw_timestamp":2652007299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4415, '2016-08-10 23:07:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:16.341325Z","gw_timestamp":2673552987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4417, '2016-08-10 23:07:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:30.712715Z","gw_timestamp":2687916227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzOyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4419, '2016-08-10 23:07:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:45.079956Z","gw_timestamp":2702279355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4MDAxMjI1MDA0MzOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4421, '2016-08-10 23:08:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:07:59.450334Z","gw_timestamp":2716643011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzOyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4423, '2016-08-10 23:08:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:13.799719Z","gw_timestamp":2731006659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4425, '2016-08-10 23:08:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:20.985063Z","gw_timestamp":2738187755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4427, '2016-08-10 23:08:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:35.360483Z","gw_timestamp":2752551307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4429, '2016-08-10 23:08:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:49.70286Z","gw_timestamp":2766914867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4431, '2016-08-10 23:09:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:04.071962Z","gw_timestamp":2781278723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4433, '2016-08-10 23:09:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:18.435219Z","gw_timestamp":2795641651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzKyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4435, '2016-08-10 23:09:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:32.799403Z","gw_timestamp":2810004987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NDAxMjI1MDA0MzKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4437, '2016-08-10 23:09:49', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":805,"f_cnt_down":1462,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:09:42.401704Z","gw_timestamp":1563859740,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ3NjAxMjMyMDA0MjMLwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4410, '2016-08-10 23:06:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:06:33.261589Z","gw_timestamp":2630462859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4424, '2016-08-10 23:08:23', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":811,"f_cnt_down":1510,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:08:19.733522Z","gw_timestamp":1481191516,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjE5MDA0NjEIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4426, '2016-08-10 23:08:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:28.169101Z","gw_timestamp":2745369275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4428, '2016-08-10 23:08:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:42.526962Z","gw_timestamp":2759733139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4430, '2016-08-10 23:09:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:56.896209Z","gw_timestamp":2774096795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4432, '2016-08-10 23:09:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:11.261591Z","gw_timestamp":2788460547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4434, '2016-08-10 23:09:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:25.630091Z","gw_timestamp":2802823059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI1MDA0MzKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4436, '2016-08-10 23:09:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:40.012615Z","gw_timestamp":2817186819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzKvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4438, '2016-08-10 23:09:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:47.156719Z","gw_timestamp":2824368747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4440, '2016-08-10 23:10:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:01.530661Z","gw_timestamp":2838731667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4442, '2016-08-10 23:10:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:15.899433Z","gw_timestamp":2853095123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4444, '2016-08-10 23:10:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:30.271724Z","gw_timestamp":2867458771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4446, '2016-08-10 23:10:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:44.614058Z","gw_timestamp":2881821907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4448, '2016-08-10 23:11:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:10:58.982094Z","gw_timestamp":2896185251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4422, '2016-08-10 23:08:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:08:06.61684Z","gw_timestamp":2723824939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4450, '2016-08-10 23:11:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:13.338336Z","gw_timestamp":2910548907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzKyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4452, '2016-08-10 23:11:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:27.711592Z","gw_timestamp":2924912555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4454, '2016-08-10 23:11:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:42.085187Z","gw_timestamp":2939275171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4456, '2016-08-10 23:12:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:56.425075Z","gw_timestamp":2953639035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzKuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4458, '2016-08-10 23:12:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:10.801352Z","gw_timestamp":2968002579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4460, '2016-08-10 23:12:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:25.160724Z","gw_timestamp":2982365403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4462, '2016-08-10 23:12:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:39.51997Z","gw_timestamp":2996727907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NTAxMjI1MDA0MzKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4464, '2016-08-10 23:13:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:53.880723Z","gw_timestamp":3011091771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzKu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4466, '2016-08-10 23:13:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:08.26173Z","gw_timestamp":3025455531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4468, '2016-08-10 23:13:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:29.78634Z","gw_timestamp":3046999971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4470, '2016-08-10 23:13:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:44.161603Z","gw_timestamp":3061363723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4472, '2016-08-10 23:14:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:58.540242Z","gw_timestamp":3075726963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0MzKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4474, '2016-08-10 23:14:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:12.878232Z","gw_timestamp":3090089995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MzAxMjI1MDA0MzKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4439, '2016-08-10 23:10:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:09:54.345617Z","gw_timestamp":2831550571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4463, '2016-08-10 23:12:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:46.695595Z","gw_timestamp":3003909947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4465, '2016-08-10 23:13:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:01.071934Z","gw_timestamp":3018273803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4467, '2016-08-10 23:13:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:15.426096Z","gw_timestamp":3032637043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4469, '2016-08-10 23:13:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:36.976231Z","gw_timestamp":3054181899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzKyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4471, '2016-08-10 23:14:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:13:51.331356Z","gw_timestamp":3068545659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI1MDA0MzKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4473, '2016-08-10 23:14:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:05.693716Z","gw_timestamp":3082908267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzKy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4475, '2016-08-10 23:14:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:20.059007Z","gw_timestamp":3097271923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI1MDA0MzKxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4477, '2016-08-10 23:14:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:34.438322Z","gw_timestamp":3111635579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4479, '2016-08-10 23:14:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:48.813968Z","gw_timestamp":3125999435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4481, '2016-08-10 23:15:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:03.183178Z","gw_timestamp":3140362987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4483, '2016-08-10 23:15:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:10.365402Z","gw_timestamp":3147544819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzKumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4485, '2016-08-10 23:15:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:24.735945Z","gw_timestamp":3161908467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4487, '2016-08-10 23:15:40', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1290,"f_cnt_down":2094,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:15:34.800854Z","gw_timestamp":1916259068,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjE5MDA0NTIIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4449, '2016-08-10 23:11:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:06.164847Z","gw_timestamp":2903366971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4451, '2016-08-10 23:11:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:20.526975Z","gw_timestamp":2917730723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4453, '2016-08-10 23:11:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:34.893222Z","gw_timestamp":2932093963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4455, '2016-08-10 23:11:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:11:49.253464Z","gw_timestamp":2946457203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4457, '2016-08-10 23:12:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:03.611703Z","gw_timestamp":2960820859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4459, '2016-08-10 23:12:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:17.977097Z","gw_timestamp":2975183987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzKyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4461, '2016-08-10 23:12:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:12:32.363717Z","gw_timestamp":2989546707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI1MDA0MzKy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4491, '2016-08-10 23:16:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:00.663039Z","gw_timestamp":3197816875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4493, '2016-08-10 23:16:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:15.03397Z","gw_timestamp":3212179803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4523, '2016-08-10 23:19:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:50.574669Z","gw_timestamp":3427630963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4525, '2016-08-10 23:20:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:04.933524Z","gw_timestamp":3441994515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4527, '2016-08-10 23:20:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:19.31131Z","gw_timestamp":3456358275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGtWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4529, '2016-08-10 23:20:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:33.667162Z","gw_timestamp":3470720987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI1MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4531, '2016-08-10 23:20:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:48.02066Z","gw_timestamp":3485084643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4476, '2016-08-10 23:14:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:27.252094Z","gw_timestamp":3104453747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzKvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4480, '2016-08-10 23:15:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:55.989952Z","gw_timestamp":3133181163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzKxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4482, '2016-08-10 23:15:12', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1289,"f_cnt_down":2093,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:15:10.118516Z","gw_timestamp":1891576716,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:58:06.050369Z","gw_timestamp":527407756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjE5MDA0NTIIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4484, '2016-08-10 23:15:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:17.542989Z","gw_timestamp":3154726747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4486, '2016-08-10 23:15:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:31.917174Z","gw_timestamp":3169090403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4516, '2016-08-10 23:19:02', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":727,"f_cnt_down":1310,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:18:53.779305Z","gw_timestamp":2115237620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:01:49.711178Z","gw_timestamp":751068564,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjIwMDA0NjMKUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4518, '2016-08-10 23:19:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:07.472176Z","gw_timestamp":3384540835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxOTAxMjI1MDA0MzGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4520, '2016-08-10 23:19:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:21.843328Z","gw_timestamp":3398904595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4522, '2016-08-10 23:19:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:43.403713Z","gw_timestamp":3420449763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4524, '2016-08-10 23:20:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:57.757989Z","gw_timestamp":3434812691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4526, '2016-08-10 23:20:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:12.119286Z","gw_timestamp":3449176443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4528, '2016-08-10 23:20:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:26.477534Z","gw_timestamp":3463539787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4542, '2016-08-10 23:22:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:14.203284Z","gw_timestamp":3571266355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNTAxMjI1MDA0MzGz6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4478, '2016-08-10 23:14:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:14:41.623531Z","gw_timestamp":3118817507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzKyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4488, '2016-08-10 23:15:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:39.119668Z","gw_timestamp":3176272331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0MzKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4490, '2016-08-10 23:16:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:53.472821Z","gw_timestamp":3190634843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4492, '2016-08-10 23:16:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:07.838247Z","gw_timestamp":3204998707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4494, '2016-08-10 23:16:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:22.220959Z","gw_timestamp":3219361419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4496, '2016-08-10 23:16:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:36.586114Z","gw_timestamp":3233724035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4498, '2016-08-10 23:16:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:50.959803Z","gw_timestamp":3248087787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4500, '2016-08-10 23:17:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:05.332099Z","gw_timestamp":3262451443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4502, '2016-08-10 23:17:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:19.696539Z","gw_timestamp":3276814059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI1MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4504, '2016-08-10 23:17:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:34.066954Z","gw_timestamp":3291177715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4506, '2016-08-10 23:17:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:48.443396Z","gw_timestamp":3305541467,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4508, '2016-08-10 23:18:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:02.812295Z","gw_timestamp":3319904603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4510, '2016-08-10 23:18:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:17.181209Z","gw_timestamp":3334267835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4512, '2016-08-10 23:18:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:31.551679Z","gw_timestamp":3348631603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4489, '2016-08-10 23:15:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:15:46.295232Z","gw_timestamp":3183453747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzK0aw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4495, '2016-08-10 23:16:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:29.398901Z","gw_timestamp":3226542619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4497, '2016-08-10 23:16:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:43.764275Z","gw_timestamp":3240905859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4499, '2016-08-10 23:17:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:16:58.139762Z","gw_timestamp":3255269619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwNTAxMjI1MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4501, '2016-08-10 23:17:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:12.506449Z","gw_timestamp":3269632747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI1MDA0MzGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4503, '2016-08-10 23:17:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:26.880269Z","gw_timestamp":3283995987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4505, '2016-08-10 23:17:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:41.252314Z","gw_timestamp":3298359747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4507, '2016-08-10 23:18:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:17:55.625626Z","gw_timestamp":3312723299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI1MDA0MzGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4509, '2016-08-10 23:18:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:09.991999Z","gw_timestamp":3327086115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4511, '2016-08-10 23:18:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:24.35648Z","gw_timestamp":3341449667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4513, '2016-08-10 23:18:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:38.737044Z","gw_timestamp":3355813419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4515, '2016-08-10 23:18:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:53.132593Z","gw_timestamp":3370177179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4517, '2016-08-10 23:19:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:00.295945Z","gw_timestamp":3377359011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI1MDA0MzGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4519, '2016-08-10 23:19:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:14.665097Z","gw_timestamp":3391722667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4514, '2016-08-10 23:18:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:18:45.922515Z","gw_timestamp":3362995355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4530, '2016-08-10 23:20:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:40.838895Z","gw_timestamp":3477902923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4532, '2016-08-10 23:21:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:20:55.215018Z","gw_timestamp":3492266571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4534, '2016-08-10 23:21:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:09.573285Z","gw_timestamp":3506630227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4536, '2016-08-10 23:21:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:23.934776Z","gw_timestamp":3520993883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4538, '2016-08-10 23:21:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:45.484606Z","gw_timestamp":3542539467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4540, '2016-08-10 23:22:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:59.847915Z","gw_timestamp":3556903323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4546, '2016-08-10 23:22:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:42.933484Z","gw_timestamp":3599993355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4548, '2016-08-10 23:23:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:57.304769Z","gw_timestamp":3614356795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4550, '2016-08-10 23:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:11.67956Z","gw_timestamp":3628720667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5ODAxMjI1MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4552, '2016-08-10 23:23:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:26.022417Z","gw_timestamp":3643084419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4554, '2016-08-10 23:23:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:33.205019Z","gw_timestamp":3650266243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4556, '2016-08-10 23:23:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:47.594921Z","gw_timestamp":3664629795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI1MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4558, '2016-08-10 23:24:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:01.957546Z","gw_timestamp":3678993659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4521, '2016-08-10 23:19:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:19:36.208038Z","gw_timestamp":3413268251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI1MDA0MzGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4535, '2016-08-10 23:21:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:16.750915Z","gw_timestamp":3513811843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4537, '2016-08-10 23:21:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:38.294765Z","gw_timestamp":3535357643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4539, '2016-08-10 23:22:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:52.66725Z","gw_timestamp":3549721403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzGyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4541, '2016-08-10 23:22:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:07.045421Z","gw_timestamp":3564085051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI1MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4571, '2016-08-10 23:25:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:28.12544Z","gw_timestamp":3765172971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzGzuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4573, '2016-08-10 23:25:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:49.664041Z","gw_timestamp":3786718355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4575, '2016-08-10 23:26:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:04.037563Z","gw_timestamp":3801081907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4577, '2016-08-10 23:26:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:18.382544Z","gw_timestamp":3815445659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4579, '2016-08-10 23:26:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:32.753915Z","gw_timestamp":3829809419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4581, '2016-08-10 23:26:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:47.112175Z","gw_timestamp":3844173179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4583, '2016-08-10 23:27:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:01.469047Z","gw_timestamp":3858535683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI1MDA0MzGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4585, '2016-08-10 23:27:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:15.841205Z","gw_timestamp":3872899451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4587, '2016-08-10 23:27:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:30.221177Z","gw_timestamp":3887263203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4533, '2016-08-10 23:21:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:21:02.385656Z","gw_timestamp":3499448395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4543, '2016-08-10 23:22:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:21.407925Z","gw_timestamp":3578447771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4545, '2016-08-10 23:22:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:35.756916Z","gw_timestamp":3592811427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4547, '2016-08-10 23:22:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:50.115149Z","gw_timestamp":3607175075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4549, '2016-08-10 23:23:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:04.484934Z","gw_timestamp":3621538835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NjAxMjI1MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4551, '2016-08-10 23:23:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:18.850666Z","gw_timestamp":3635902595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzGumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4553, '2016-08-10 23:23:35', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":812,"f_cnt_down":1511,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:23:30.502357Z","gw_timestamp":2391960812,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwNTAxMjE5MDA0NjEIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4555, '2016-08-10 23:23:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:40.382673Z","gw_timestamp":3657447859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MjAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4557, '2016-08-10 23:24:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:23:54.746922Z","gw_timestamp":3671811835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4559, '2016-08-10 23:24:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:09.125142Z","gw_timestamp":3686175379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4561, '2016-08-10 23:24:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:23.47742Z","gw_timestamp":3700539139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4563, '2016-08-10 23:24:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:37.858259Z","gw_timestamp":3714901859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4565, '2016-08-10 23:24:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:52.203895Z","gw_timestamp":3729265715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4567, '2016-08-10 23:25:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:59.388677Z","gw_timestamp":3736447435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4544, '2016-08-10 23:22:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:22:28.566284Z","gw_timestamp":3585629491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4562, '2016-08-10 23:24:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:30.656045Z","gw_timestamp":3707720755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4564, '2016-08-10 23:24:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:45.02829Z","gw_timestamp":3722083683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4566, '2016-08-10 23:25:00', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":806,"f_cnt_down":1463,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:24:53.242235Z","gw_timestamp":2474700732,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:07:49.174129Z","gw_timestamp":1110531516,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwNDAxMjMyMDA0MjQY8Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4568, '2016-08-10 23:25:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:06.573297Z","gw_timestamp":3743629163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MDAxMjI1MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4570, '2016-08-10 23:25:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:20.950753Z","gw_timestamp":3757991883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwMzAxMjI1MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4572, '2016-08-10 23:25:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:42.479576Z","gw_timestamp":3779536531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4574, '2016-08-10 23:26:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:56.836926Z","gw_timestamp":3793900075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI1MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4576, '2016-08-10 23:26:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:11.201431Z","gw_timestamp":3808263627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4578, '2016-08-10 23:26:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:25.566694Z","gw_timestamp":3822627595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4580, '2016-08-10 23:26:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:39.952538Z","gw_timestamp":3836991251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4582, '2016-08-10 23:27:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:26:54.307937Z","gw_timestamp":3851354587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI1MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4584, '2016-08-10 23:27:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:08.653063Z","gw_timestamp":3865717723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4560, '2016-08-10 23:24:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:24:16.30418Z","gw_timestamp":3693357203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4588, '2016-08-10 23:27:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:44.563127Z","gw_timestamp":3901626963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4590, '2016-08-10 23:28:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:58.936555Z","gw_timestamp":3915990611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4592, '2016-08-10 23:28:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:13.2878Z","gw_timestamp":3930354267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4594, '2016-08-10 23:28:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:27.661046Z","gw_timestamp":3944718027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4596, '2016-08-10 23:28:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:42.0243Z","gw_timestamp":3959081683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4598, '2016-08-10 23:29:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:56.388555Z","gw_timestamp":3973445435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4600, '2016-08-10 23:29:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:10.788084Z","gw_timestamp":3987809091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4602, '2016-08-10 23:29:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:25.106045Z","gw_timestamp":4002171907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI1MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4604, '2016-08-10 23:29:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:46.653989Z","gw_timestamp":4023717083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzGvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4606, '2016-08-10 23:30:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:01.015593Z","gw_timestamp":4038080011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4608, '2016-08-10 23:30:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:15.383561Z","gw_timestamp":4052442723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4610, '2016-08-10 23:30:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:29.741808Z","gw_timestamp":4066806379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4612, '2016-08-10 23:30:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:44.114042Z","gw_timestamp":4081170131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI1MDA0MzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4569, '2016-08-10 23:25:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:25:13.758227Z","gw_timestamp":3750810779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4591, '2016-08-10 23:28:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:06.10618Z","gw_timestamp":3923172547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4621, '2016-08-10 23:31:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:41.567184Z","gw_timestamp":4138624755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4OTAxMjI1MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4623, '2016-08-10 23:32:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:55.922432Z","gw_timestamp":4152988515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4625, '2016-08-10 23:32:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:10.286684Z","gw_timestamp":4167352371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4627, '2016-08-10 23:32:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:24.650444Z","gw_timestamp":4181715923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4629, '2016-08-10 23:32:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:39.021437Z","gw_timestamp":4196079155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4631, '2016-08-10 23:33:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:53.382563Z","gw_timestamp":4210442291,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4633, '2016-08-10 23:33:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:07.737919Z","gw_timestamp":4224805947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4635, '2016-08-10 23:33:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:22.107068Z","gw_timestamp":4239169603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4637, '2016-08-10 23:33:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:36.471315Z","gw_timestamp":4253533467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4639, '2016-08-10 23:33:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:50.836567Z","gw_timestamp":4267897115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4641, '2016-08-10 23:34:06', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":728,"f_cnt_down":1311,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:34:04.551029Z","gw_timestamp":3026009804,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjIwMDA0NjMJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4643, '2016-08-10 23:34:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:05.18982Z","gw_timestamp":4282260771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4586, '2016-08-10 23:27:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:23.01916Z","gw_timestamp":3880081371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI1MDA0MzGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4616, '2016-08-10 23:31:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:05.651878Z","gw_timestamp":4102715515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4618, '2016-08-10 23:31:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:20.017315Z","gw_timestamp":4117079371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4620, '2016-08-10 23:31:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:34.373555Z","gw_timestamp":4131443131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4622, '2016-08-10 23:31:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:48.740813Z","gw_timestamp":4145806787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjI1MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4624, '2016-08-10 23:32:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:03.115656Z","gw_timestamp":4160170339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4626, '2016-08-10 23:32:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:17.465247Z","gw_timestamp":4174534099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4628, '2016-08-10 23:32:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:31.841186Z","gw_timestamp":4188897851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzGyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4630, '2016-08-10 23:32:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:32:46.193936Z","gw_timestamp":4203260467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4632, '2016-08-10 23:33:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:00.557183Z","gw_timestamp":4217624227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4NzAxMjI1MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4634, '2016-08-10 23:33:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:14.923412Z","gw_timestamp":4231987771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4636, '2016-08-10 23:33:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:29.300959Z","gw_timestamp":4246351531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI1MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4638, '2016-08-10 23:33:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:43.657195Z","gw_timestamp":4260715187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4640, '2016-08-10 23:34:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:33:58.022176Z","gw_timestamp":4275079051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzGyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4589, '2016-08-10 23:27:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:27:51.745801Z","gw_timestamp":3908808787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4593, '2016-08-10 23:28:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:20.507684Z","gw_timestamp":3937536099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4595, '2016-08-10 23:28:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:34.851957Z","gw_timestamp":3951899859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4597, '2016-08-10 23:28:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:28:49.20202Z","gw_timestamp":3966263403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4599, '2016-08-10 23:29:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:03.565165Z","gw_timestamp":3980627371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4601, '2016-08-10 23:29:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:17.927415Z","gw_timestamp":3994990811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4603, '2016-08-10 23:29:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:32.287685Z","gw_timestamp":4009353635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4605, '2016-08-10 23:30:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:29:53.830682Z","gw_timestamp":4030898179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4607, '2016-08-10 23:30:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:08.192934Z","gw_timestamp":4045261419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4609, '2016-08-10 23:30:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:22.59459Z","gw_timestamp":4059624555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4611, '2016-08-10 23:30:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:36.922431Z","gw_timestamp":4073988203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4613, '2016-08-10 23:30:53', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1291,"f_cnt_down":2095,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:30:45.621099Z","gw_timestamp":2827079772,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU4MzAxMjE5MDA0NTMIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4615, '2016-08-10 23:31:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:58.46926Z","gw_timestamp":4095533683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4617, '2016-08-10 23:31:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:12.848186Z","gw_timestamp":4109897443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4614, '2016-08-10 23:30:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:30:51.285673Z","gw_timestamp":4088351963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4644, '2016-08-10 23:34:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:12.378694Z","gw_timestamp":4289442491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4646, '2016-08-10 23:34:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:26.743819Z","gw_timestamp":8838955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4648, '2016-08-10 23:34:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:41.105191Z","gw_timestamp":23202819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4650, '2016-08-10 23:35:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:55.498593Z","gw_timestamp":37565531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4652, '2016-08-10 23:35:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:09.830818Z","gw_timestamp":51929083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4654, '2016-08-10 23:35:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:24.200819Z","gw_timestamp":66292843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4656, '2016-08-10 23:35:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:38.558053Z","gw_timestamp":80656491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4658, '2016-08-10 23:36:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:52.920572Z","gw_timestamp":95019419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4660, '2016-08-10 23:36:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:07.292339Z","gw_timestamp":109382867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4662, '2016-08-10 23:36:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:21.659222Z","gw_timestamp":123746627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4664, '2016-08-10 23:36:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:36.009146Z","gw_timestamp":138109963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI1MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4666, '2016-08-10 23:36:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:50.379446Z","gw_timestamp":152472163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4668, '2016-08-10 23:37:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:04.732016Z","gw_timestamp":166835715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4619, '2016-08-10 23:31:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:31:27.203204Z","gw_timestamp":4124261099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4675, '2016-08-10 23:38:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:55.006193Z","gw_timestamp":217107563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4677, '2016-08-10 23:38:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:09.376444Z","gw_timestamp":231471427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4679, '2016-08-10 23:38:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:23.733689Z","gw_timestamp":245834347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI1MDA0MzG0Ww==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4681, '2016-08-10 23:38:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:38.123315Z","gw_timestamp":260197899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4683, '2016-08-10 23:38:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:45.279576Z","gw_timestamp":267379619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4685, '2016-08-10 23:39:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:59.649096Z","gw_timestamp":281743283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4687, '2016-08-10 23:39:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:14.018561Z","gw_timestamp":296105891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4642, '2016-08-10 23:34:06', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":729,"f_cnt_down":1312,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:17:00.482954Z","gw_timestamp":1661840340,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjIwMDA0NjMJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4680, '2016-08-10 23:38:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:30.916319Z","gw_timestamp":253015971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4682, '2016-08-10 23:38:47', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":813,"f_cnt_down":1512,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:38:41.285369Z","gw_timestamp":3302744284,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjE5MDA0NjEIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4684, '2016-08-10 23:39:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:52.455196Z","gw_timestamp":274561347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4686, '2016-08-10 23:39:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:06.828837Z","gw_timestamp":288924371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4645, '2016-08-10 23:34:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:19.580343Z","gw_timestamp":1657235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4647, '2016-08-10 23:34:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:33.918442Z","gw_timestamp":16020995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4649, '2016-08-10 23:34:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:34:48.287695Z","gw_timestamp":30384539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4651, '2016-08-10 23:35:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:02.647075Z","gw_timestamp":44747363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4653, '2016-08-10 23:35:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:17.020188Z","gw_timestamp":59110907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4655, '2016-08-10 23:35:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:31.408719Z","gw_timestamp":73474771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4657, '2016-08-10 23:35:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:35:45.735696Z","gw_timestamp":87838427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4659, '2016-08-10 23:36:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:00.107076Z","gw_timestamp":102201147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4661, '2016-08-10 23:36:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:14.463808Z","gw_timestamp":116564803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4663, '2016-08-10 23:36:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:28.829701Z","gw_timestamp":130928451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NTAxMjI1MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4665, '2016-08-10 23:36:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:43.196831Z","gw_timestamp":145291067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4667, '2016-08-10 23:37:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:36:57.55207Z","gw_timestamp":159653787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4669, '2016-08-10 23:37:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:11.920538Z","gw_timestamp":174017539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4671, '2016-08-10 23:37:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:26.287568Z","gw_timestamp":188380675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4670, '2016-08-10 23:37:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:19.100941Z","gw_timestamp":181199259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4672, '2016-08-10 23:37:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:33.462324Z","gw_timestamp":195562083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4674, '2016-08-10 23:37:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:47.827569Z","gw_timestamp":209925739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4676, '2016-08-10 23:38:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:02.217978Z","gw_timestamp":224289499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4678, '2016-08-10 23:38:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:38:16.561077Z","gw_timestamp":238653147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4673, '2016-08-10 23:37:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:37:40.647951Z","gw_timestamp":202744019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4688, '2016-08-10 23:39:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:21.181833Z","gw_timestamp":303287715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4689, '2016-08-10 23:39:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:28.375667Z","gw_timestamp":310469643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4690, '2016-08-10 23:39:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:35.547079Z","gw_timestamp":317651371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NDAxMjI1MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4691, '2016-08-10 23:39:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:42.734838Z","gw_timestamp":324833299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4692, '2016-08-10 23:39:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:49.923528Z","gw_timestamp":332015235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI1MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4693, '2016-08-10 23:40:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:39:57.096951Z","gw_timestamp":339197059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4694, '2016-08-10 23:40:05', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":807,"f_cnt_down":1464,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:40:04.080761Z","gw_timestamp":3385539716,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxMjAxMjMxMDA0MjQJsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4695, '2016-08-10 23:40:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:04.285582Z","gw_timestamp":346378891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4696, '2016-08-10 23:40:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:11.465335Z","gw_timestamp":353560819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4697, '2016-08-10 23:40:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:18.6631Z","gw_timestamp":360742539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzGu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4698, '2016-08-10 23:40:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:25.827434Z","gw_timestamp":367924475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4699, '2016-08-10 23:40:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:33.004201Z","gw_timestamp":375106403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4700, '2016-08-10 23:40:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:40.193221Z","gw_timestamp":382288227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4701, '2016-08-10 23:40:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:47.36846Z","gw_timestamp":389470059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4703, '2016-08-10 23:41:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:01.761978Z","gw_timestamp":403833715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4705, '2016-08-10 23:41:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:16.099947Z","gw_timestamp":418197467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NzAxMjI1MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4707, '2016-08-10 23:41:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:30.479485Z","gw_timestamp":432560083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MTAxMjI1MDA0MzGy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4709, '2016-08-10 23:42:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:44.820449Z","gw_timestamp":446922795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4711, '2016-08-10 23:42:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:06.394827Z","gw_timestamp":468468283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4713, '2016-08-10 23:42:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:20.731719Z","gw_timestamp":482831515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4715, '2016-08-10 23:42:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:35.091343Z","gw_timestamp":497194651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4717, '2016-08-10 23:42:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:49.460214Z","gw_timestamp":511558307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4719, '2016-08-10 23:43:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:03.823459Z","gw_timestamp":525922275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4721, '2016-08-10 23:43:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:18.188698Z","gw_timestamp":540285715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4723, '2016-08-10 23:43:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:32.551969Z","gw_timestamp":554649475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4725, '2016-08-10 23:43:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:46.923522Z","gw_timestamp":569013227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4727, '2016-08-10 23:44:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:01.283983Z","gw_timestamp":583376883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4702, '2016-08-10 23:41:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:40:54.571197Z","gw_timestamp":396651779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4704, '2016-08-10 23:41:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:08.908339Z","gw_timestamp":411015539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4706, '2016-08-10 23:41:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:23.273838Z","gw_timestamp":425378779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMjAxMjI1MDA0MzGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4708, '2016-08-10 23:41:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:37.639832Z","gw_timestamp":439741283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4710, '2016-08-10 23:42:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:41:59.183093Z","gw_timestamp":461286563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzGuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4712, '2016-08-10 23:42:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:13.551091Z","gw_timestamp":475650211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4714, '2016-08-10 23:42:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:27.907326Z","gw_timestamp":490012827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4716, '2016-08-10 23:42:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:42.279587Z","gw_timestamp":504376579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzGu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4718, '2016-08-10 23:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:42:56.653197Z","gw_timestamp":518740339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4720, '2016-08-10 23:43:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:11.000083Z","gw_timestamp":533104099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI1MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4722, '2016-08-10 23:43:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:25.363103Z","gw_timestamp":547467651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4724, '2016-08-10 23:43:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:39.731715Z","gw_timestamp":561831403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4726, '2016-08-10 23:44:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:43:54.094954Z","gw_timestamp":576195059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4728, '2016-08-10 23:44:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:08.455145Z","gw_timestamp":590558819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4729, '2016-08-10 23:44:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:15.646841Z","gw_timestamp":597740539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4761, '2016-08-10 23:48:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:58.272477Z","gw_timestamp":820374891,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4763, '2016-08-10 23:48:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:12.652307Z","gw_timestamp":834737603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4765, '2016-08-10 23:48:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:26.998096Z","gw_timestamp":849101259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4767, '2016-08-10 23:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:41.366347Z","gw_timestamp":863464907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4769, '2016-08-10 23:49:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:55.718596Z","gw_timestamp":877828771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4771, '2016-08-10 23:49:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:10.088853Z","gw_timestamp":892192427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4773, '2016-08-10 23:49:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:17.268721Z","gw_timestamp":899374251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4775, '2016-08-10 23:49:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:31.632724Z","gw_timestamp":913738011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4777, '2016-08-10 23:49:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:45.993109Z","gw_timestamp":928101147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4779, '2016-08-10 23:50:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:07.544227Z","gw_timestamp":949646211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4781, '2016-08-10 23:50:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:21.912235Z","gw_timestamp":964009859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4783, '2016-08-10 23:50:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:36.261482Z","gw_timestamp":978373419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4785, '2016-08-10 23:50:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:50.634714Z","gw_timestamp":992737275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4730, '2016-08-10 23:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":3999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:22.819469Z","gw_timestamp":604922475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4734, '2016-08-10 23:45:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:51.551968Z","gw_timestamp":633649779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4736, '2016-08-10 23:45:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:05.906221Z","gw_timestamp":648013539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4738, '2016-08-10 23:45:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:20.282182Z","gw_timestamp":662377299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4740, '2016-08-10 23:45:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:34.639844Z","gw_timestamp":676741051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4742, '2016-08-10 23:45:58', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1292,"f_cnt_down":2096,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:28:52.375234Z","gw_timestamp":2373732620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU5OTAxMjE5MDA0NTIagQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4744, '2016-08-10 23:46:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:56.194423Z","gw_timestamp":698285491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4746, '2016-08-10 23:46:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:10.550221Z","gw_timestamp":712649043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI1MDA0MzCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4748, '2016-08-10 23:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:24.909227Z","gw_timestamp":727012803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4750, '2016-08-10 23:46:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:39.278476Z","gw_timestamp":741375523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4752, '2016-08-10 23:47:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:53.636848Z","gw_timestamp":755739275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4754, '2016-08-10 23:47:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:08.005221Z","gw_timestamp":770102931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4756, '2016-08-10 23:47:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:22.387732Z","gw_timestamp":784465747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4758, '2016-08-10 23:47:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:36.725604Z","gw_timestamp":798829403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4731, '2016-08-10 23:44:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:29.997082Z","gw_timestamp":612104299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4733, '2016-08-10 23:44:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:44.380861Z","gw_timestamp":626468059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4735, '2016-08-10 23:45:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:58.726576Z","gw_timestamp":640831707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzCymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4737, '2016-08-10 23:45:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:13.094944Z","gw_timestamp":655195371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4739, '2016-08-10 23:45:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:27.459462Z","gw_timestamp":669559123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4741, '2016-08-10 23:45:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:45:41.821468Z","gw_timestamp":683922779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4743, '2016-08-10 23:45:58', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1293,"f_cnt_down":2097,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:45:56.443263Z","gw_timestamp":3737902396,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU5OTAxMjE5MDA0NTIagQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4745, '2016-08-10 23:46:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:03.37035Z","gw_timestamp":705467219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4747, '2016-08-10 23:46:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:17.730961Z","gw_timestamp":719830867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI1MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4749, '2016-08-10 23:46:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:32.09066Z","gw_timestamp":734194107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4751, '2016-08-10 23:46:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:46:46.462216Z","gw_timestamp":748557451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4753, '2016-08-10 23:47:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:00.811585Z","gw_timestamp":762920995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4755, '2016-08-10 23:47:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:15.185477Z","gw_timestamp":777284547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4757, '2016-08-10 23:47:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:29.546974Z","gw_timestamp":791647475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4732, '2016-08-10 23:44:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:44:37.180716Z","gw_timestamp":619286123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4788, '2016-08-10 23:51:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:12.176969Z","gw_timestamp":1014282755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4790, '2016-08-10 23:51:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:26.539147Z","gw_timestamp":1028645371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4792, '2016-08-10 23:51:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:40.909232Z","gw_timestamp":1043009227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4794, '2016-08-10 23:52:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:55.266488Z","gw_timestamp":1057372779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4796, '2016-08-10 23:52:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:16.818363Z","gw_timestamp":1078917019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4798, '2016-08-10 23:52:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:31.180611Z","gw_timestamp":1093280147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4800, '2016-08-10 23:52:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:45.54286Z","gw_timestamp":1107643691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MTAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4802, '2016-08-10 23:53:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:59.925897Z","gw_timestamp":1122007347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4804, '2016-08-10 23:53:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:14.267073Z","gw_timestamp":1136371107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4806, '2016-08-10 23:53:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:28.62174Z","gw_timestamp":1150734763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NDAxMjI1MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4808, '2016-08-10 23:53:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:42.990987Z","gw_timestamp":1165098627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4810, '2016-08-10 23:53:53', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":814,"f_cnt_down":1513,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:13.043457Z","gw_timestamp":2849368140,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4NTAxMjE5MDA0NjAGoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4812, '2016-08-10 23:54:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:04.541113Z","gw_timestamp":1186644107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4759, '2016-08-10 23:47:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:43.912217Z","gw_timestamp":806011235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4817, '2016-08-10 23:54:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:40.447117Z","gw_timestamp":1222552299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4819, '2016-08-10 23:55:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:54.803362Z","gw_timestamp":1236916059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4887, '2016-08-11 00:03:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:03.158519Z","gw_timestamp":1725270611,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4889, '2016-08-11 00:03:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:17.526895Z","gw_timestamp":1739634475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4903, '2016-08-11 00:04:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:50.893411Z","gw_timestamp":1832998323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4905, '2016-08-11 00:05:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:05.247524Z","gw_timestamp":1847361147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4907, '2016-08-11 00:05:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:26.789265Z","gw_timestamp":1868905587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4909, '2016-08-11 00:05:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:41.149864Z","gw_timestamp":1883269347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4911, '2016-08-11 00:06:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:55.520637Z","gw_timestamp":1897633107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4913, '2016-08-11 00:06:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:09.883012Z","gw_timestamp":1911996131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4915, '2016-08-11 00:06:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:24.251468Z","gw_timestamp":1926359475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4917, '2016-08-11 00:06:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:38.615647Z","gw_timestamp":1940723027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4919, '2016-08-11 00:07:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:52.970895Z","gw_timestamp":1955086371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4760, '2016-08-10 23:47:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:47:51.103098Z","gw_timestamp":813193059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ4NzAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4762, '2016-08-10 23:48:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:05.457106Z","gw_timestamp":827556499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4764, '2016-08-10 23:48:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:19.80948Z","gw_timestamp":841919331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4766, '2016-08-10 23:48:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:34.180717Z","gw_timestamp":856283083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4768, '2016-08-10 23:48:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:48:48.540843Z","gw_timestamp":870646739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4770, '2016-08-10 23:49:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:02.90445Z","gw_timestamp":885010491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4772, '2016-08-10 23:49:18', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":729,"f_cnt_down":1313,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:49:15.323377Z","gw_timestamp":3936782612,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:32:11.255361Z","gw_timestamp":2572612748,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjIwMDA0NjIKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4774, '2016-08-10 23:49:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:24.448098Z","gw_timestamp":906556075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4776, '2016-08-10 23:49:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:38.829719Z","gw_timestamp":920919739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4778, '2016-08-10 23:50:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:49:53.183254Z","gw_timestamp":935282451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4780, '2016-08-10 23:50:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:14.723604Z","gw_timestamp":956828035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4782, '2016-08-10 23:50:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:29.103318Z","gw_timestamp":971191587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4784, '2016-08-10 23:50:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:43.454707Z","gw_timestamp":985555451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4786, '2016-08-10 23:51:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:50:57.807363Z","gw_timestamp":999919003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4816, '2016-08-10 23:54:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:33.264563Z","gw_timestamp":1215370891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4818, '2016-08-10 23:54:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:47.631727Z","gw_timestamp":1229734131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4820, '2016-08-10 23:55:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:02.009261Z","gw_timestamp":1244097883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4822, '2016-08-10 23:55:18', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":808,"f_cnt_down":1465,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-10T23:55:14.92058Z","gw_timestamp":1412700,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:26:35.885289Z","gw_timestamp":2932209972,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-3,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwNTAxMjMwMDA0MjULIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4824, '2016-08-10 23:55:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:23.531864Z","gw_timestamp":1265642427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4826, '2016-08-10 23:55:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:37.895496Z","gw_timestamp":1280005251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4828, '2016-08-10 23:56:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:52.261491Z","gw_timestamp":1294368907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI1MDA0MzCuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4830, '2016-08-10 23:56:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:06.623962Z","gw_timestamp":1308732563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4832, '2016-08-10 23:56:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:20.981997Z","gw_timestamp":1323096211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4834, '2016-08-10 23:56:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:35.357258Z","gw_timestamp":1337459971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4836, '2016-08-10 23:56:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:49.7125Z","gw_timestamp":1351823627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4838, '2016-08-10 23:57:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:04.086374Z","gw_timestamp":1366187387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4787, '2016-08-10 23:51:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:04.992985Z","gw_timestamp":1007100827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4789, '2016-08-10 23:51:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:19.373623Z","gw_timestamp":1021463851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4791, '2016-08-10 23:51:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:33.726608Z","gw_timestamp":1035827195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4793, '2016-08-10 23:51:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:51:48.084847Z","gw_timestamp":1050191059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4795, '2016-08-10 23:52:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:09.659037Z","gw_timestamp":1071735707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4797, '2016-08-10 23:52:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:23.998989Z","gw_timestamp":1086098315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4799, '2016-08-10 23:52:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:38.359234Z","gw_timestamp":1100462075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4MDAxMjI1MDA0MzCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4801, '2016-08-10 23:53:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:52:52.713603Z","gw_timestamp":1114825627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4803, '2016-08-10 23:53:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:07.08373Z","gw_timestamp":1129189379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4805, '2016-08-10 23:53:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:21.448116Z","gw_timestamp":1143552931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4807, '2016-08-10 23:53:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:35.825411Z","gw_timestamp":1157916795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4809, '2016-08-10 23:53:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:50.17161Z","gw_timestamp":1172280451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4811, '2016-08-10 23:54:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:53:57.359244Z","gw_timestamp":1179462283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4813, '2016-08-10 23:54:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:11.745097Z","gw_timestamp":1193826035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4814, '2016-08-10 23:54:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:18.900242Z","gw_timestamp":1201007763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwODAxMjI1MDA0MzCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4842, '2016-08-10 23:57:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:32.802359Z","gw_timestamp":1394914699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI1MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4844, '2016-08-10 23:57:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:47.193896Z","gw_timestamp":1409277827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4846, '2016-08-10 23:58:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:01.543873Z","gw_timestamp":1423641059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4848, '2016-08-10 23:58:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:23.095748Z","gw_timestamp":1445186539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4850, '2016-08-10 23:58:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:37.432992Z","gw_timestamp":1459549363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4852, '2016-08-10 23:59:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:51.80537Z","gw_timestamp":1473911979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4854, '2016-08-10 23:59:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:06.169908Z","gw_timestamp":1488275739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4856, '2016-08-10 23:59:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:20.52988Z","gw_timestamp":1502639491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4858, '2016-08-10 23:59:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:34.90342Z","gw_timestamp":1517003147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4860, '2016-08-10 23:59:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:49.263365Z","gw_timestamp":1531366803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4862, '2016-08-11 00:00:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:03.62163Z","gw_timestamp":1545730563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4864, '2016-08-11 00:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:17.977156Z","gw_timestamp":1560093067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4866, '2016-08-11 00:00:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:32.340251Z","gw_timestamp":1574456827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4815, '2016-08-10 23:54:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:54:26.092076Z","gw_timestamp":1208189691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4821, '2016-08-10 23:55:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:09.17761Z","gw_timestamp":1251279715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4823, '2016-08-10 23:55:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:16.358517Z","gw_timestamp":1258461123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4825, '2016-08-10 23:55:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:30.710494Z","gw_timestamp":1272823531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4827, '2016-08-10 23:55:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:45.074877Z","gw_timestamp":1287186979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjI1MDA0MzCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4829, '2016-08-10 23:56:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:55:59.44039Z","gw_timestamp":1301550731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4831, '2016-08-10 23:56:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:13.809372Z","gw_timestamp":1315914283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzCyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4833, '2016-08-10 23:56:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:28.17262Z","gw_timestamp":1330278043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4835, '2016-08-10 23:56:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:42.533864Z","gw_timestamp":1344641803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4837, '2016-08-10 23:57:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:56:56.928388Z","gw_timestamp":1359005451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4839, '2016-08-10 23:57:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:11.263368Z","gw_timestamp":1373369211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4841, '2016-08-10 23:57:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:25.622247Z","gw_timestamp":1387732763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4843, '2016-08-10 23:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:39.990262Z","gw_timestamp":1402096523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4845, '2016-08-10 23:58:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:54.357254Z","gw_timestamp":1416459235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4840, '2016-08-10 23:57:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:57:18.441996Z","gw_timestamp":1380551043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0MzCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4870, '2016-08-11 00:01:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:01.086025Z","gw_timestamp":1603183923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4872, '2016-08-11 00:01:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:08.254355Z","gw_timestamp":1610365235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4874, '2016-08-11 00:01:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:22.620637Z","gw_timestamp":1624728883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4876, '2016-08-11 00:01:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:36.978884Z","gw_timestamp":1639092539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4878, '2016-08-11 00:02:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:51.351349Z","gw_timestamp":1653455147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4880, '2016-08-11 00:02:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:12.894134Z","gw_timestamp":1674999699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4882, '2016-08-11 00:02:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:27.261648Z","gw_timestamp":1689362723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI1MDA0MzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4884, '2016-08-11 00:02:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:41.630138Z","gw_timestamp":1703725547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4886, '2016-08-11 00:03:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:55.98186Z","gw_timestamp":1718088883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4888, '2016-08-11 00:03:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:10.336667Z","gw_timestamp":1732452547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4890, '2016-08-11 00:03:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:24.699514Z","gw_timestamp":1746816195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4892, '2016-08-11 00:03:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:39.074895Z","gw_timestamp":1761179955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4894, '2016-08-11 00:03:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:53.438014Z","gw_timestamp":1775543603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4847, '2016-08-10 23:58:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:15.899127Z","gw_timestamp":1438004819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4849, '2016-08-10 23:58:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:30.260375Z","gw_timestamp":1452367747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4851, '2016-08-10 23:58:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:44.621881Z","gw_timestamp":1466730675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzCzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4853, '2016-08-10 23:59:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:58:58.982Z","gw_timestamp":1481094011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI1MDA0MzCyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4855, '2016-08-10 23:59:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:13.349188Z","gw_timestamp":1495457563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4857, '2016-08-10 23:59:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:27.716501Z","gw_timestamp":1509821107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4859, '2016-08-10 23:59:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:42.072744Z","gw_timestamp":1524184867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4861, '2016-08-11 00:00:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-10T23:59:56.437022Z","gw_timestamp":1538548627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4863, '2016-08-11 00:00:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:10.839495Z","gw_timestamp":1552911971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4865, '2016-08-11 00:00:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:25.170887Z","gw_timestamp":1567275107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4867, '2016-08-11 00:00:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:39.541148Z","gw_timestamp":1581638755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4869, '2016-08-11 00:01:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:53.89151Z","gw_timestamp":1596002411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4871, '2016-08-11 00:01:10', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1293,"f_cnt_down":2098,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:01:07.264434Z","gw_timestamp":353756732,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjE5MDA0NTII4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4873, '2016-08-11 00:01:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:15.458274Z","gw_timestamp":1617547059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4868, '2016-08-11 00:00:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:00:46.713501Z","gw_timestamp":1588820579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4898, '2016-08-11 00:04:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:22.172771Z","gw_timestamp":1804270915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4900, '2016-08-11 00:04:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:29.346128Z","gw_timestamp":1811452843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4902, '2016-08-11 00:04:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:43.702384Z","gw_timestamp":1825816603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4904, '2016-08-11 00:05:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:58.078013Z","gw_timestamp":1840179843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4906, '2016-08-11 00:05:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:12.430023Z","gw_timestamp":1854542659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzC0Kw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4908, '2016-08-11 00:05:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:33.972899Z","gw_timestamp":1876087515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4910, '2016-08-11 00:05:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:05:48.367483Z","gw_timestamp":1890451275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4912, '2016-08-11 00:06:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:02.709669Z","gw_timestamp":1904814827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4914, '2016-08-11 00:06:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:17.06578Z","gw_timestamp":1919177547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4916, '2016-08-11 00:06:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:31.427017Z","gw_timestamp":1933541307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4918, '2016-08-11 00:06:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:06:45.786272Z","gw_timestamp":1947904955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4970, '2016-08-11 00:12:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:44.870406Z","gw_timestamp":2306989331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4978, '2016-08-11 00:13:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:42.331112Z","gw_timestamp":2364443115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4875, '2016-08-11 00:01:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:29.797029Z","gw_timestamp":1631910715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4877, '2016-08-11 00:01:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:01:44.169767Z","gw_timestamp":1646273635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4879, '2016-08-11 00:02:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:05.704575Z","gw_timestamp":1667817979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4881, '2016-08-11 00:02:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:20.069764Z","gw_timestamp":1682181523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI1MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4883, '2016-08-11 00:02:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:34.431007Z","gw_timestamp":1696544243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4885, '2016-08-11 00:02:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:02:48.802193Z","gw_timestamp":1710907059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4891, '2016-08-11 00:03:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:31.901269Z","gw_timestamp":1753997923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4893, '2016-08-11 00:03:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:03:46.253387Z","gw_timestamp":1768361675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4895, '2016-08-11 00:04:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:00.607638Z","gw_timestamp":1782725539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4897, '2016-08-11 00:04:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:14.980132Z","gw_timestamp":1797088979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4899, '2016-08-11 00:04:31', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":730,"f_cnt_down":1314,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:04:26.097903Z","gw_timestamp":552590300,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjIwMDA0NjEIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4901, '2016-08-11 00:04:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:36.517768Z","gw_timestamp":1818634779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4923, '2016-08-11 00:07:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:21.705401Z","gw_timestamp":1983813259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4939, '2016-08-11 00:09:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:09.431816Z","gw_timestamp":2091540035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4896, '2016-08-11 00:04:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:04:07.800522Z","gw_timestamp":1789907259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4920, '2016-08-11 00:07:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:00.157525Z","gw_timestamp":1962267675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4922, '2016-08-11 00:07:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:14.545071Z","gw_timestamp":1976631427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI1MDA0MzCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4924, '2016-08-11 00:07:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:28.883152Z","gw_timestamp":1990995083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI1MDA0MzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4926, '2016-08-11 00:07:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:43.242401Z","gw_timestamp":2005357907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4928, '2016-08-11 00:08:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:57.61363Z","gw_timestamp":2019721451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4930, '2016-08-11 00:08:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:11.99217Z","gw_timestamp":2034085115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4932, '2016-08-11 00:08:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:26.335276Z","gw_timestamp":2048448867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MzAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4934, '2016-08-11 00:08:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:40.701392Z","gw_timestamp":2062812523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4936, '2016-08-11 00:09:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:55.064823Z","gw_timestamp":2077176275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4938, '2016-08-11 00:09:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:02.266292Z","gw_timestamp":2084358003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4940, '2016-08-11 00:09:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:16.606653Z","gw_timestamp":2098721763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI1MDA0MzCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4942, '2016-08-11 00:09:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:30.972886Z","gw_timestamp":2113085523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4944, '2016-08-11 00:09:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:45.338408Z","gw_timestamp":2127449171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4921, '2016-08-11 00:07:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:07.340137Z","gw_timestamp":1969449499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzOTAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4925, '2016-08-11 00:07:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:36.055655Z","gw_timestamp":1998176075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4927, '2016-08-11 00:07:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:07:50.449291Z","gw_timestamp":2012539523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4929, '2016-08-11 00:08:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:04.791403Z","gw_timestamp":2026903387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4931, '2016-08-11 00:08:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:19.155649Z","gw_timestamp":2041267035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4933, '2016-08-11 00:08:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:33.514757Z","gw_timestamp":2055630699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4935, '2016-08-11 00:08:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:08:47.903287Z","gw_timestamp":2069994355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4937, '2016-08-11 00:09:04', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":815,"f_cnt_down":1514,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:09:02.857971Z","gw_timestamp":829350508,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:40:23.82273Z","gw_timestamp":3760147412,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4NTAxMjE5MDA0NTkHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4943, '2016-08-11 00:09:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:38.158527Z","gw_timestamp":2120267443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4973, '2016-08-11 00:13:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:06.42011Z","gw_timestamp":2328534803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4975, '2016-08-11 00:13:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:20.785142Z","gw_timestamp":2342898355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4977, '2016-08-11 00:13:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:35.14253Z","gw_timestamp":2357261595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4983, '2016-08-11 00:14:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:18.259539Z","gw_timestamp":2400351099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4941, '2016-08-11 00:09:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:23.790096Z","gw_timestamp":2105903491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4945, '2016-08-11 00:10:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:52.524765Z","gw_timestamp":2134631003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4947, '2016-08-11 00:10:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:06.883033Z","gw_timestamp":2148994131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4949, '2016-08-11 00:10:27', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":809,"f_cnt_down":1466,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:10:25.760745Z","gw_timestamp":912253324,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5NDAxMjI5MDA0MjUjgg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4951, '2016-08-11 00:10:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:28.422901Z","gw_timestamp":2170538259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4953, '2016-08-11 00:10:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:42.784601Z","gw_timestamp":2184901915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4955, '2016-08-11 00:11:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:57.145527Z","gw_timestamp":2199264523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4957, '2016-08-11 00:11:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:11.513774Z","gw_timestamp":2213627243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4959, '2016-08-11 00:11:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:25.871962Z","gw_timestamp":2227991107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4961, '2016-08-11 00:11:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:40.249554Z","gw_timestamp":2242354763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4963, '2016-08-11 00:12:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:54.605481Z","gw_timestamp":2256717475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4NTAxMjI1MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4965, '2016-08-11 00:12:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:08.96878Z","gw_timestamp":2271081027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4967, '2016-08-11 00:12:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:23.328157Z","gw_timestamp":2285444883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4969, '2016-08-11 00:12:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:37.69169Z","gw_timestamp":2299807707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4946, '2016-08-11 00:10:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:09:59.709676Z","gw_timestamp":2141813035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4948, '2016-08-11 00:10:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:14.063641Z","gw_timestamp":2156175643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NzAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4950, '2016-08-11 00:10:30', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":810,"f_cnt_down":1467,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:41:46.725513Z","gw_timestamp":3843050196,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5NDAxMjI5MDA0MjUjgg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4952, '2016-08-11 00:10:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:35.608911Z","gw_timestamp":2177720083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4954, '2016-08-11 00:10:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:10:49.995419Z","gw_timestamp":2192083331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4956, '2016-08-11 00:11:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:04.335079Z","gw_timestamp":2206445731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4958, '2016-08-11 00:11:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:18.696659Z","gw_timestamp":2220809275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4960, '2016-08-11 00:11:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:33.06365Z","gw_timestamp":2235172931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4962, '2016-08-11 00:11:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:11:47.413912Z","gw_timestamp":2249535963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4964, '2016-08-11 00:12:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:01.808414Z","gw_timestamp":2263899403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MTAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4966, '2016-08-11 00:12:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:16.179872Z","gw_timestamp":2278263059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4968, '2016-08-11 00:12:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:30.505785Z","gw_timestamp":2292626611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4972, '2016-08-11 00:13:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:59.237287Z","gw_timestamp":2321353091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4974, '2016-08-11 00:13:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:13.597539Z","gw_timestamp":2335716843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI1MDA0MzCyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4971, '2016-08-11 00:12:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:12:52.052663Z","gw_timestamp":2314171259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4979, '2016-08-11 00:13:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:49.519859Z","gw_timestamp":2371625035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4981, '2016-08-11 00:14:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:03.866887Z","gw_timestamp":2385988491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4987, '2016-08-11 00:15:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:54.138551Z","gw_timestamp":2436259611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4989, '2016-08-11 00:15:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:08.528057Z","gw_timestamp":2450622219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4991, '2016-08-11 00:15:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:22.871042Z","gw_timestamp":2464985979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4993, '2016-08-11 00:15:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:37.237284Z","gw_timestamp":2479349739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4995, '2016-08-11 00:15:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:51.602659Z","gw_timestamp":2493712555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5009, '2016-08-11 00:17:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:32.136417Z","gw_timestamp":2594256051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5011, '2016-08-11 00:17:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:46.503912Z","gw_timestamp":2608618979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5013, '2016-08-11 00:18:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:00.863306Z","gw_timestamp":2622982739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5015, '2016-08-11 00:18:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:15.227435Z","gw_timestamp":2637346395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5017, '2016-08-11 00:18:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:29.589551Z","gw_timestamp":2651709835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5019, '2016-08-11 00:18:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:43.948034Z","gw_timestamp":2666072659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4976, '2016-08-11 00:13:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:27.963773Z","gw_timestamp":2350080395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4998, '2016-08-11 00:16:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:13.13341Z","gw_timestamp":2515258043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5000, '2016-08-11 00:16:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:20.324612Z","gw_timestamp":2522439867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5002, '2016-08-11 00:16:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:41.872292Z","gw_timestamp":2543984515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NjAxMjI1MDA0MzCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5004, '2016-08-11 00:17:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:56.230304Z","gw_timestamp":2558347027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5006, '2016-08-11 00:17:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:10.585542Z","gw_timestamp":2572710675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5008, '2016-08-11 00:17:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:24.958781Z","gw_timestamp":2587074435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NzAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5022, '2016-08-11 00:19:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:05.502673Z","gw_timestamp":2687617307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5024, '2016-08-11 00:19:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:19.854925Z","gw_timestamp":2701981067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5026, '2016-08-11 00:19:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:34.233624Z","gw_timestamp":2716344723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5028, '2016-08-11 00:19:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:41.401092Z","gw_timestamp":2723526435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5030, '2016-08-11 00:20:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:55.766166Z","gw_timestamp":2737890299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzOTAxMjI1MDA0MzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5032, '2016-08-11 00:20:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:10.136699Z","gw_timestamp":2752253955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5034, '2016-08-11 00:20:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:24.525994Z","gw_timestamp":2766617611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4980, '2016-08-11 00:14:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:13:56.698545Z","gw_timestamp":2378806867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4982, '2016-08-11 00:14:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:11.057667Z","gw_timestamp":2393169691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4984, '2016-08-11 00:14:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:32.59854Z","gw_timestamp":2414714027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4986, '2016-08-11 00:14:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:46.95578Z","gw_timestamp":2429077787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4988, '2016-08-11 00:15:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:01.329043Z","gw_timestamp":2443440915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4990, '2016-08-11 00:15:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:15.685433Z","gw_timestamp":2457804259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4992, '2016-08-11 00:15:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:30.049665Z","gw_timestamp":2472167907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4994, '2016-08-11 00:15:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:44.436097Z","gw_timestamp":2486531459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4996, '2016-08-11 00:16:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:15:58.780437Z","gw_timestamp":2500894179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5010, '2016-08-11 00:17:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:39.333293Z","gw_timestamp":2601437147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5012, '2016-08-11 00:18:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:53.687301Z","gw_timestamp":2615800811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5014, '2016-08-11 00:18:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:08.046667Z","gw_timestamp":2630164563,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5016, '2016-08-11 00:18:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:22.405912Z","gw_timestamp":2644528219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5018, '2016-08-11 00:18:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:36.785228Z","gw_timestamp":2658891035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4985, '2016-08-11 00:14:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:14:39.784615Z","gw_timestamp":2421895955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4997, '2016-08-11 00:16:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:05.952194Z","gw_timestamp":2508076003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (4999, '2016-08-11 00:16:22', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1294,"f_cnt_down":2099,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:16:18.085919Z","gw_timestamp":1264578676,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":13.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjE4MDA0NTMMoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5001, '2016-08-11 00:16:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:34.686355Z","gw_timestamp":2536802795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5003, '2016-08-11 00:16:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:16:49.057952Z","gw_timestamp":2551165715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNTAxMjI1MDA0MzCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5005, '2016-08-11 00:17:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:03.413316Z","gw_timestamp":2565528955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5007, '2016-08-11 00:17:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:17:17.774174Z","gw_timestamp":2579892499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5023, '2016-08-11 00:19:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:12.682299Z","gw_timestamp":2694799027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MTAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5025, '2016-08-11 00:19:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:27.044813Z","gw_timestamp":2709162787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5027, '2016-08-11 00:19:43', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":731,"f_cnt_down":1315,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:19:36.869869Z","gw_timestamp":1463362724,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjIwMDA0NjEIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5029, '2016-08-11 00:19:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:19:48.600805Z","gw_timestamp":2730708371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzOTAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5031, '2016-08-11 00:20:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:02.955795Z","gw_timestamp":2745071915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5033, '2016-08-11 00:20:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:17.321292Z","gw_timestamp":2759435675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5035, '2016-08-11 00:20:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:38.862929Z","gw_timestamp":2780981371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5020, '2016-08-11 00:19:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:51.142428Z","gw_timestamp":2673254483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5038, '2016-08-11 00:21:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:00.402929Z","gw_timestamp":2802526115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5040, '2016-08-11 00:21:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:21.9488Z","gw_timestamp":2824071499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5042, '2016-08-11 00:21:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:36.311051Z","gw_timestamp":2838435155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI1MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5044, '2016-08-11 00:21:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:50.682291Z","gw_timestamp":2852797659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5046, '2016-08-11 00:22:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:22:05.052765Z","gw_timestamp":2867160475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5048, '2016-08-11 00:22:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:22:19.405075Z","gw_timestamp":2881524139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5050, '2016-08-11 00:22:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:22:48.127438Z","gw_timestamp":2910250507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5052, '2016-08-11 00:23:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:02.514906Z","gw_timestamp":2924614163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5054, '2016-08-11 00:23:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:16.861939Z","gw_timestamp":2938978027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MzCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5082, '2016-08-11 00:26:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:23.574522Z","gw_timestamp":3125702083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI1MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5084, '2016-08-11 00:26:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:37.942697Z","gw_timestamp":3140065323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5086, '2016-08-11 00:27:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:52.302061Z","gw_timestamp":3154428355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5088, '2016-08-11 00:27:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:06.664393Z","gw_timestamp":3168792107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5021, '2016-08-11 00:19:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:18:58.320045Z","gw_timestamp":2680435579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5039, '2016-08-11 00:21:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:07.58754Z","gw_timestamp":2809707635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5041, '2016-08-11 00:21:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:29.127433Z","gw_timestamp":2831253219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5043, '2016-08-11 00:21:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:43.496055Z","gw_timestamp":2845616563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MzCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5045, '2016-08-11 00:22:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:21:57.862929Z","gw_timestamp":2859979067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5047, '2016-08-11 00:22:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:22:12.227183Z","gw_timestamp":2874342307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5049, '2016-08-11 00:22:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:22:40.951946Z","gw_timestamp":2903069091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5051, '2016-08-11 00:23:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:22:55.306061Z","gw_timestamp":2917432339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5053, '2016-08-11 00:23:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:09.668317Z","gw_timestamp":2931796195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5055, '2016-08-11 00:23:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:24.033778Z","gw_timestamp":2946159227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5057, '2016-08-11 00:23:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:38.408005Z","gw_timestamp":2960522571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5059, '2016-08-11 00:23:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:52.765434Z","gw_timestamp":2974886115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5061, '2016-08-11 00:24:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:07.127436Z","gw_timestamp":2989249979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5063, '2016-08-11 00:24:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:14.315038Z","gw_timestamp":2996431803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5036, '2016-08-11 00:20:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:46.038555Z","gw_timestamp":2788163195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0MzCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5056, '2016-08-11 00:23:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:31.221312Z","gw_timestamp":2953340843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5058, '2016-08-11 00:23:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:45.578436Z","gw_timestamp":2967704395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5060, '2016-08-11 00:24:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:23:59.942812Z","gw_timestamp":2982068155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI1MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5062, '2016-08-11 00:24:16', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":816,"f_cnt_down":1515,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:24:13.625416Z","gw_timestamp":1740118412,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwMjAxMjE5MDA0NTkLUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5064, '2016-08-11 00:24:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:21.488688Z","gw_timestamp":3003613523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5066, '2016-08-11 00:24:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:43.035072Z","gw_timestamp":3025159219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI1MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5068, '2016-08-11 00:25:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:57.400815Z","gw_timestamp":3039521931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0MzCvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5070, '2016-08-11 00:25:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:11.765046Z","gw_timestamp":3053885379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5072, '2016-08-11 00:25:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:26.120565Z","gw_timestamp":3068249139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5074, '2016-08-11 00:25:42', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":810,"f_cnt_down":1468,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:25:36.599742Z","gw_timestamp":1823092780,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI4MDA0MjcMwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5076, '2016-08-11 00:25:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:47.674303Z","gw_timestamp":3089794723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5078, '2016-08-11 00:26:03', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":811,"f_cnt_down":1469,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:26:01.282347Z","gw_timestamp":1847775396,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:22.24717Z","gw_timestamp":483604556,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI4MDA0MjcMwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5037, '2016-08-11 00:20:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:20:53.229954Z","gw_timestamp":2795344923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5067, '2016-08-11 00:24:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:50.215443Z","gw_timestamp":3032340939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5069, '2016-08-11 00:25:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:04.58044Z","gw_timestamp":3046703763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5071, '2016-08-11 00:25:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:18.968158Z","gw_timestamp":3061067419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5073, '2016-08-11 00:25:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:33.312327Z","gw_timestamp":3075431171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5075, '2016-08-11 00:25:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:40.485322Z","gw_timestamp":3082612795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5077, '2016-08-11 00:26:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:25:54.862208Z","gw_timestamp":3096976347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5079, '2016-08-11 00:26:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:02.034637Z","gw_timestamp":3104157443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5081, '2016-08-11 00:26:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:16.393818Z","gw_timestamp":3118520051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5083, '2016-08-11 00:26:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:30.783256Z","gw_timestamp":3132883915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5085, '2016-08-11 00:26:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:45.149652Z","gw_timestamp":3147246523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5087, '2016-08-11 00:27:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:59.491694Z","gw_timestamp":3161610179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5089, '2016-08-11 00:27:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:13.856948Z","gw_timestamp":3175974043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5091, '2016-08-11 00:27:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:28.233887Z","gw_timestamp":3190337699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MzCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5065, '2016-08-11 00:24:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:24:28.678363Z","gw_timestamp":3010795355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5123, '2016-08-11 00:31:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:18.02394Z","gw_timestamp":3420153763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI1MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5125, '2016-08-11 00:31:34', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1295,"f_cnt_down":2100,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:31:28.907677Z","gw_timestamp":2175400892,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":2.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjE4MDA0NTMJUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5127, '2016-08-11 00:31:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:39.570068Z","gw_timestamp":3441699451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5129, '2016-08-11 00:32:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:53.938995Z","gw_timestamp":3456062067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5131, '2016-08-11 00:32:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:08.318221Z","gw_timestamp":3470425723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5133, '2016-08-11 00:32:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:22.657191Z","gw_timestamp":3484789483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5135, '2016-08-11 00:32:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:37.033579Z","gw_timestamp":3499153235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5137, '2016-08-11 00:32:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:51.396823Z","gw_timestamp":3513516787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5139, '2016-08-11 00:33:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:05.756075Z","gw_timestamp":3527880443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5141, '2016-08-11 00:33:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:20.12234Z","gw_timestamp":3542243995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5143, '2016-08-11 00:33:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:34.494896Z","gw_timestamp":3556606499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI1MDA0MjmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5145, '2016-08-11 00:33:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:48.850105Z","gw_timestamp":3570969635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5147, '2016-08-11 00:34:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:03.204205Z","gw_timestamp":3585333291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5080, '2016-08-11 00:26:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:26:09.212193Z","gw_timestamp":3111338851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0MzCzyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5092, '2016-08-11 00:27:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:35.392164Z","gw_timestamp":3197518899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5094, '2016-08-11 00:27:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:49.764193Z","gw_timestamp":3211882243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI1MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5096, '2016-08-11 00:28:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:04.115267Z","gw_timestamp":3226245899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5098, '2016-08-11 00:28:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:18.486691Z","gw_timestamp":3240609651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5100, '2016-08-11 00:28:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:32.842953Z","gw_timestamp":3254973099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5102, '2016-08-11 00:28:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:47.232475Z","gw_timestamp":3269337067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5104, '2016-08-11 00:29:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:01.59965Z","gw_timestamp":3283700723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5106, '2016-08-11 00:29:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:15.942689Z","gw_timestamp":3298064379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5108, '2016-08-11 00:29:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:30.296952Z","gw_timestamp":3312426987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI1MDA0MzCyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5110, '2016-08-11 00:29:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:44.666311Z","gw_timestamp":3326790851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI1MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5112, '2016-08-11 00:30:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:59.031576Z","gw_timestamp":3341154499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5114, '2016-08-11 00:30:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:13.406631Z","gw_timestamp":3355518155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI1MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5116, '2016-08-11 00:30:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:27.768474Z","gw_timestamp":3369880875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5090, '2016-08-11 00:27:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:21.067835Z","gw_timestamp":3183155979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0MzCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5120, '2016-08-11 00:31:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:56.482562Z","gw_timestamp":3398608291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5122, '2016-08-11 00:31:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:10.842954Z","gw_timestamp":3412971939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI1MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5124, '2016-08-11 00:31:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:25.209978Z","gw_timestamp":3427335699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NzAxMjI1MDA0MjmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5126, '2016-08-11 00:31:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:32.394828Z","gw_timestamp":3434517523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5128, '2016-08-11 00:31:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:46.757081Z","gw_timestamp":3448880659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5130, '2016-08-11 00:32:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:01.116329Z","gw_timestamp":3463243891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI1MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5132, '2016-08-11 00:32:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:15.481634Z","gw_timestamp":3477607659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5134, '2016-08-11 00:32:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:29.848958Z","gw_timestamp":3491971307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5136, '2016-08-11 00:32:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:44.224657Z","gw_timestamp":3506334963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5138, '2016-08-11 00:33:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:32:58.568019Z","gw_timestamp":3520698723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NDAxMjI1MDA0Mjmtqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5140, '2016-08-11 00:33:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:12.938707Z","gw_timestamp":3535062379,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5142, '2016-08-11 00:33:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:27.299957Z","gw_timestamp":3549425091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5144, '2016-08-11 00:33:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:41.667201Z","gw_timestamp":3563787707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDYwMTAxMjI1MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5093, '2016-08-11 00:27:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:42.581442Z","gw_timestamp":3204700515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI1MDA0MzCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5095, '2016-08-11 00:28:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:27:56.940673Z","gw_timestamp":3219064067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5097, '2016-08-11 00:28:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:11.309583Z","gw_timestamp":3233427723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5099, '2016-08-11 00:28:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:25.66754Z","gw_timestamp":3247791587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI1MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5101, '2016-08-11 00:28:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:40.033567Z","gw_timestamp":3262155139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5103, '2016-08-11 00:29:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:28:54.390073Z","gw_timestamp":3276518787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI1MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5105, '2016-08-11 00:29:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:08.761074Z","gw_timestamp":3290882547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5107, '2016-08-11 00:29:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:23.142153Z","gw_timestamp":3305245579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjI1MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5109, '2016-08-11 00:29:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:37.496553Z","gw_timestamp":3319608915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI1MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5111, '2016-08-11 00:30:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:29:51.847951Z","gw_timestamp":3333972675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5113, '2016-08-11 00:30:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:06.215448Z","gw_timestamp":3348336227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI1MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5115, '2016-08-11 00:30:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:20.573437Z","gw_timestamp":3362699251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI1MDA0Mjmz+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5117, '2016-08-11 00:30:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:34.942959Z","gw_timestamp":3377062707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5119, '2016-08-11 00:30:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:49.302956Z","gw_timestamp":3391426251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5118, '2016-08-11 00:30:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:30:42.123256Z","gw_timestamp":3384244531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5148, '2016-08-11 00:34:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:10.408106Z","gw_timestamp":3592515115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5150, '2016-08-11 00:34:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:24.753201Z","gw_timestamp":3606878875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI1MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5152, '2016-08-11 00:34:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:39.111343Z","gw_timestamp":3621241379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5154, '2016-08-11 00:34:48', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":732,"f_cnt_down":1316,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:06:08.608658Z","gw_timestamp":1009966044,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjIwMDA0NjAJgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5184, '2016-08-11 00:38:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:14.562459Z","gw_timestamp":3836695883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5186, '2016-08-11 00:38:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:28.923717Z","gw_timestamp":3851059219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5188, '2016-08-11 00:38:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:43.298966Z","gw_timestamp":3865421731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5190, '2016-08-11 00:39:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:57.66035Z","gw_timestamp":3879785075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5192, '2016-08-11 00:39:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:12.02686Z","gw_timestamp":3894148315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI2MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5194, '2016-08-11 00:39:28', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":817,"f_cnt_down":1516,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:39:24.397997Z","gw_timestamp":2650891452,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4MDAxMjE5MDA0NTkNEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5196, '2016-08-11 00:39:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:33.567347Z","gw_timestamp":3915693275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5198, '2016-08-11 00:39:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:47.955976Z","gw_timestamp":3930057027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5200, '2016-08-11 00:40:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:02.318224Z","gw_timestamp":3944420579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5121, '2016-08-11 00:31:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:31:03.673591Z","gw_timestamp":3405790211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI1MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5151, '2016-08-11 00:34:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:31.926697Z","gw_timestamp":3614060075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0Mjmzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5153, '2016-08-11 00:34:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:46.315735Z","gw_timestamp":3628423315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI1MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5155, '2016-08-11 00:34:54', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":733,"f_cnt_down":1317,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:34:47.643802Z","gw_timestamp":2374137116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjIwMDA0NjAJgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5157, '2016-08-11 00:35:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:00.65721Z","gw_timestamp":3642787075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5159, '2016-08-11 00:35:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:15.022592Z","gw_timestamp":3657150939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI1MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5161, '2016-08-11 00:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:29.379839Z","gw_timestamp":3671514379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI1MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5163, '2016-08-11 00:35:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:43.751092Z","gw_timestamp":3685878139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5165, '2016-08-11 00:36:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:58.118341Z","gw_timestamp":3700241587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI1MDA0MjmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5204, '2016-08-11 00:40:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:31.015482Z","gw_timestamp":3973147051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5206, '2016-08-11 00:41:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:45.385723Z","gw_timestamp":3987510811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI2MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5208, '2016-08-11 00:41:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:06.922721Z","gw_timestamp":4009056395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5210, '2016-08-11 00:41:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:14.105354Z","gw_timestamp":4016238219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5146, '2016-08-11 00:33:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:33:56.024598Z","gw_timestamp":3578151459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0Mjmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5156, '2016-08-11 00:35:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:53.482587Z","gw_timestamp":3635605243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5158, '2016-08-11 00:35:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:07.83684Z","gw_timestamp":3649969003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI1MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5160, '2016-08-11 00:35:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:22.219878Z","gw_timestamp":3664332659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5162, '2016-08-11 00:35:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:36.574896Z","gw_timestamp":3678696099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI1MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5164, '2016-08-11 00:35:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:35:50.932717Z","gw_timestamp":3693060067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI1MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5166, '2016-08-11 00:36:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:05.29222Z","gw_timestamp":3707423619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjI1MDA0Mjmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5168, '2016-08-11 00:36:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:19.662214Z","gw_timestamp":3721787379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI1MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5170, '2016-08-11 00:36:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:34.019471Z","gw_timestamp":3736151139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5172, '2016-08-11 00:36:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:48.382843Z","gw_timestamp":3750514787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5174, '2016-08-11 00:37:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:02.750306Z","gw_timestamp":3764878443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI1MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5176, '2016-08-11 00:37:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:17.111341Z","gw_timestamp":3779242099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI1MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5178, '2016-08-11 00:37:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:31.475592Z","gw_timestamp":3793605963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5180, '2016-08-11 00:37:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:45.83483Z","gw_timestamp":3807968883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjmyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5149, '2016-08-11 00:34:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:34:17.571461Z","gw_timestamp":3599696843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI1MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5167, '2016-08-11 00:36:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:12.499944Z","gw_timestamp":3714605651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI2MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5169, '2016-08-11 00:36:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:26.842789Z","gw_timestamp":3728969315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI1MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5171, '2016-08-11 00:36:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:41.202199Z","gw_timestamp":3743332859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI1MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5173, '2016-08-11 00:37:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:36:55.565451Z","gw_timestamp":3757696723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI1MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5175, '2016-08-11 00:37:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:09.93478Z","gw_timestamp":3772060275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI1MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5177, '2016-08-11 00:37:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:24.289962Z","gw_timestamp":3786423923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5179, '2016-08-11 00:37:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:38.669418Z","gw_timestamp":3800787683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI1MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5181, '2016-08-11 00:38:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:37:53.025599Z","gw_timestamp":3815150507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5183, '2016-08-11 00:38:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:07.383717Z","gw_timestamp":3829514155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI1MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5185, '2016-08-11 00:38:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:21.753096Z","gw_timestamp":3843877923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5187, '2016-08-11 00:38:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:36.110355Z","gw_timestamp":3858240427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5189, '2016-08-11 00:38:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:50.471534Z","gw_timestamp":3872603147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI1MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5191, '2016-08-11 00:39:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:04.837848Z","gw_timestamp":3886966795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI2MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5182, '2016-08-11 00:38:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:38:00.202561Z","gw_timestamp":3822332331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI1MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5193, '2016-08-11 00:39:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:19.200094Z","gw_timestamp":3901329611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5195, '2016-08-11 00:39:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:26.377714Z","gw_timestamp":3908511339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI1MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5197, '2016-08-11 00:39:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:40.743097Z","gw_timestamp":3922875099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5199, '2016-08-11 00:40:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:39:55.10335Z","gw_timestamp":3937238859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5201, '2016-08-11 00:40:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:09.465596Z","gw_timestamp":3951601883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5203, '2016-08-11 00:40:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:23.832857Z","gw_timestamp":3965965227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI2MDA0MjmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5205, '2016-08-11 00:40:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:38.215494Z","gw_timestamp":3980328987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5207, '2016-08-11 00:41:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:59.749102Z","gw_timestamp":4001874363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NDAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5209, '2016-08-11 00:41:16', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":812,"f_cnt_down":1470,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:41:12.121902Z","gw_timestamp":2758615412,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwMDAxMjI3MDA0MjcLkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5202, '2016-08-11 00:40:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:40:16.65444Z","gw_timestamp":3958783299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI2MDA0Mjmyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5211, '2016-08-11 00:41:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:21.287979Z","gw_timestamp":4023420051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5212, '2016-08-11 00:41:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:28.479541Z","gw_timestamp":4030601875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5213, '2016-08-11 00:41:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:35.653177Z","gw_timestamp":4037783707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5214, '2016-08-11 00:41:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:42.839855Z","gw_timestamp":4044964803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5215, '2016-08-11 00:41:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:50.021817Z","gw_timestamp":4052146323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5216, '2016-08-11 00:42:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:41:57.198099Z","gw_timestamp":4059327731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI2MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5217, '2016-08-11 00:42:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:04.372725Z","gw_timestamp":4066509139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5218, '2016-08-11 00:42:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:11.553349Z","gw_timestamp":4073690867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5219, '2016-08-11 00:42:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:18.740356Z","gw_timestamp":4080872691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5220, '2016-08-11 00:42:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:25.922534Z","gw_timestamp":4088054307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5221, '2016-08-11 00:42:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:33.107358Z","gw_timestamp":4095235411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5222, '2016-08-11 00:42:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:40.282981Z","gw_timestamp":4102416923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI2MDA0MjmuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5223, '2016-08-11 00:43:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:42:47.472607Z","gw_timestamp":4109598227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5224, '2016-08-11 00:43:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:01.82984Z","gw_timestamp":4123961883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5228, '2016-08-11 00:43:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:30.56161Z","gw_timestamp":4152688251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5230, '2016-08-11 00:43:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:44.916605Z","gw_timestamp":4167052011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NzAxMjI2MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5232, '2016-08-11 00:44:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:59.291343Z","gw_timestamp":4181415763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5234, '2016-08-11 00:44:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:13.646488Z","gw_timestamp":4195779107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5236, '2016-08-11 00:44:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:28.008489Z","gw_timestamp":4210142035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5238, '2016-08-11 00:44:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:42.373956Z","gw_timestamp":4224505795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5240, '2016-08-11 00:45:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:56.740988Z","gw_timestamp":4238869035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI1MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5242, '2016-08-11 00:45:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:11.101233Z","gw_timestamp":4253231955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjmy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5244, '2016-08-11 00:45:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:25.466616Z","gw_timestamp":4267595819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI1MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5246, '2016-08-11 00:45:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:39.83386Z","gw_timestamp":4281959579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5248, '2016-08-11 00:46:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:54.194109Z","gw_timestamp":1355723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5250, '2016-08-11 00:46:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:08.555371Z","gw_timestamp":15718131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjmzyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5252, '2016-08-11 00:46:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:22.919616Z","gw_timestamp":30081363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5225, '2016-08-11 00:43:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:09.017497Z","gw_timestamp":4131143811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5229, '2016-08-11 00:43:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:37.73699Z","gw_timestamp":4159870083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5231, '2016-08-11 00:44:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:52.098229Z","gw_timestamp":4174233843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5233, '2016-08-11 00:44:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:06.479619Z","gw_timestamp":4188597595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5NDAxMjI2MDA0Mjmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5235, '2016-08-11 00:44:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:20.846004Z","gw_timestamp":4202960211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5237, '2016-08-11 00:44:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:35.190111Z","gw_timestamp":4217323971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5239, '2016-08-11 00:44:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:44:49.561498Z","gw_timestamp":4231687619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI1MDA0Mjmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5241, '2016-08-11 00:45:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:03.923609Z","gw_timestamp":4246050235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5243, '2016-08-11 00:45:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:18.299256Z","gw_timestamp":4260413995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0MjmvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5245, '2016-08-11 00:45:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:32.639361Z","gw_timestamp":4274777643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5247, '2016-08-11 00:45:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:45:47.001472Z","gw_timestamp":4289141299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5ODAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5249, '2016-08-11 00:46:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:01.382205Z","gw_timestamp":8536827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5251, '2016-08-11 00:46:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:15.729214Z","gw_timestamp":22899331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5253, '2016-08-11 00:46:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:30.105448Z","gw_timestamp":37263195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5226, '2016-08-11 00:43:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:16.210379Z","gw_timestamp":4138325643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5284, '2016-08-11 00:50:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:05.554381Z","gw_timestamp":252715611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5286, '2016-08-11 00:50:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:19.936133Z","gw_timestamp":267079163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI2MDA0Mjmz2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5288, '2016-08-11 00:50:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:34.274871Z","gw_timestamp":281442923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5290, '2016-08-11 00:50:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:48.645047Z","gw_timestamp":295806467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5292, '2016-08-11 00:51:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:03.007509Z","gw_timestamp":310169603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5294, '2016-08-11 00:51:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:17.365756Z","gw_timestamp":324533155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5296, '2016-08-11 00:51:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:31.723989Z","gw_timestamp":338896811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5298, '2016-08-11 00:51:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:46.089259Z","gw_timestamp":353260043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MDAxMjI2MDA0MjmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5300, '2016-08-11 00:52:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:00.453718Z","gw_timestamp":367623179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5302, '2016-08-11 00:52:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:14.814742Z","gw_timestamp":381986835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5304, '2016-08-11 00:52:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:29.179117Z","gw_timestamp":396350595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5306, '2016-08-11 00:52:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:43.549634Z","gw_timestamp":410713307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5308, '2016-08-11 00:53:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:57.901991Z","gw_timestamp":425076963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5227, '2016-08-11 00:43:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:43:23.374863Z","gw_timestamp":4145506843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5257, '2016-08-11 00:47:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:51.64423Z","gw_timestamp":58808051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5259, '2016-08-11 00:47:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:13.187119Z","gw_timestamp":80353323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjmy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5261, '2016-08-11 00:47:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:27.549591Z","gw_timestamp":94716979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5263, '2016-08-11 00:47:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:41.911619Z","gw_timestamp":109079699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5265, '2016-08-11 00:48:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:56.275805Z","gw_timestamp":123443347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5267, '2016-08-11 00:48:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:10.653501Z","gw_timestamp":137807211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5269, '2016-08-11 00:48:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:25.007494Z","gw_timestamp":152170763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5271, '2016-08-11 00:48:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:39.362Z","gw_timestamp":166534523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5273, '2016-08-11 00:49:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:53.735125Z","gw_timestamp":180898171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5275, '2016-08-11 00:49:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:08.101238Z","gw_timestamp":195261619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5277, '2016-08-11 00:49:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:22.458537Z","gw_timestamp":209624643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5279, '2016-08-11 00:49:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:36.814054Z","gw_timestamp":223988299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI2MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5281, '2016-08-11 00:49:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:51.188117Z","gw_timestamp":238351955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5254, '2016-08-11 00:46:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:37.274876Z","gw_timestamp":44444811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5256, '2016-08-11 00:46:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:46:44.463608Z","gw_timestamp":51626843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5258, '2016-08-11 00:47:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:05.998492Z","gw_timestamp":73171499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5260, '2016-08-11 00:47:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:20.374129Z","gw_timestamp":87535147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5262, '2016-08-11 00:47:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:34.727996Z","gw_timestamp":101898595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5264, '2016-08-11 00:47:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:47:49.098235Z","gw_timestamp":116261523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5266, '2016-08-11 00:48:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:03.453474Z","gw_timestamp":130625283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5268, '2016-08-11 00:48:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:17.819859Z","gw_timestamp":144988931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5270, '2016-08-11 00:48:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:32.189119Z","gw_timestamp":159352483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI2MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5272, '2016-08-11 00:48:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:48:46.544661Z","gw_timestamp":173716347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI2MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5274, '2016-08-11 00:49:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:00.917608Z","gw_timestamp":188079891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5276, '2016-08-11 00:49:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:15.271873Z","gw_timestamp":202442819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5278, '2016-08-11 00:49:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:29.632991Z","gw_timestamp":216806371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5280, '2016-08-11 00:49:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:44.022361Z","gw_timestamp":231170235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5255, '2016-08-11 00:46:45', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1296,"f_cnt_down":2101,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:46:39.729043Z","gw_timestamp":3086222716,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjE4MDA0NTMHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5285, '2016-08-11 00:50:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:12.733003Z","gw_timestamp":259897547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5287, '2016-08-11 00:50:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:27.096244Z","gw_timestamp":274260987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5289, '2016-08-11 00:50:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:41.4565Z","gw_timestamp":288624747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0Mjmu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5291, '2016-08-11 00:51:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:50:55.824094Z","gw_timestamp":302988507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NDAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5293, '2016-08-11 00:51:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:10.191928Z","gw_timestamp":317351331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5295, '2016-08-11 00:51:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:24.543317Z","gw_timestamp":331714875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5297, '2016-08-11 00:51:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:38.905628Z","gw_timestamp":346078531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5299, '2016-08-11 00:52:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:51:53.280886Z","gw_timestamp":360441347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5301, '2016-08-11 00:52:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:07.631122Z","gw_timestamp":374805115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5303, '2016-08-11 00:52:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:22.000504Z","gw_timestamp":389168659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5305, '2016-08-11 00:52:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:36.35875Z","gw_timestamp":403532107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5307, '2016-08-11 00:52:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:52:50.732286Z","gw_timestamp":417895027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5309, '2016-08-11 00:53:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:05.092493Z","gw_timestamp":432258891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5282, '2016-08-11 00:49:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:49:58.361753Z","gw_timestamp":245533787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5312, '2016-08-11 00:53:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:26.649907Z","gw_timestamp":453803435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5314, '2016-08-11 00:53:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:40.996384Z","gw_timestamp":468167091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNTAxMjI2MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5316, '2016-08-11 00:54:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:55.35774Z","gw_timestamp":482530643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ3NTAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5318, '2016-08-11 00:54:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:09.729011Z","gw_timestamp":496894507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5320, '2016-08-11 00:54:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:31.267887Z","gw_timestamp":518440091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjmzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5322, '2016-08-11 00:54:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:38.455117Z","gw_timestamp":525621811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5324, '2016-08-11 00:55:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:52.82303Z","gw_timestamp":539985571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5326, '2016-08-11 00:55:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:14.35801Z","gw_timestamp":561530219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI2MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5328, '2016-08-11 00:55:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:28.717228Z","gw_timestamp":575893667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5330, '2016-08-11 00:55:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:43.081265Z","gw_timestamp":590257315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5332, '2016-08-11 00:56:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:57.445497Z","gw_timestamp":604620867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5334, '2016-08-11 00:56:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:11.815269Z","gw_timestamp":618983787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjmumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5336, '2016-08-11 00:56:24', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":813,"f_cnt_down":1471,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:27:43.927385Z","gw_timestamp":2305284772,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ4ODAxMjI2MDA0MjkjQg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5283, '2016-08-11 00:50:07', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":733,"f_cnt_down":1318,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:49:58.420207Z","gw_timestamp":3284913980,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:19.385114Z","gw_timestamp":1920742500,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjIwMDA0NjAKQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5313, '2016-08-11 00:53:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:33.819753Z","gw_timestamp":460985163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI2MDA0Mjmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5315, '2016-08-11 00:53:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:48.181125Z","gw_timestamp":475348915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5317, '2016-08-11 00:54:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:02.544014Z","gw_timestamp":489712675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5319, '2016-08-11 00:54:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:24.087259Z","gw_timestamp":511258163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI2MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5321, '2016-08-11 00:54:39', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":818,"f_cnt_down":1517,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:54:35.174347Z","gw_timestamp":3561668260,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1MzAxMjE5MDA0NTkM4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5323, '2016-08-11 00:54:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:45.638632Z","gw_timestamp":532803739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI2MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5325, '2016-08-11 00:55:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:54:59.991312Z","gw_timestamp":547166667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5327, '2016-08-11 00:55:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:21.538377Z","gw_timestamp":568711835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjI2MDA0Mjmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5329, '2016-08-11 00:55:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:35.909632Z","gw_timestamp":583075699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5331, '2016-08-11 00:55:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:55:50.267881Z","gw_timestamp":597439251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5333, '2016-08-11 00:56:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:04.643247Z","gw_timestamp":611801963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5335, '2016-08-11 00:56:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:18.995385Z","gw_timestamp":626165827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MjAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5310, '2016-08-11 00:53:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:12.282153Z","gw_timestamp":439440619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5340, '2016-08-11 00:56:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:40.555701Z","gw_timestamp":647711315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5342, '2016-08-11 00:57:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:54.909644Z","gw_timestamp":662074963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5344, '2016-08-11 00:57:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:16.445569Z","gw_timestamp":683620547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5346, '2016-08-11 00:57:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:30.808949Z","gw_timestamp":697984099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5348, '2016-08-11 00:57:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:45.170017Z","gw_timestamp":712347859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5350, '2016-08-11 00:58:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:59.539396Z","gw_timestamp":726711619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5352, '2016-08-11 00:58:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:13.911633Z","gw_timestamp":741075267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5354, '2016-08-11 00:58:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:28.274434Z","gw_timestamp":755438403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMjAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5356, '2016-08-11 00:58:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:42.629521Z","gw_timestamp":769801219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5358, '2016-08-11 00:59:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:56.991394Z","gw_timestamp":784164363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5360, '2016-08-11 00:59:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:59:18.552509Z","gw_timestamp":805709835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5362, '2016-08-11 00:59:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:59:40.088528Z","gw_timestamp":827254907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0Mjm0Kw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5364, '2016-08-11 01:00:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:59:54.442524Z","gw_timestamp":841618035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5311, '2016-08-11 00:53:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:53:19.457498Z","gw_timestamp":446621707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5339, '2016-08-11 00:56:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:33.356896Z","gw_timestamp":640529275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI2MDA0MjmvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5341, '2016-08-11 00:56:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:47.717961Z","gw_timestamp":654893139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5343, '2016-08-11 00:57:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:02.109629Z","gw_timestamp":669256691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5345, '2016-08-11 00:57:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:23.639156Z","gw_timestamp":690802275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5347, '2016-08-11 00:57:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:38.0164Z","gw_timestamp":705166027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5349, '2016-08-11 00:58:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:57:52.364642Z","gw_timestamp":719529787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5351, '2016-08-11 00:58:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:06.719019Z","gw_timestamp":733893443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5353, '2016-08-11 00:58:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:21.081828Z","gw_timestamp":748257203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5355, '2016-08-11 00:58:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:35.444588Z","gw_timestamp":762619819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI2MDA0MjmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5357, '2016-08-11 00:58:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:58:49.804744Z","gw_timestamp":776982531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5359, '2016-08-11 00:59:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:59:04.179276Z","gw_timestamp":791346395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI2MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5361, '2016-08-11 00:59:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:59:32.904697Z","gw_timestamp":820073491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5363, '2016-08-11 00:59:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:59:47.266905Z","gw_timestamp":834436211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0Mjmyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5337, '2016-08-11 00:56:27', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":814,"f_cnt_down":1472,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T00:56:22.962452Z","gw_timestamp":3669456420,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ4ODAxMjI2MDA0MjkjQg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5423, '2016-08-11 01:06:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:50.984489Z","gw_timestamp":1258160259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5425, '2016-08-11 01:07:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:05.356173Z","gw_timestamp":1272523707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5427, '2016-08-11 01:07:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:19.712909Z","gw_timestamp":1286886731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5429, '2016-08-11 01:07:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:34.072161Z","gw_timestamp":1301250491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5431, '2016-08-11 01:07:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:48.434748Z","gw_timestamp":1315613523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5461, '2016-08-11 01:11:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:38.253803Z","gw_timestamp":1545428243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5463, '2016-08-11 01:12:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:52.611053Z","gw_timestamp":1559791891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5465, '2016-08-11 01:12:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:06.972412Z","gw_timestamp":1574155651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5467, '2016-08-11 01:12:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:21.337674Z","gw_timestamp":1588519411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5469, '2016-08-11 01:12:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:35.711168Z","gw_timestamp":1602883059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5471, '2016-08-11 01:12:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:50.077305Z","gw_timestamp":1617246611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNTAxMjI2MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5473, '2016-08-11 01:13:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:04.430434Z","gw_timestamp":1631610371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5OTAxMjI2MDA0Mjmyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5475, '2016-08-11 01:13:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:18.798811Z","gw_timestamp":1645974027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5338, '2016-08-11 00:56:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T00:56:26.177014Z","gw_timestamp":633347451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5368, '2016-08-11 01:00:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:23.177302Z","gw_timestamp":870344619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NTAxMjI2MDA0MjmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5370, '2016-08-11 01:00:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:37.541278Z","gw_timestamp":884708163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI2MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5372, '2016-08-11 01:00:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:51.915764Z","gw_timestamp":899071923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5374, '2016-08-11 01:01:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:06.269172Z","gw_timestamp":913435051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NjAxMjI2MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5376, '2016-08-11 01:01:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:27.799778Z","gw_timestamp":934980123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5378, '2016-08-11 01:01:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:42.178393Z","gw_timestamp":949343779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5380, '2016-08-11 01:01:52', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1297,"f_cnt_down":2102,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:01:50.558576Z","gw_timestamp":3997052708,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2ODAxMjE4MDA0NTMJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5382, '2016-08-11 01:02:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:56.553417Z","gw_timestamp":963707643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5384, '2016-08-11 01:02:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:10.892654Z","gw_timestamp":978071291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5386, '2016-08-11 01:02:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:25.265037Z","gw_timestamp":992434843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjI2MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5388, '2016-08-11 01:02:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:39.62528Z","gw_timestamp":1006798707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMjAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5390, '2016-08-11 01:03:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:53.981407Z","gw_timestamp":1021162363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5392, '2016-08-11 01:03:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:08.352654Z","gw_timestamp":1035526115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5365, '2016-08-11 01:00:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:01.634601Z","gw_timestamp":848800075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5367, '2016-08-11 01:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:15.989399Z","gw_timestamp":863162683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5369, '2016-08-11 01:00:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:30.375132Z","gw_timestamp":877526443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5371, '2016-08-11 01:00:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:44.710013Z","gw_timestamp":891889995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5373, '2016-08-11 01:01:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:59.089288Z","gw_timestamp":906253859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5375, '2016-08-11 01:01:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:20.63115Z","gw_timestamp":927798403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5377, '2016-08-11 01:01:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:34.995517Z","gw_timestamp":942162051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5379, '2016-08-11 01:01:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:01:49.354641Z","gw_timestamp":956525603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5381, '2016-08-11 01:01:58', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1298,"f_cnt_down":2103,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:33:11.523538Z","gw_timestamp":2632880924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2ODAxMjE4MDA0NTMJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5383, '2016-08-11 01:02:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:03.713902Z","gw_timestamp":970889467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5385, '2016-08-11 01:02:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:18.084477Z","gw_timestamp":985253115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4NTAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5387, '2016-08-11 01:02:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:32.45878Z","gw_timestamp":999616771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5389, '2016-08-11 01:02:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:02:46.824692Z","gw_timestamp":1013980531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5391, '2016-08-11 01:03:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:01.163033Z","gw_timestamp":1028344083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5366, '2016-08-11 01:00:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:00:08.813912Z","gw_timestamp":855981483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NTAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5396, '2016-08-11 01:03:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:44.258909Z","gw_timestamp":1071434211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5398, '2016-08-11 01:04:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:58.637519Z","gw_timestamp":1085797867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5400, '2016-08-11 01:04:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:12.992531Z","gw_timestamp":1100161731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5402, '2016-08-11 01:04:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:27.35652Z","gw_timestamp":1114525387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5404, '2016-08-11 01:04:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:41.718914Z","gw_timestamp":1128889147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5406, '2016-08-11 01:05:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:56.081172Z","gw_timestamp":1143252795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5ODAxMjI2MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5408, '2016-08-11 01:05:12', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":734,"f_cnt_down":1319,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:05:09.193324Z","gw_timestamp":4195687556,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:24:55.190993Z","gw_timestamp":2831515676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjIwMDA0NTkLgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5410, '2016-08-11 01:05:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:17.629164Z","gw_timestamp":1164797963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5436, '2016-08-11 01:08:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:24.344674Z","gw_timestamp":1351521403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5438, '2016-08-11 01:08:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:38.713918Z","gw_timestamp":1365885059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5440, '2016-08-11 01:09:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:53.06511Z","gw_timestamp":1380247779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5442, '2016-08-11 01:09:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:07.431491Z","gw_timestamp":1394611331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5393, '2016-08-11 01:03:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:22.736551Z","gw_timestamp":1049889771,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI2MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5395, '2016-08-11 01:03:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:37.078545Z","gw_timestamp":1064252899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5397, '2016-08-11 01:04:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:51.437532Z","gw_timestamp":1078615931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0MjmzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5399, '2016-08-11 01:04:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:05.799766Z","gw_timestamp":1092979907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5401, '2016-08-11 01:04:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:20.163021Z","gw_timestamp":1107343555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjI2MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5403, '2016-08-11 01:04:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:34.551558Z","gw_timestamp":1121707315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5405, '2016-08-11 01:04:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:04:48.925411Z","gw_timestamp":1136070963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5407, '2016-08-11 01:05:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:03.261906Z","gw_timestamp":1150434619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI2MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5409, '2016-08-11 01:05:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:10.442479Z","gw_timestamp":1157616547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5411, '2016-08-11 01:05:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:24.811953Z","gw_timestamp":1171979267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5413, '2016-08-11 01:05:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:39.173283Z","gw_timestamp":1186342819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5415, '2016-08-11 01:06:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:53.534261Z","gw_timestamp":1200706579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5417, '2016-08-11 01:06:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:07.890545Z","gw_timestamp":1215070019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5419, '2016-08-11 01:06:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:22.257914Z","gw_timestamp":1229432843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5394, '2016-08-11 01:03:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:03:29.893528Z","gw_timestamp":1057071603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5412, '2016-08-11 01:05:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:31.991357Z","gw_timestamp":1179160995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5414, '2016-08-11 01:05:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:05:46.350658Z","gw_timestamp":1193524755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5416, '2016-08-11 01:06:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:00.711912Z","gw_timestamp":1207888195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5418, '2016-08-11 01:06:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:15.092529Z","gw_timestamp":1222251123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5420, '2016-08-11 01:06:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:29.437009Z","gw_timestamp":1236614779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5422, '2016-08-11 01:06:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:43.795789Z","gw_timestamp":1250978427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI2MDA0Mjmy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5424, '2016-08-11 01:07:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:58.161042Z","gw_timestamp":1265342187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5426, '2016-08-11 01:07:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:12.533274Z","gw_timestamp":1279704899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5428, '2016-08-11 01:07:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:26.889547Z","gw_timestamp":1294068459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5NjAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5430, '2016-08-11 01:07:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:41.265661Z","gw_timestamp":1308432315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5432, '2016-08-11 01:08:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:07:55.622393Z","gw_timestamp":1322795035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5434, '2016-08-11 01:08:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:09.978422Z","gw_timestamp":1337157643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5444, '2016-08-11 01:09:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:36.165024Z","gw_timestamp":1423338011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5421, '2016-08-11 01:06:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:06:36.62514Z","gw_timestamp":1243796707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5433, '2016-08-11 01:08:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:02.796792Z","gw_timestamp":1329976131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NjAxMjI2MDA0Mjmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5435, '2016-08-11 01:08:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:17.168033Z","gw_timestamp":1344339475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI2MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5437, '2016-08-11 01:08:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:31.543552Z","gw_timestamp":1358703227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5439, '2016-08-11 01:08:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:08:45.888896Z","gw_timestamp":1373066163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5441, '2016-08-11 01:09:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:00.252019Z","gw_timestamp":1387429499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5443, '2016-08-11 01:09:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:14.60904Z","gw_timestamp":1401793259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5445, '2016-08-11 01:09:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:43.345667Z","gw_timestamp":1430519627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI2MDA0Mjmuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5447, '2016-08-11 01:09:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:50.523284Z","gw_timestamp":1437701555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI2MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5449, '2016-08-11 01:10:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:12.072421Z","gw_timestamp":1459247147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5451, '2016-08-11 01:10:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:26.432422Z","gw_timestamp":1473610803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5453, '2016-08-11 01:10:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:40.789801Z","gw_timestamp":1487974451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5455, '2016-08-11 01:11:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:55.170323Z","gw_timestamp":1502338107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NjAxMjI2MDA0Mjmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5457, '2016-08-11 01:11:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:09.521292Z","gw_timestamp":1516701763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5446, '2016-08-11 01:09:52', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":819,"f_cnt_down":1518,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:09:45.950768Z","gw_timestamp":177477844,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:31.948458Z","gw_timestamp":3108273140,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU5MzAxMjE4MDA0NTgMoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5458, '2016-08-11 01:11:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:16.701928Z","gw_timestamp":1523883067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjmz+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5460, '2016-08-11 01:11:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":814,"f_cnt_down":1473,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:11:33.808707Z","gw_timestamp":285335836,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:19.806402Z","gw_timestamp":3216131084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5NTAxMjI1MDA0MzAV8Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5462, '2016-08-11 01:11:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:45.434581Z","gw_timestamp":1552610171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5464, '2016-08-11 01:12:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:59.800802Z","gw_timestamp":1566973619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5466, '2016-08-11 01:12:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:14.163412Z","gw_timestamp":1581337483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NDAxMjI2MDA0MjmzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5468, '2016-08-11 01:12:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:28.521294Z","gw_timestamp":1595701131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5470, '2016-08-11 01:12:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:42.885552Z","gw_timestamp":1610064891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5NDAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5472, '2016-08-11 01:13:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:12:57.254795Z","gw_timestamp":1624428331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI2MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5474, '2016-08-11 01:13:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:11.625486Z","gw_timestamp":1638792091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5476, '2016-08-11 01:13:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:33.15905Z","gw_timestamp":1660337987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5478, '2016-08-11 01:13:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:47.549563Z","gw_timestamp":1674701443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5480, '2016-08-11 01:14:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:01.891873Z","gw_timestamp":1689064155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5448, '2016-08-11 01:10:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:09:57.72205Z","gw_timestamp":1444883283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5450, '2016-08-11 01:10:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:19.2469Z","gw_timestamp":1466428979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5452, '2016-08-11 01:10:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:33.620661Z","gw_timestamp":1480792627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5454, '2016-08-11 01:10:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:10:47.978426Z","gw_timestamp":1495156387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5456, '2016-08-11 01:11:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:02.350087Z","gw_timestamp":1509520043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5512, '2016-08-11 01:18:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:51.728221Z","gw_timestamp":1918881371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5514, '2016-08-11 01:18:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:06.06068Z","gw_timestamp":1933244819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5516, '2016-08-11 01:18:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:20.425446Z","gw_timestamp":1947607747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5518, '2016-08-11 01:18:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:34.793686Z","gw_timestamp":1961971499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5520, '2016-08-11 01:18:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:49.160906Z","gw_timestamp":1976334643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5522, '2016-08-11 01:19:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:03.513587Z","gw_timestamp":1990697771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5524, '2016-08-11 01:19:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:17.873758Z","gw_timestamp":2005061419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5526, '2016-08-11 01:19:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:32.242035Z","gw_timestamp":2019425187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5528, '2016-08-11 01:19:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:46.612066Z","gw_timestamp":2033788523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5459, '2016-08-11 01:11:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:11:31.064171Z","gw_timestamp":1538246411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5479, '2016-08-11 01:14:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:54.709932Z","gw_timestamp":1681882851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5481, '2016-08-11 01:14:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:09.06318Z","gw_timestamp":1696245979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5483, '2016-08-11 01:14:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:23.44589Z","gw_timestamp":1710609635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5531, '2016-08-11 01:20:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:15.32969Z","gw_timestamp":2062515203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5533, '2016-08-11 01:20:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:22.515259Z","gw_timestamp":2069697139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5535, '2016-08-11 01:20:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:36.878568Z","gw_timestamp":2084060891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5537, '2016-08-11 01:20:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:51.248824Z","gw_timestamp":2098424547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5539, '2016-08-11 01:21:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:05.610605Z","gw_timestamp":2112788315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI2MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5541, '2016-08-11 01:21:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:19.972554Z","gw_timestamp":2127151859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5543, '2016-08-11 01:21:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:34.332702Z","gw_timestamp":2141515307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5555, '2016-08-11 01:23:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:00.512326Z","gw_timestamp":2227696819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5557, '2016-08-11 01:23:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:14.876579Z","gw_timestamp":2242060051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5559, '2016-08-11 01:23:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:29.23183Z","gw_timestamp":2256423083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5477, '2016-08-11 01:13:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:13:40.336684Z","gw_timestamp":1667519715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5485, '2016-08-11 01:14:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:37.791811Z","gw_timestamp":1724973187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5487, '2016-08-11 01:15:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:52.15244Z","gw_timestamp":1739337155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MjAxMjI2MDA0Mjmuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5489, '2016-08-11 01:15:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:06.515309Z","gw_timestamp":1753700907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyODAxMjI2MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5491, '2016-08-11 01:15:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:20.877548Z","gw_timestamp":1768064459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5493, '2016-08-11 01:15:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:42.423434Z","gw_timestamp":1789610155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNTAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5495, '2016-08-11 01:16:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:56.787071Z","gw_timestamp":1803973699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NzAxMjI2MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5497, '2016-08-11 01:16:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:11.160057Z","gw_timestamp":1818337355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MDAxMjI2MDA0Mjmuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5499, '2016-08-11 01:16:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:25.517305Z","gw_timestamp":1832700283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5501, '2016-08-11 01:16:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:39.907838Z","gw_timestamp":1847063939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5503, '2016-08-11 01:17:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:54.248827Z","gw_timestamp":1861427587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5505, '2016-08-11 01:17:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:01.433427Z","gw_timestamp":1868609419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5507, '2016-08-11 01:17:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:15.815059Z","gw_timestamp":1882972131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MzAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5509, '2016-08-11 01:17:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:30.148053Z","gw_timestamp":1897335787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwNDAxMjI2MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5482, '2016-08-11 01:14:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:16.243802Z","gw_timestamp":1703427915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5484, '2016-08-11 01:14:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:30.618311Z","gw_timestamp":1717791675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5486, '2016-08-11 01:14:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:44.970435Z","gw_timestamp":1732155219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5488, '2016-08-11 01:15:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:14:59.338986Z","gw_timestamp":1746518979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5490, '2016-08-11 01:15:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:13.70693Z","gw_timestamp":1760882635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5492, '2016-08-11 01:15:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:35.245794Z","gw_timestamp":1782428115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MzAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5494, '2016-08-11 01:15:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:15:49.629279Z","gw_timestamp":1796791979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5496, '2016-08-11 01:16:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:03.978553Z","gw_timestamp":1811155635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5498, '2016-08-11 01:16:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:18.332691Z","gw_timestamp":1825519291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5500, '2016-08-11 01:16:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:32.705576Z","gw_timestamp":1839881899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5502, '2016-08-11 01:16:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:16:47.072194Z","gw_timestamp":1854245867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5504, '2016-08-11 01:17:03', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1298,"f_cnt_down":2104,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:17:01.383118Z","gw_timestamp":612910412,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjE3MDA0NTMHIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5506, '2016-08-11 01:17:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:08.612064Z","gw_timestamp":1875790515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5508, '2016-08-11 01:17:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:22.975684Z","gw_timestamp":1890154067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjI2MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5510, '2016-08-11 01:17:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:37.3347Z","gw_timestamp":1904517723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MzAxMjI2MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5532, '2016-08-11 01:20:23', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":735,"f_cnt_down":1320,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:20:19.970241Z","gw_timestamp":811497636,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjIwMDA0NTkJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5534, '2016-08-11 01:20:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:29.698948Z","gw_timestamp":2076879067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5536, '2016-08-11 01:20:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:44.065201Z","gw_timestamp":2091242619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5538, '2016-08-11 01:21:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:58.422451Z","gw_timestamp":2105606483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0Mjmuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5540, '2016-08-11 01:21:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:12.787696Z","gw_timestamp":2119969923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5542, '2016-08-11 01:21:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:27.153072Z","gw_timestamp":2134333795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5544, '2016-08-11 01:21:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:41.510601Z","gw_timestamp":2148696403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5546, '2016-08-11 01:22:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:55.878577Z","gw_timestamp":2163060163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5548, '2016-08-11 01:22:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:10.233814Z","gw_timestamp":2177423819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5550, '2016-08-11 01:22:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:24.597074Z","gw_timestamp":2191787571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5552, '2016-08-11 01:22:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:38.973318Z","gw_timestamp":2206151339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI2MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5554, '2016-08-11 01:23:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:53.324645Z","gw_timestamp":2220514987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5556, '2016-08-11 01:23:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:07.700436Z","gw_timestamp":2234878747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MTAxMjI2MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5511, '2016-08-11 01:17:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:44.521564Z","gw_timestamp":1911699547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MzAxMjI2MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5513, '2016-08-11 01:18:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:17:58.878563Z","gw_timestamp":1926063203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5515, '2016-08-11 01:18:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:13.240945Z","gw_timestamp":1940425915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5517, '2016-08-11 01:18:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:27.62333Z","gw_timestamp":1954789467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5519, '2016-08-11 01:18:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:41.967883Z","gw_timestamp":1969153331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5521, '2016-08-11 01:19:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:18:56.330943Z","gw_timestamp":1983515939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5523, '2016-08-11 01:19:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:10.690937Z","gw_timestamp":1997879699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5525, '2016-08-11 01:19:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:25.054548Z","gw_timestamp":2012243251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI2MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5527, '2016-08-11 01:19:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:39.422439Z","gw_timestamp":2026607003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5529, '2016-08-11 01:20:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:19:53.790694Z","gw_timestamp":2040969723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5545, '2016-08-11 01:21:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:21:48.692948Z","gw_timestamp":2155878339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5547, '2016-08-11 01:22:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:03.063324Z","gw_timestamp":2170242091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5549, '2016-08-11 01:22:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:17.440764Z","gw_timestamp":2184605643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5551, '2016-08-11 01:22:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:31.79897Z","gw_timestamp":2198969403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI2MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5530, '2016-08-11 01:20:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:20:08.158577Z","gw_timestamp":2055333483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI2MDA0MjmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5560, '2016-08-11 01:23:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:36.41453Z","gw_timestamp":2263605115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5562, '2016-08-11 01:23:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:50.787697Z","gw_timestamp":2277968771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYxMzAxMjI2MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5564, '2016-08-11 01:24:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:05.148336Z","gw_timestamp":2292331387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5566, '2016-08-11 01:24:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:26.688083Z","gw_timestamp":2313876971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5568, '2016-08-11 01:24:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:41.054196Z","gw_timestamp":2328240619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5570, '2016-08-11 01:24:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:55.435444Z","gw_timestamp":2342603443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5572, '2016-08-11 01:25:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:02.611218Z","gw_timestamp":2349785067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjI2MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5574, '2016-08-11 01:25:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:16.958322Z","gw_timestamp":2364148923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5576, '2016-08-11 01:25:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:31.3297Z","gw_timestamp":2378512267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5578, '2016-08-11 01:25:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:45.718324Z","gw_timestamp":2392874667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5580, '2016-08-11 01:26:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:00.05121Z","gw_timestamp":2407238011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5582, '2016-08-11 01:26:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:14.417459Z","gw_timestamp":2421601771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5584, '2016-08-11 01:26:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:28.77571Z","gw_timestamp":2435964907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5553, '2016-08-11 01:22:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:22:46.147204Z","gw_timestamp":2213333163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5591, '2016-08-11 01:27:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:19.044209Z","gw_timestamp":2486236339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI2MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5593, '2016-08-11 01:27:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":815,"f_cnt_down":1474,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:26:44.648943Z","gw_timestamp":1196176532,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:30.646698Z","gw_timestamp":4126971380,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4MjAxMjI1MDA0MzIMkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5595, '2016-08-11 01:27:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:33.411467Z","gw_timestamp":2500600099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5597, '2016-08-11 01:27:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:47.774692Z","gw_timestamp":2514963859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5599, '2016-08-11 01:28:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:02.145198Z","gw_timestamp":2529326883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5601, '2016-08-11 01:28:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:16.49953Z","gw_timestamp":2543690019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5603, '2016-08-11 01:28:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:30.87652Z","gw_timestamp":2558053883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjiyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5605, '2016-08-11 01:28:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:45.225836Z","gw_timestamp":2572417427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5607, '2016-08-11 01:29:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:59.594091Z","gw_timestamp":2586780355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjiyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5609, '2016-08-11 01:29:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:13.950471Z","gw_timestamp":2601143907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5611, '2016-08-11 01:29:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:28.320844Z","gw_timestamp":2615507555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5613, '2016-08-11 01:29:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:49.862598Z","gw_timestamp":2637053147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5558, '2016-08-11 01:23:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:22.056346Z","gw_timestamp":2249241355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5OTAxMjI2MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5588, '2016-08-11 01:27:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:57.512607Z","gw_timestamp":2464691899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5590, '2016-08-11 01:27:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:11.864603Z","gw_timestamp":2479054611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5592, '2016-08-11 01:27:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:26.226842Z","gw_timestamp":2493418267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5594, '2016-08-11 01:27:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":816,"f_cnt_down":1475,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:27:09.331228Z","gw_timestamp":1220858828,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:55.328985Z","gw_timestamp":4151653668,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4MjAxMjI1MDA0MzIMkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5596, '2016-08-11 01:27:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:40.619355Z","gw_timestamp":2507781923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5598, '2016-08-11 01:28:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:54.965338Z","gw_timestamp":2522145579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYxMzAxMjI2MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5600, '2016-08-11 01:28:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:09.32459Z","gw_timestamp":2536508187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5602, '2016-08-11 01:28:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:23.688955Z","gw_timestamp":2550871955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5604, '2016-08-11 01:28:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:38.052223Z","gw_timestamp":2565235603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI2MDA0Mjmy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5606, '2016-08-11 01:29:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:28:52.415463Z","gw_timestamp":2579599363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5608, '2016-08-11 01:29:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:06.785948Z","gw_timestamp":2593962075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5610, '2016-08-11 01:29:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:21.141968Z","gw_timestamp":2608325731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0MjmuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5561, '2016-08-11 01:23:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:43.60908Z","gw_timestamp":2270786843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0Mjmymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5563, '2016-08-11 01:24:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:23:57.980516Z","gw_timestamp":2285149867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5565, '2016-08-11 01:24:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:12.331701Z","gw_timestamp":2299513315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5567, '2016-08-11 01:24:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:33.879606Z","gw_timestamp":2321058899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjmy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5569, '2016-08-11 01:24:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:24:48.239944Z","gw_timestamp":2335421723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5571, '2016-08-11 01:25:04', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":820,"f_cnt_down":1519,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:24:56.732855Z","gw_timestamp":1088260388,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwMjAxMjE4MDA0NTgQgQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5573, '2016-08-11 01:25:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:09.792114Z","gw_timestamp":2356967091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5575, '2016-08-11 01:25:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:24.151949Z","gw_timestamp":2371330643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5577, '2016-08-11 01:25:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:38.510463Z","gw_timestamp":2385693467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5579, '2016-08-11 01:26:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:25:52.866579Z","gw_timestamp":2400056179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5581, '2016-08-11 01:26:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:07.228841Z","gw_timestamp":2414419731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5583, '2016-08-11 01:26:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:21.600086Z","gw_timestamp":2428783491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI2MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5585, '2016-08-11 01:26:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:35.979606Z","gw_timestamp":2443146211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5587, '2016-08-11 01:26:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:50.335862Z","gw_timestamp":2457509867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjmuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5586, '2016-08-11 01:26:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:26:43.137963Z","gw_timestamp":2450328043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI2MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5614, '2016-08-11 01:30:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:57.068469Z","gw_timestamp":2644234659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjmzOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5616, '2016-08-11 01:30:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:11.408469Z","gw_timestamp":2658597691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5618, '2016-08-11 01:30:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:25.768721Z","gw_timestamp":2672961547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5620, '2016-08-11 01:30:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:40.13422Z","gw_timestamp":2687325107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0MjivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5622, '2016-08-11 01:31:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:54.496467Z","gw_timestamp":2701688651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI2MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5624, '2016-08-11 01:31:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:08.885001Z","gw_timestamp":2716052515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5626, '2016-08-11 01:31:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:23.22684Z","gw_timestamp":2730415339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5628, '2016-08-11 01:31:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:37.589044Z","gw_timestamp":2744778987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5630, '2016-08-11 01:32:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:59.143368Z","gw_timestamp":2766324475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI2MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5632, '2016-08-11 01:32:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:13.498223Z","gw_timestamp":2780688123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI2MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5634, '2016-08-11 01:32:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:27.879857Z","gw_timestamp":2795051779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5636, '2016-08-11 01:32:43', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1299,"f_cnt_down":2105,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:51:58.202369Z","gw_timestamp":159559756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjE3MDA0NTQJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5638, '2016-08-11 01:32:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:49.419603Z","gw_timestamp":2816597363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5589, '2016-08-11 01:27:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:27:04.691954Z","gw_timestamp":2471873627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjmuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5645, '2016-08-11 01:33:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:39.680191Z","gw_timestamp":2866870259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5647, '2016-08-11 01:34:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:01.227854Z","gw_timestamp":2888415843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5649, '2016-08-11 01:34:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:15.592101Z","gw_timestamp":2902779499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5651, '2016-08-11 01:34:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:29.977623Z","gw_timestamp":2917143259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5653, '2016-08-11 01:34:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:44.315597Z","gw_timestamp":2931505771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5655, '2016-08-11 01:35:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:58.680482Z","gw_timestamp":2945868587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5657, '2016-08-11 01:35:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:13.039235Z","gw_timestamp":2960232243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5659, '2016-08-11 01:35:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:27.399482Z","gw_timestamp":2974596003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5661, '2016-08-11 01:35:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:34.58011Z","gw_timestamp":2981777411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5663, '2016-08-11 01:36:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:56.135993Z","gw_timestamp":3003322371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI2MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5665, '2016-08-11 01:36:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:10.49823Z","gw_timestamp":3017685923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5667, '2016-08-11 01:36:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:24.85311Z","gw_timestamp":3032048851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI2MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5669, '2016-08-11 01:36:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:39.215091Z","gw_timestamp":3046412395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5612, '2016-08-11 01:29:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:29:35.505335Z","gw_timestamp":2622689491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5654, '2016-08-11 01:35:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:51.498229Z","gw_timestamp":2938687283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5656, '2016-08-11 01:35:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:05.85961Z","gw_timestamp":2953050411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5658, '2016-08-11 01:35:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:20.233245Z","gw_timestamp":2967414171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5660, '2016-08-11 01:35:36', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":736,"f_cnt_down":1321,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:35:30.746528Z","gw_timestamp":1722274380,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:55:16.744314Z","gw_timestamp":358101700,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjIwMDA0NTkLcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5662, '2016-08-11 01:35:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:35:41.769858Z","gw_timestamp":2988958715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5664, '2016-08-11 01:36:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:03.307601Z","gw_timestamp":3010504195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4NTAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5666, '2016-08-11 01:36:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:17.680261Z","gw_timestamp":3024867019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5668, '2016-08-11 01:36:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:32.064682Z","gw_timestamp":3039230563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MzAxMjI2MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5670, '2016-08-11 01:36:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:46.396477Z","gw_timestamp":3053594331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5672, '2016-08-11 01:37:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:00.768723Z","gw_timestamp":3067957979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5674, '2016-08-11 01:37:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:15.125992Z","gw_timestamp":3082321635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5676, '2016-08-11 01:37:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:29.498359Z","gw_timestamp":3096685291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5615, '2016-08-11 01:30:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:04.229834Z","gw_timestamp":2651415763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5617, '2016-08-11 01:30:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:18.602477Z","gw_timestamp":2665779619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5619, '2016-08-11 01:30:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:32.96161Z","gw_timestamp":2680143275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5621, '2016-08-11 01:30:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:30:47.322594Z","gw_timestamp":2694506931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5623, '2016-08-11 01:31:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:01.680179Z","gw_timestamp":2708870587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI2MDA0MjivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5625, '2016-08-11 01:31:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:16.047224Z","gw_timestamp":2723234235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5627, '2016-08-11 01:31:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:30.412478Z","gw_timestamp":2737596955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2OTAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5629, '2016-08-11 01:31:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:31:51.947295Z","gw_timestamp":2759142547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5631, '2016-08-11 01:32:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:06.31959Z","gw_timestamp":2773506195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NjAxMjI2MDA0MjivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5633, '2016-08-11 01:32:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:20.685972Z","gw_timestamp":2787869851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5635, '2016-08-11 01:32:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:35.039226Z","gw_timestamp":2802233715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5637, '2016-08-11 01:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:42.226852Z","gw_timestamp":2809415435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5639, '2016-08-11 01:33:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:32:56.591088Z","gw_timestamp":2823779091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5641, '2016-08-11 01:33:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:10.957352Z","gw_timestamp":2838142851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjizCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5640, '2016-08-11 01:33:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:03.777731Z","gw_timestamp":2830961019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjizGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5642, '2016-08-11 01:33:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:18.129977Z","gw_timestamp":2845324675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5644, '2016-08-11 01:33:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:32.497341Z","gw_timestamp":2859688435,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI2MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5646, '2016-08-11 01:34:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:54.040233Z","gw_timestamp":2881234019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5648, '2016-08-11 01:34:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:08.405484Z","gw_timestamp":2895597571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5650, '2016-08-11 01:34:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:22.781703Z","gw_timestamp":2909961323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5652, '2016-08-11 01:34:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:34:37.140978Z","gw_timestamp":2924324563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI2MDA0Mjiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5680, '2016-08-11 01:38:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:58.217857Z","gw_timestamp":3125412707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5682, '2016-08-11 01:38:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:12.584113Z","gw_timestamp":3139775523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5684, '2016-08-11 01:38:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:26.945359Z","gw_timestamp":3154138139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5686, '2016-08-11 01:38:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:41.313883Z","gw_timestamp":3168501891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5688, '2016-08-11 01:39:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:55.669849Z","gw_timestamp":3182865651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5690, '2016-08-11 01:39:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:10.035244Z","gw_timestamp":3197229307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5692, '2016-08-11 01:39:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:24.401703Z","gw_timestamp":3211592963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MTAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5643, '2016-08-11 01:33:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:33:25.353994Z","gw_timestamp":2852506707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5673, '2016-08-11 01:37:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:07.98515Z","gw_timestamp":3075140011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5675, '2016-08-11 01:37:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:22.323983Z","gw_timestamp":3089503571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5677, '2016-08-11 01:37:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:36.678231Z","gw_timestamp":3103867323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5679, '2016-08-11 01:37:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:51.036237Z","gw_timestamp":3118230979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5681, '2016-08-11 01:38:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:05.404551Z","gw_timestamp":3132594107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5683, '2016-08-11 01:38:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:19.766939Z","gw_timestamp":3146956515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5685, '2016-08-11 01:38:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:34.1555Z","gw_timestamp":3161320067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5687, '2016-08-11 01:38:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:38:48.494999Z","gw_timestamp":3175683619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5689, '2016-08-11 01:39:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:02.851599Z","gw_timestamp":3190047579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5691, '2016-08-11 01:39:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:17.223858Z","gw_timestamp":3204411027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5693, '2016-08-11 01:39:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:31.579118Z","gw_timestamp":3218774787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5695, '2016-08-11 01:40:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:45.948357Z","gw_timestamp":3233138443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5697, '2016-08-11 01:40:10', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":821,"f_cnt_down":1520,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:40:07.503181Z","gw_timestamp":1999031172,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYxNDAxMjE4MDA0NTgWIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5671, '2016-08-11 01:37:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:36:53.590234Z","gw_timestamp":3060776155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0MjizKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5701, '2016-08-11 01:40:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:29.033248Z","gw_timestamp":3276229611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5731, '2016-08-11 01:44:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:57.308622Z","gw_timestamp":3484498859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5733, '2016-08-11 01:44:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:11.666096Z","gw_timestamp":3498861043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5735, '2016-08-11 01:44:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:26.033821Z","gw_timestamp":3513224595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5737, '2016-08-11 01:44:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:40.390502Z","gw_timestamp":3527588355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5739, '2016-08-11 01:45:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:54.758133Z","gw_timestamp":3541952011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5741, '2016-08-11 01:45:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:09.12195Z","gw_timestamp":3556315555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5743, '2016-08-11 01:45:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:23.479252Z","gw_timestamp":3570679315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5745, '2016-08-11 01:45:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:37.84863Z","gw_timestamp":3585043179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5747, '2016-08-11 01:46:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:52.216166Z","gw_timestamp":3599406731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5749, '2016-08-11 01:46:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:13.753755Z","gw_timestamp":3620952315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5751, '2016-08-11 01:46:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:28.14006Z","gw_timestamp":3635315971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5753, '2016-08-11 01:46:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:42.487251Z","gw_timestamp":3649679523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5678, '2016-08-11 01:37:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:37:43.85761Z","gw_timestamp":3111049155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5752, '2016-08-11 01:46:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:35.297633Z","gw_timestamp":3642497899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5754, '2016-08-11 01:46:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:49.671951Z","gw_timestamp":3656861451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5756, '2016-08-11 01:47:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:04.04907Z","gw_timestamp":3671225419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5758, '2016-08-11 01:47:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:18.398785Z","gw_timestamp":3685588859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5760, '2016-08-11 01:47:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:25.583385Z","gw_timestamp":3692770171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5762, '2016-08-11 01:47:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:39.937389Z","gw_timestamp":3707133099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5764, '2016-08-11 01:48:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:54.305633Z","gw_timestamp":3721496227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5770, '2016-08-11 01:48:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:37.391504Z","gw_timestamp":3764585523,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5772, '2016-08-11 01:49:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:51.744743Z","gw_timestamp":3778948971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5774, '2016-08-11 01:49:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:06.113017Z","gw_timestamp":3793312315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI2MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5776, '2016-08-11 01:49:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:20.475412Z","gw_timestamp":3807674931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5778, '2016-08-11 01:49:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:34.839624Z","gw_timestamp":3822038163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5780, '2016-08-11 01:49:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:49.229003Z","gw_timestamp":3836401923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5694, '2016-08-11 01:39:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:39:38.763022Z","gw_timestamp":3225956611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5696, '2016-08-11 01:40:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:00.30464Z","gw_timestamp":3247502203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5698, '2016-08-11 01:40:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:07.485499Z","gw_timestamp":3254684131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5700, '2016-08-11 01:40:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:21.853614Z","gw_timestamp":3269047891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0MjivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5702, '2016-08-11 01:40:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:36.231122Z","gw_timestamp":3283411443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5704, '2016-08-11 01:40:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:50.58838Z","gw_timestamp":3297775299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5706, '2016-08-11 01:41:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:04.958616Z","gw_timestamp":3312138747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI2MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5708, '2016-08-11 01:41:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:19.314626Z","gw_timestamp":3326502611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5710, '2016-08-11 01:41:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:33.672866Z","gw_timestamp":3340866163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5712, '2016-08-11 01:41:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:48.035369Z","gw_timestamp":3355229819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5714, '2016-08-11 01:42:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:02.40649Z","gw_timestamp":3369593683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5716, '2016-08-11 01:42:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:16.767751Z","gw_timestamp":3383956603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5718, '2016-08-11 01:42:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:23.952375Z","gw_timestamp":3391138227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5720, '2016-08-11 01:42:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:38.30462Z","gw_timestamp":3405501043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5699, '2016-08-11 01:40:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:14.696625Z","gw_timestamp":3261865963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5703, '2016-08-11 01:40:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:43.394519Z","gw_timestamp":3290593267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5705, '2016-08-11 01:41:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:40:57.769746Z","gw_timestamp":3304957027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjiumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5707, '2016-08-11 01:41:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:12.12199Z","gw_timestamp":3319320683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5709, '2016-08-11 01:41:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:26.490733Z","gw_timestamp":3333684339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5711, '2016-08-11 01:41:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:40.87275Z","gw_timestamp":3348047987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5713, '2016-08-11 01:42:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:41:55.238236Z","gw_timestamp":3362411851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5715, '2016-08-11 01:42:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:09.585094Z","gw_timestamp":3376775403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5717, '2016-08-11 01:42:26', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":817,"f_cnt_down":1476,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:02:06.169289Z","gw_timestamp":767526676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ4NjAxMjI3MDA0MzILUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5719, '2016-08-11 01:42:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:31.127125Z","gw_timestamp":3398319323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjiziw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5721, '2016-08-11 01:42:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:45.508686Z","gw_timestamp":3412682771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5723, '2016-08-11 01:43:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:59.860893Z","gw_timestamp":3427046315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5725, '2016-08-11 01:43:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:14.218136Z","gw_timestamp":3441409243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5727, '2016-08-11 01:43:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:28.581118Z","gw_timestamp":3455772267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjizmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5722, '2016-08-11 01:43:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:42:52.676869Z","gw_timestamp":3419864699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5724, '2016-08-11 01:43:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:07.040373Z","gw_timestamp":3434228251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5726, '2016-08-11 01:43:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:21.3975Z","gw_timestamp":3448590971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5728, '2016-08-11 01:43:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:35.772067Z","gw_timestamp":3462953683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5730, '2016-08-11 01:44:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:50.128Z","gw_timestamp":3477317339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjiuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5732, '2016-08-11 01:44:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:04.484249Z","gw_timestamp":3491679947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5734, '2016-08-11 01:44:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:18.840632Z","gw_timestamp":3506042667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MzAxMjI2MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5736, '2016-08-11 01:44:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:33.214893Z","gw_timestamp":3520406419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5738, '2016-08-11 01:44:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:44:47.578255Z","gw_timestamp":3534770179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5740, '2016-08-11 01:45:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:01.961651Z","gw_timestamp":3549133835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5742, '2016-08-11 01:45:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:16.311892Z","gw_timestamp":3563497595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5744, '2016-08-11 01:45:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:30.663877Z","gw_timestamp":3577861251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5746, '2016-08-11 01:45:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:45:45.028249Z","gw_timestamp":3592224907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5748, '2016-08-11 01:46:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:06.569146Z","gw_timestamp":3613770491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5729, '2016-08-11 01:43:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":4996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:43:42.939372Z","gw_timestamp":3470135515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5757, '2016-08-11 01:47:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:11.208887Z","gw_timestamp":3678407139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5759, '2016-08-11 01:47:28', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1300,"f_cnt_down":2106,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:07:09.02525Z","gw_timestamp":1070382636,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU3MDAxMjE3MDA0NTQHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5761, '2016-08-11 01:47:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:32.751742Z","gw_timestamp":3699951683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5763, '2016-08-11 01:47:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:47:47.113008Z","gw_timestamp":3714314299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5765, '2016-08-11 01:48:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:01.509579Z","gw_timestamp":3728678059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5767, '2016-08-11 01:48:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:15.850919Z","gw_timestamp":3743041715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5769, '2016-08-11 01:48:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:30.202884Z","gw_timestamp":3757404427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjiyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5771, '2016-08-11 01:48:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:44.572121Z","gw_timestamp":3771767043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5773, '2016-08-11 01:49:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:58.943677Z","gw_timestamp":3786130795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI2MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5775, '2016-08-11 01:49:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:13.300641Z","gw_timestamp":3800493411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5777, '2016-08-11 01:49:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:27.65789Z","gw_timestamp":3814856131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5779, '2016-08-11 01:49:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:42.02125Z","gw_timestamp":3829219891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5781, '2016-08-11 01:50:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:49:56.3865Z","gw_timestamp":3843583643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5750, '2016-08-11 01:46:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:20.938384Z","gw_timestamp":3628134043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI2MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5766, '2016-08-11 01:48:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:08.671475Z","gw_timestamp":3735859779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5768, '2016-08-11 01:48:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:48:23.042423Z","gw_timestamp":3750223019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5784, '2016-08-11 01:50:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:17.926394Z","gw_timestamp":3865129027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5755, '2016-08-11 01:47:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:46:56.855639Z","gw_timestamp":3664043387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5782, '2016-08-11 01:50:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:03.579346Z","gw_timestamp":3850765259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5783, '2016-08-11 01:50:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:10.743762Z","gw_timestamp":3857947195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5785, '2016-08-11 01:50:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:25.118015Z","gw_timestamp":3872310955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5786, '2016-08-11 01:50:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:32.287638Z","gw_timestamp":3879492683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5787, '2016-08-11 01:50:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:39.483768Z","gw_timestamp":3886674707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5788, '2016-08-11 01:50:47', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":737,"f_cnt_down":1322,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:50:41.519949Z","gw_timestamp":2633048260,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:10:27.517793Z","gw_timestamp":1268875180,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjIwMDA0NTkK0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5789, '2016-08-11 01:50:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:46.651882Z","gw_timestamp":3893856539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5790, '2016-08-11 01:51:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:50:53.835645Z","gw_timestamp":3901038371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5791, '2016-08-11 01:51:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:01.025268Z","gw_timestamp":3908220299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5792, '2016-08-11 01:51:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:08.209881Z","gw_timestamp":3915402019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5793, '2016-08-11 01:51:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:15.391521Z","gw_timestamp":3922583851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5794, '2016-08-11 01:51:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:22.571148Z","gw_timestamp":3929765779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5795, '2016-08-11 01:51:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:29.749768Z","gw_timestamp":3936947395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI2MDA0MjivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5796, '2016-08-11 01:51:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:36.939502Z","gw_timestamp":3944128499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5797, '2016-08-11 01:51:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:44.107023Z","gw_timestamp":3951310219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5799, '2016-08-11 01:52:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:58.475254Z","gw_timestamp":3965673035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5801, '2016-08-11 01:52:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:12.851774Z","gw_timestamp":3980036699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5803, '2016-08-11 01:52:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:27.199886Z","gw_timestamp":3994400451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5805, '2016-08-11 01:52:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:41.566407Z","gw_timestamp":4008763067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjiyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5807, '2016-08-11 01:53:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:55.932356Z","gw_timestamp":4023125675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5809, '2016-08-11 01:53:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:10.287651Z","gw_timestamp":4037489435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5811, '2016-08-11 01:53:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:24.6569Z","gw_timestamp":4051853195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjiyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5813, '2016-08-11 01:53:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:39.012281Z","gw_timestamp":4066215915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5815, '2016-08-11 01:54:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:53.402516Z","gw_timestamp":4080579563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU5OTAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5817, '2016-08-11 01:54:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:07.770905Z","gw_timestamp":4094943427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5819, '2016-08-11 01:54:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:22.103023Z","gw_timestamp":4109307083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5821, '2016-08-11 01:54:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:36.472272Z","gw_timestamp":4123670739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5823, '2016-08-11 01:55:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:50.836527Z","gw_timestamp":4138034387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5798, '2016-08-11 01:52:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:51:51.303777Z","gw_timestamp":3958491843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5828, '2016-08-11 01:55:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:26.742775Z","gw_timestamp":4173943627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5830, '2016-08-11 01:55:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:41.124616Z","gw_timestamp":4188307283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5832, '2016-08-11 01:56:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:55.469273Z","gw_timestamp":4202671043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5834, '2016-08-11 01:56:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:09.826535Z","gw_timestamp":4217033763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI2MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5836, '2016-08-11 01:56:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:24.212107Z","gw_timestamp":4231397419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjiuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5838, '2016-08-11 01:56:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:38.559159Z","gw_timestamp":4245761067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5840, '2016-08-11 01:57:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:52.919615Z","gw_timestamp":4260124827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5842, '2016-08-11 01:57:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:07.29253Z","gw_timestamp":4274487443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5844, '2016-08-11 01:57:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:21.652191Z","gw_timestamp":4288851203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5846, '2016-08-11 01:57:37', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":818,"f_cnt_down":1477,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:57:31.016863Z","gw_timestamp":3042545380,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:17:17.014729Z","gw_timestamp":1678372116,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ4NzAxMjI4MDA0MzIisg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5848, '2016-08-11 01:57:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:43.199913Z","gw_timestamp":15429075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI2MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5850, '2016-08-11 01:58:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:57.559158Z","gw_timestamp":29791371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":12,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjizOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5800, '2016-08-11 01:52:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:05.660898Z","gw_timestamp":3972854867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5802, '2016-08-11 01:52:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:20.018521Z","gw_timestamp":3987218523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5804, '2016-08-11 01:52:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:34.38853Z","gw_timestamp":4001581763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5806, '2016-08-11 01:52:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:52:48.743025Z","gw_timestamp":4015944371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5808, '2016-08-11 01:53:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:03.135277Z","gw_timestamp":4030307603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5810, '2016-08-11 01:53:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:17.477419Z","gw_timestamp":4044671267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5812, '2016-08-11 01:53:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:31.831635Z","gw_timestamp":4059034715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjiyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5814, '2016-08-11 01:53:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:53:46.197902Z","gw_timestamp":4073397531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5816, '2016-08-11 01:54:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:00.559153Z","gw_timestamp":4087761499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5818, '2016-08-11 01:54:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:14.929387Z","gw_timestamp":4102125147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5820, '2016-08-11 01:54:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:29.293651Z","gw_timestamp":4116488803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5822, '2016-08-11 01:54:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:54:43.664007Z","gw_timestamp":4130852563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5824, '2016-08-11 01:55:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:05.1939Z","gw_timestamp":4152398051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5827, '2016-08-11 01:55:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:19.568397Z","gw_timestamp":4166761595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5825, '2016-08-11 01:55:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:12.382537Z","gw_timestamp":4159580083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5859, '2016-08-11 01:59:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:02.191912Z","gw_timestamp":94425635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5861, '2016-08-11 01:59:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:16.552166Z","gw_timestamp":108789491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5863, '2016-08-11 01:59:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:30.943003Z","gw_timestamp":123153147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5865, '2016-08-11 01:59:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:45.275664Z","gw_timestamp":137516907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5867, '2016-08-11 02:00:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:59.648911Z","gw_timestamp":151880451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5869, '2016-08-11 02:00:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:14.005299Z","gw_timestamp":166244211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5871, '2016-08-11 02:00:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:28.388304Z","gw_timestamp":180607867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5873, '2016-08-11 02:00:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:42.747044Z","gw_timestamp":194971627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5875, '2016-08-11 02:01:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:57.110252Z","gw_timestamp":209334755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5877, '2016-08-11 02:01:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:11.461282Z","gw_timestamp":223697267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5879, '2016-08-11 02:01:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:25.818546Z","gw_timestamp":238060715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5881, '2016-08-11 02:01:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:40.185289Z","gw_timestamp":252424371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5889, '2016-08-11 02:02:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:37.642283Z","gw_timestamp":309878259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5826, '2016-08-11 01:55:20', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":822,"f_cnt_down":1521,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T01:55:18.274346Z","gw_timestamp":2909802796,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:04.272202Z","gw_timestamp":1545629588,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwMDAxMjE4MDA0NTgX0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5854, '2016-08-11 01:58:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:26.28766Z","gw_timestamp":58518059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5856, '2016-08-11 01:58:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:40.678251Z","gw_timestamp":72880459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI2MDA0Mjiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5858, '2016-08-11 01:59:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:55.010876Z","gw_timestamp":87243907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5860, '2016-08-11 01:59:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:09.37754Z","gw_timestamp":101607667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5862, '2016-08-11 01:59:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:23.730787Z","gw_timestamp":115971323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5864, '2016-08-11 01:59:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:38.100045Z","gw_timestamp":130334971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5866, '2016-08-11 02:00:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:59:52.462288Z","gw_timestamp":144698627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5868, '2016-08-11 02:00:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:06.840294Z","gw_timestamp":159062387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5870, '2016-08-11 02:00:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:21.192913Z","gw_timestamp":173426043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI2MDA0Mjiyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5872, '2016-08-11 02:00:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:35.553706Z","gw_timestamp":187789803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5874, '2016-08-11 02:00:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:00:49.915942Z","gw_timestamp":202153243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5876, '2016-08-11 02:01:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:04.28267Z","gw_timestamp":216516171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5829, '2016-08-11 01:55:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:33.942817Z","gw_timestamp":4181125459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NjAxMjI2MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5831, '2016-08-11 01:55:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:55:48.299907Z","gw_timestamp":4195489219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5833, '2016-08-11 01:56:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:02.656907Z","gw_timestamp":4209852243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5835, '2016-08-11 01:56:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:17.014281Z","gw_timestamp":4224215587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI2MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5837, '2016-08-11 01:56:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:31.376485Z","gw_timestamp":4238579139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5839, '2016-08-11 01:56:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:56:45.739784Z","gw_timestamp":4252943003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5841, '2016-08-11 01:57:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:00.097901Z","gw_timestamp":4267305923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5843, '2016-08-11 01:57:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:14.478552Z","gw_timestamp":4281669371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5845, '2016-08-11 01:57:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:28.827643Z","gw_timestamp":1065627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5847, '2016-08-11 01:57:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:36.010286Z","gw_timestamp":8247555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5849, '2016-08-11 01:57:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:57:50.398994Z","gw_timestamp":22610275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5851, '2016-08-11 01:58:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:04.748035Z","gw_timestamp":36972987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5853, '2016-08-11 01:58:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:19.104024Z","gw_timestamp":51336643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5855, '2016-08-11 01:58:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:33.464286Z","gw_timestamp":65699259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5852, '2016-08-11 01:58:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:11.926399Z","gw_timestamp":44154715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5880, '2016-08-11 02:01:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:33.010487Z","gw_timestamp":245242539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5882, '2016-08-11 02:01:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:47.390902Z","gw_timestamp":259606299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MjAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5884, '2016-08-11 02:02:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:01.733787Z","gw_timestamp":273968915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5886, '2016-08-11 02:02:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:23.286188Z","gw_timestamp":295514499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5888, '2016-08-11 02:02:39', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1301,"f_cnt_down":2107,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:02:33.86852Z","gw_timestamp":3345397188,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0NDAxMjE3MDA0NTQJYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5962, '2016-08-11 02:11:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:21.909782Z","gw_timestamp":834143099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI2MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5964, '2016-08-11 02:11:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:36.27796Z","gw_timestamp":848506859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5966, '2016-08-11 02:11:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:50.62307Z","gw_timestamp":862870411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5968, '2016-08-11 02:12:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:04.99431Z","gw_timestamp":877234067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI2MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6032, '2016-08-11 02:19:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:37.444283Z","gw_timestamp":1329685731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI2MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6034, '2016-08-11 02:20:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:51.809718Z","gw_timestamp":1344048763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6040, '2016-08-11 02:20:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:34.887719Z","gw_timestamp":1387137851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6042, '2016-08-11 02:20:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:49.270981Z","gw_timestamp":1401501091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5857, '2016-08-11 01:58:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T01:58:47.824808Z","gw_timestamp":80061971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5883, '2016-08-11 02:01:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:54.544153Z","gw_timestamp":266787611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5885, '2016-08-11 02:02:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:08.911348Z","gw_timestamp":281150843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5887, '2016-08-11 02:02:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:30.463244Z","gw_timestamp":302696323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0Mjiuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5919, '2016-08-11 02:06:29', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":738,"f_cnt_down":1323,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:26:02.978505Z","gw_timestamp":2204335892,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjIwMDA0NTgOUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5921, '2016-08-11 02:06:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:34.641934Z","gw_timestamp":546875219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5923, '2016-08-11 02:06:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:49.015533Z","gw_timestamp":561238139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5925, '2016-08-11 02:07:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:03.36555Z","gw_timestamp":575600755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5927, '2016-08-11 02:07:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:17.727803Z","gw_timestamp":589964203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5929, '2016-08-11 02:07:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:32.087306Z","gw_timestamp":604327963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5931, '2016-08-11 02:07:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:46.447313Z","gw_timestamp":618691195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5933, '2016-08-11 02:08:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:00.813669Z","gw_timestamp":633054331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5935, '2016-08-11 02:08:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:15.202303Z","gw_timestamp":647418091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI2MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5937, '2016-08-11 02:08:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:29.550776Z","gw_timestamp":661781747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5878, '2016-08-11 02:01:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:01:18.640913Z","gw_timestamp":230878883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5890, '2016-08-11 02:02:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:44.835153Z","gw_timestamp":317059979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5892, '2016-08-11 02:03:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:59.21408Z","gw_timestamp":331422595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5894, '2016-08-11 02:03:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:13.556442Z","gw_timestamp":345786451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5896, '2016-08-11 02:03:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:27.916428Z","gw_timestamp":360150107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjiumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5898, '2016-08-11 02:03:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:42.278798Z","gw_timestamp":374512827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5900, '2016-08-11 02:04:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:56.63605Z","gw_timestamp":388876587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5902, '2016-08-11 02:04:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:11.010303Z","gw_timestamp":403240243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5904, '2016-08-11 02:04:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:25.364615Z","gw_timestamp":417603787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5906, '2016-08-11 02:04:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:39.734778Z","gw_timestamp":431967651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5908, '2016-08-11 02:05:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:01.278681Z","gw_timestamp":453513131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5910, '2016-08-11 02:05:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:15.641308Z","gw_timestamp":467876891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI2MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5912, '2016-08-11 02:05:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:29.997303Z","gw_timestamp":482240443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5914, '2016-08-11 02:05:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:44.35955Z","gw_timestamp":496604307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5891, '2016-08-11 02:03:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:02:52.002558Z","gw_timestamp":324241395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5893, '2016-08-11 02:03:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:06.374617Z","gw_timestamp":338604627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI2MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5895, '2016-08-11 02:03:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:20.730137Z","gw_timestamp":352968283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5897, '2016-08-11 02:03:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:35.092219Z","gw_timestamp":367331723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI2MDA0Mjiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5899, '2016-08-11 02:03:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:03:49.456426Z","gw_timestamp":381694547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5901, '2016-08-11 02:04:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:03.813662Z","gw_timestamp":396058307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5903, '2016-08-11 02:04:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:18.210186Z","gw_timestamp":410422067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5905, '2016-08-11 02:04:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:32.568452Z","gw_timestamp":424785723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5907, '2016-08-11 02:05:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:04:54.10131Z","gw_timestamp":446331203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5909, '2016-08-11 02:05:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:08.485646Z","gw_timestamp":460695067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI2MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5911, '2016-08-11 02:05:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:22.838919Z","gw_timestamp":475058611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5913, '2016-08-11 02:05:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:37.183875Z","gw_timestamp":489422267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MTAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5915, '2016-08-11 02:05:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:51.550186Z","gw_timestamp":503786131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NzAxMjI2MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5917, '2016-08-11 02:06:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:05.907636Z","gw_timestamp":518149475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5916, '2016-08-11 02:06:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:05:58.748077Z","gw_timestamp":510967955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MTAxMjI2MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5918, '2016-08-11 02:06:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:13.098042Z","gw_timestamp":525330571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MDAxMjI2MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5920, '2016-08-11 02:06:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:27.461588Z","gw_timestamp":539693283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5922, '2016-08-11 02:06:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:41.819919Z","gw_timestamp":554057051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5924, '2016-08-11 02:07:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:06:56.191206Z","gw_timestamp":568419763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5926, '2016-08-11 02:07:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:10.544181Z","gw_timestamp":582782483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ3MzAxMjI2MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5928, '2016-08-11 02:07:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:24.924195Z","gw_timestamp":597146131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5930, '2016-08-11 02:07:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:39.270154Z","gw_timestamp":611509891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5932, '2016-08-11 02:08:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:07:53.63613Z","gw_timestamp":625872507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5934, '2016-08-11 02:08:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:07.995304Z","gw_timestamp":640236259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5936, '2016-08-11 02:08:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:22.376106Z","gw_timestamp":654599915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5938, '2016-08-11 02:08:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:36.718811Z","gw_timestamp":668963779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5940, '2016-08-11 02:08:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:51.086052Z","gw_timestamp":683327227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5942, '2016-08-11 02:09:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:05.47519Z","gw_timestamp":697690987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5939, '2016-08-11 02:08:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:43.901425Z","gw_timestamp":676145403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5943, '2016-08-11 02:09:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:12.638936Z","gw_timestamp":704872707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5945, '2016-08-11 02:09:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:27.001318Z","gw_timestamp":719236675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5947, '2016-08-11 02:09:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:41.360561Z","gw_timestamp":733599283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5977, '2016-08-11 02:13:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:02.457843Z","gw_timestamp":934687843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI2MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5979, '2016-08-11 02:13:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:16.806695Z","gw_timestamp":949051707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI2MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5981, '2016-08-11 02:13:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:31.167134Z","gw_timestamp":963415363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5983, '2016-08-11 02:13:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:45.538254Z","gw_timestamp":977778707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5985, '2016-08-11 02:14:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:59.897446Z","gw_timestamp":992141739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5987, '2016-08-11 02:14:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:14.267689Z","gw_timestamp":1006505491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5989, '2016-08-11 02:14:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:35.811943Z","gw_timestamp":1028050979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI2MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5991, '2016-08-11 02:14:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:50.174945Z","gw_timestamp":1042414731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI2MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5993, '2016-08-11 02:15:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:04.547561Z","gw_timestamp":1056778179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5995, '2016-08-11 02:15:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:18.897665Z","gw_timestamp":1071141003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5941, '2016-08-11 02:09:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:08:58.270675Z","gw_timestamp":690509155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI2MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5949, '2016-08-11 02:10:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:55.73352Z","gw_timestamp":747962947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI2MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5951, '2016-08-11 02:10:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:17.266463Z","gw_timestamp":769507795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5953, '2016-08-11 02:10:30', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":823,"f_cnt_down":1522,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:15.044578Z","gw_timestamp":2456401964,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDY0OTAxMjE4MDA0NTcmgg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5955, '2016-08-11 02:10:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:31.634007Z","gw_timestamp":783870931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI2MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5957, '2016-08-11 02:10:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:45.994004Z","gw_timestamp":798234899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI2MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5959, '2016-08-11 02:11:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:00.36557Z","gw_timestamp":812598555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5961, '2016-08-11 02:11:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:14.721821Z","gw_timestamp":826961379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI2MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5963, '2016-08-11 02:11:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:29.082074Z","gw_timestamp":841324827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5965, '2016-08-11 02:11:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:43.44531Z","gw_timestamp":855688475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5967, '2016-08-11 02:12:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:57.814816Z","gw_timestamp":870052339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MzAxMjI2MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5969, '2016-08-11 02:12:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:12.202408Z","gw_timestamp":884415155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5971, '2016-08-11 02:12:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:33.71782Z","gw_timestamp":905960539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5973, '2016-08-11 02:12:43', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":819,"f_cnt_down":1478,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:12:41.859386Z","gw_timestamp":3953388356,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI5MDA0MzEJsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5944, '2016-08-11 02:09:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:19.821831Z","gw_timestamp":712054739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5946, '2016-08-11 02:09:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:34.180936Z","gw_timestamp":726418195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5948, '2016-08-11 02:09:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:09:48.53819Z","gw_timestamp":740781115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5950, '2016-08-11 02:10:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:10.088068Z","gw_timestamp":762326491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5952, '2016-08-11 02:10:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:24.444306Z","gw_timestamp":776689315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5954, '2016-08-11 02:10:32', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":824,"f_cnt_down":1523,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:10:29.046674Z","gw_timestamp":3820575580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDY0OTAxMjE4MDA0NTcmgg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5956, '2016-08-11 02:10:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:38.807694Z","gw_timestamp":791052971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI2MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5958, '2016-08-11 02:11:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:10:53.178939Z","gw_timestamp":805416731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5960, '2016-08-11 02:11:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:11:07.532193Z","gw_timestamp":819780283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5970, '2016-08-11 02:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:19.351556Z","gw_timestamp":891596779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI2MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5972, '2016-08-11 02:12:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:40.897426Z","gw_timestamp":913142363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5974, '2016-08-11 02:12:48', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":820,"f_cnt_down":1479,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:32:27.857305Z","gw_timestamp":2589214692,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI5MDA0MzEJsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5976, '2016-08-11 02:13:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:55.267706Z","gw_timestamp":927506019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5978, '2016-08-11 02:13:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:09.631326Z","gw_timestamp":941869771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNDAxMjI2MDA0Mjiuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5975, '2016-08-11 02:12:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:12:48.105952Z","gw_timestamp":920324195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5999, '2016-08-11 02:15:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:47.62395Z","gw_timestamp":1099868515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6001, '2016-08-11 02:16:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:02.006465Z","gw_timestamp":1114232171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjeuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6003, '2016-08-11 02:16:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:16.35258Z","gw_timestamp":1128594779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6005, '2016-08-11 02:16:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:30.709825Z","gw_timestamp":1142958435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6007, '2016-08-11 02:16:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:45.086081Z","gw_timestamp":1157322299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6009, '2016-08-11 02:17:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:59.439547Z","gw_timestamp":1171685851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6011, '2016-08-11 02:17:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:13.81071Z","gw_timestamp":1186049611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI2MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6013, '2016-08-11 02:17:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:28.17195Z","gw_timestamp":1200413371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6015, '2016-08-11 02:17:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:42.533206Z","gw_timestamp":1214776923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6017, '2016-08-11 02:17:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:49.72282Z","gw_timestamp":1221958955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6019, '2016-08-11 02:18:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:04.083083Z","gw_timestamp":1236322611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6021, '2016-08-11 02:18:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:18.437338Z","gw_timestamp":1250686267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6023, '2016-08-11 02:18:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:32.816167Z","gw_timestamp":1265050019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5980, '2016-08-11 02:13:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:23.988449Z","gw_timestamp":956233531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5982, '2016-08-11 02:13:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:38.362792Z","gw_timestamp":970597091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5984, '2016-08-11 02:14:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:13:52.729093Z","gw_timestamp":984959803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5986, '2016-08-11 02:14:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:07.07532Z","gw_timestamp":999323771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5988, '2016-08-11 02:14:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:21.450326Z","gw_timestamp":1013687315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5990, '2016-08-11 02:14:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:42.989008Z","gw_timestamp":1035232691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI2MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5992, '2016-08-11 02:15:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:14:57.354835Z","gw_timestamp":1049596459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI2MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5994, '2016-08-11 02:15:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:11.721357Z","gw_timestamp":1063959691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5996, '2016-08-11 02:15:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:26.074072Z","gw_timestamp":1078322827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5998, '2016-08-11 02:15:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:40.449287Z","gw_timestamp":1092686691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6000, '2016-08-11 02:16:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:54.823424Z","gw_timestamp":1107050347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjey+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6002, '2016-08-11 02:16:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:09.183217Z","gw_timestamp":1121413579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6004, '2016-08-11 02:16:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:23.533205Z","gw_timestamp":1135776819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0Mjeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6006, '2016-08-11 02:16:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:37.894708Z","gw_timestamp":1150140475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (5997, '2016-08-11 02:15:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:15:33.257696Z","gw_timestamp":1085504659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6027, '2016-08-11 02:19:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:01.549488Z","gw_timestamp":1293776291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6029, '2016-08-11 02:19:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:15.899455Z","gw_timestamp":1308140043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6037, '2016-08-11 02:20:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:13.348591Z","gw_timestamp":1365593827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6039, '2016-08-11 02:20:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:27.713835Z","gw_timestamp":1379956547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6041, '2016-08-11 02:20:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:42.069466Z","gw_timestamp":1394319155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6008, '2016-08-11 02:17:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:16:52.254705Z","gw_timestamp":1164504027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6010, '2016-08-11 02:17:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:06.62595Z","gw_timestamp":1178867891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI2MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6012, '2016-08-11 02:17:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:20.989576Z","gw_timestamp":1193231539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6014, '2016-08-11 02:17:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:35.355703Z","gw_timestamp":1207595195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6016, '2016-08-11 02:17:51', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1302,"f_cnt_down":2108,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:17:44.689763Z","gw_timestamp":4256218884,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:55.720402Z","gw_timestamp":2892045084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU4NDAxMjE3MDA0NTQKgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6018, '2016-08-11 02:18:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:17:56.935541Z","gw_timestamp":1229140675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI2MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6020, '2016-08-11 02:18:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:11.257716Z","gw_timestamp":1243504435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6022, '2016-08-11 02:18:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:25.628084Z","gw_timestamp":1257868091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6024, '2016-08-11 02:18:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:39.992335Z","gw_timestamp":1272231011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6026, '2016-08-11 02:19:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:54.356584Z","gw_timestamp":1286594667,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6028, '2016-08-11 02:19:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:08.758111Z","gw_timestamp":1300958219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6030, '2016-08-11 02:19:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:23.074023Z","gw_timestamp":1315321875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI2MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6036, '2016-08-11 02:20:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:06.185352Z","gw_timestamp":1358412003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI2MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6025, '2016-08-11 02:18:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:18:47.163896Z","gw_timestamp":1279412739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6031, '2016-08-11 02:19:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:30.255713Z","gw_timestamp":1322503803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6033, '2016-08-11 02:19:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:44.638607Z","gw_timestamp":1336867459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6035, '2016-08-11 02:20:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:19:58.982554Z","gw_timestamp":1351230179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6043, '2016-08-11 02:21:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:56.434617Z","gw_timestamp":1408682915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6045, '2016-08-11 02:21:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:10.793701Z","gw_timestamp":1423046675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI2MDA0Mjeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6047, '2016-08-11 02:21:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:25.179236Z","gw_timestamp":1437410331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6049, '2016-08-11 02:21:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:32.339594Z","gw_timestamp":1444592163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0Mjeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6051, '2016-08-11 02:21:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:46.71584Z","gw_timestamp":1458955915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6053, '2016-08-11 02:22:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:01.084433Z","gw_timestamp":1473319467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MDAxMjI2MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6055, '2016-08-11 02:22:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:15.431189Z","gw_timestamp":1487682395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5ODAxMjI2MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6038, '2016-08-11 02:20:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:20:20.528215Z","gw_timestamp":1372775035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6046, '2016-08-11 02:21:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:17.97734Z","gw_timestamp":1430228403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6048, '2016-08-11 02:21:34', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":740,"f_cnt_down":1324,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:21:27.75561Z","gw_timestamp":184317548,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:38.786266Z","gw_timestamp":3115110948,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjE3MDA0NjEIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6050, '2016-08-11 02:21:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:39.528229Z","gw_timestamp":1451773987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI2MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6052, '2016-08-11 02:22:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:53.884546Z","gw_timestamp":1466137747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6054, '2016-08-11 02:22:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:08.247587Z","gw_timestamp":1480501291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI2MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6056, '2016-08-11 02:22:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:22.622345Z","gw_timestamp":1494864011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI2MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6057, '2016-08-11 02:22:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:44.168962Z","gw_timestamp":1516409595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI2MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6058, '2016-08-11 02:22:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:51.352883Z","gw_timestamp":1523591531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6059, '2016-08-11 02:23:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:22:58.521222Z","gw_timestamp":1530773355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6060, '2016-08-11 02:23:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:05.704982Z","gw_timestamp":1537955291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0MjezGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6061, '2016-08-11 02:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:12.887635Z","gw_timestamp":1545137115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI2MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6062, '2016-08-11 02:23:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:20.066104Z","gw_timestamp":1552318835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6044, '2016-08-11 02:21:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:21:03.618095Z","gw_timestamp":1415864643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6064, '2016-08-11 02:23:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:34.439461Z","gw_timestamp":1566682595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI2MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6065, '2016-08-11 02:23:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:41.623347Z","gw_timestamp":1573864315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6066, '2016-08-11 02:23:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:48.804848Z","gw_timestamp":1581046147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6081, '2016-08-11 02:25:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:36.519219Z","gw_timestamp":1688773035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6082, '2016-08-11 02:25:46', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":824,"f_cnt_down":1524,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:25:39.816749Z","gw_timestamp":436378812,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:33:50.847409Z","gw_timestamp":3367172092,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjE3MDA0NTkJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6083, '2016-08-11 02:25:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:43.707845Z","gw_timestamp":1695954235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI2MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6084, '2016-08-11 02:25:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:50.884558Z","gw_timestamp":1703135755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6085, '2016-08-11 02:26:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:58.083226Z","gw_timestamp":1710317579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6086, '2016-08-11 02:26:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:05.253722Z","gw_timestamp":1717499299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6101, '2016-08-11 02:27:53', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":820,"f_cnt_down":1480,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:27:52.701476Z","gw_timestamp":569263604,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:03.732154Z","gw_timestamp":3500056836,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-13.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ3NzAxMjMwMDA0MzAMAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6105, '2016-08-11 02:28:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:14.516219Z","gw_timestamp":1846770107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjezaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6106, '2016-08-11 02:28:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:21.698863Z","gw_timestamp":1853951411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6063, '2016-08-11 02:23:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:27.275234Z","gw_timestamp":1559500659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI2MDA0Mjeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6067, '2016-08-11 02:24:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:23:55.980347Z","gw_timestamp":1588228075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6068, '2016-08-11 02:24:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:03.166254Z","gw_timestamp":1595409483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6069, '2016-08-11 02:24:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:10.34058Z","gw_timestamp":1602590691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI2MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6070, '2016-08-11 02:24:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:17.521437Z","gw_timestamp":1609772723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI2MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6071, '2016-08-11 02:24:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:24.703845Z","gw_timestamp":1616954555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI2MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6072, '2016-08-11 02:24:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:31.910744Z","gw_timestamp":1624136379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6073, '2016-08-11 02:24:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:39.074081Z","gw_timestamp":1631318211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6074, '2016-08-11 02:24:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:46.25098Z","gw_timestamp":1638500035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6075, '2016-08-11 02:25:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:24:53.433475Z","gw_timestamp":1645681963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6076, '2016-08-11 02:25:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:00.615085Z","gw_timestamp":1652863691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0MjezWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6077, '2016-08-11 02:25:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:07.811993Z","gw_timestamp":1660045619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6078, '2016-08-11 02:25:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:14.9813Z","gw_timestamp":1667227451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI2MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6079, '2016-08-11 02:25:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:22.160978Z","gw_timestamp":1674409483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI2MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6080, '2016-08-11 02:25:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:25:29.353977Z","gw_timestamp":1681591411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6087, '2016-08-11 02:26:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:12.427472Z","gw_timestamp":1724681235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI2MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6088, '2016-08-11 02:26:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:19.609109Z","gw_timestamp":1731863051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI2MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6089, '2016-08-11 02:26:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:26.79373Z","gw_timestamp":1739044891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6090, '2016-08-11 02:26:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:33.984324Z","gw_timestamp":1746226819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6091, '2016-08-11 02:26:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:41.159973Z","gw_timestamp":1753408539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI2MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6092, '2016-08-11 02:26:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:48.348718Z","gw_timestamp":1760590371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI2MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6093, '2016-08-11 02:27:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:26:55.530346Z","gw_timestamp":1767772403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjeyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6094, '2016-08-11 02:27:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:02.71194Z","gw_timestamp":1774954227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6095, '2016-08-11 02:27:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:09.887481Z","gw_timestamp":1782135947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6096, '2016-08-11 02:27:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:17.061232Z","gw_timestamp":1789317051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6097, '2016-08-11 02:27:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:24.253994Z","gw_timestamp":1796498779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI2MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6098, '2016-08-11 02:27:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:31.426469Z","gw_timestamp":1803680499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6099, '2016-08-11 02:27:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:38.618273Z","gw_timestamp":1810862531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI2MDA0MjeuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6100, '2016-08-11 02:27:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:45.801002Z","gw_timestamp":1818044259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6102, '2016-08-11 02:28:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:27:52.993739Z","gw_timestamp":1825226083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6103, '2016-08-11 02:28:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:00.152477Z","gw_timestamp":1832407283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI2MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6104, '2016-08-11 02:28:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:07.335599Z","gw_timestamp":1839588803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMjAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6108, '2016-08-11 02:28:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:36.060229Z","gw_timestamp":1868315171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI2MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6109, '2016-08-11 02:28:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:43.263258Z","gw_timestamp":1875496995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6110, '2016-08-11 02:28:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:50.42874Z","gw_timestamp":1882678923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6111, '2016-08-11 02:29:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:57.612111Z","gw_timestamp":1889860027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6112, '2016-08-11 02:29:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:04.792726Z","gw_timestamp":1897041651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6113, '2016-08-11 02:29:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:11.972288Z","gw_timestamp":1904222851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4OTAxMjI2MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6114, '2016-08-11 02:29:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:19.164043Z","gw_timestamp":1911404259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6115, '2016-08-11 02:29:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:26.334625Z","gw_timestamp":1918586195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI2MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6116, '2016-08-11 02:29:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:33.517221Z","gw_timestamp":1925768123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6117, '2016-08-11 02:29:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:40.693852Z","gw_timestamp":1932949219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6107, '2016-08-11 02:28:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:28:28.908748Z","gw_timestamp":1861133243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6119, '2016-08-11 02:30:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:55.080378Z","gw_timestamp":1947312043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6120, '2016-08-11 02:30:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:02.254222Z","gw_timestamp":1954493347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6121, '2016-08-11 02:30:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:09.427805Z","gw_timestamp":1961675171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6122, '2016-08-11 02:30:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:16.60611Z","gw_timestamp":1968857003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6123, '2016-08-11 02:30:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:23.785738Z","gw_timestamp":1976038827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6124, '2016-08-11 02:30:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:30.978367Z","gw_timestamp":1983220651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6125, '2016-08-11 02:30:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:38.156988Z","gw_timestamp":1990402483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6126, '2016-08-11 02:31:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:52.519232Z","gw_timestamp":2004766243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6127, '2016-08-11 02:31:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:30:59.71408Z","gw_timestamp":2011948179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI2MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6128, '2016-08-11 02:31:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:06.885879Z","gw_timestamp":2019129899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6129, '2016-08-11 02:31:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:14.055378Z","gw_timestamp":2026311931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6130, '2016-08-11 02:31:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:21.244858Z","gw_timestamp":2033493763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6131, '2016-08-11 02:31:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:28.418494Z","gw_timestamp":2040675587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6118, '2016-08-11 02:29:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:29:47.88416Z","gw_timestamp":1940130731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI2MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6133, '2016-08-11 02:31:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:42.792684Z","gw_timestamp":2055039243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6134, '2016-08-11 02:31:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:49.995493Z","gw_timestamp":2062221275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6135, '2016-08-11 02:32:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:57.152978Z","gw_timestamp":2069403003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6136, '2016-08-11 02:32:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:04.338618Z","gw_timestamp":2076584619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6137, '2016-08-11 02:32:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:11.510228Z","gw_timestamp":2083766651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6138, '2016-08-11 02:32:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:18.691865Z","gw_timestamp":2090948371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5NjAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6139, '2016-08-11 02:32:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:25.89598Z","gw_timestamp":2098130203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjezaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6140, '2016-08-11 02:32:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:33.06424Z","gw_timestamp":2105312131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6141, '2016-08-11 02:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:40.25124Z","gw_timestamp":2112494067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6142, '2016-08-11 02:32:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:47.43321Z","gw_timestamp":2119675891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjeuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6143, '2016-08-11 02:32:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:32:54.599114Z","gw_timestamp":2126857619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI2MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6144, '2016-08-11 02:33:03', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1303,"f_cnt_down":2109,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:32:55.51154Z","gw_timestamp":872073820,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjE3MDA0NTQJ0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6145, '2016-08-11 02:33:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:01.783742Z","gw_timestamp":2134039651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6132, '2016-08-11 02:31:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:31:35.611112Z","gw_timestamp":2047857307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6147, '2016-08-11 02:33:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:16.156755Z","gw_timestamp":2148403307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6148, '2016-08-11 02:33:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:23.335558Z","gw_timestamp":2155585139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6149, '2016-08-11 02:33:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:30.526009Z","gw_timestamp":2162766963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6150, '2016-08-11 02:33:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:37.70086Z","gw_timestamp":2169948787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6151, '2016-08-11 02:33:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:44.876495Z","gw_timestamp":2177130723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6152, '2016-08-11 02:34:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:52.05737Z","gw_timestamp":2184312651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6153, '2016-08-11 02:34:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:59.242875Z","gw_timestamp":2191494275,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6154, '2016-08-11 02:34:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:06.438606Z","gw_timestamp":2198675787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0Mjeuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6155, '2016-08-11 02:34:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:13.603121Z","gw_timestamp":2205857091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6156, '2016-08-11 02:34:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:20.786746Z","gw_timestamp":2213038915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6157, '2016-08-11 02:34:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:27.967379Z","gw_timestamp":2220220643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI2MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6158, '2016-08-11 02:34:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:35.153948Z","gw_timestamp":2227402675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6159, '2016-08-11 02:34:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:42.332283Z","gw_timestamp":2234584499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6146, '2016-08-11 02:33:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:33:08.973358Z","gw_timestamp":2141221275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6161, '2016-08-11 02:35:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:03.890083Z","gw_timestamp":2256129051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6162, '2016-08-11 02:35:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:11.053505Z","gw_timestamp":2263310875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjezKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6163, '2016-08-11 02:35:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:18.243861Z","gw_timestamp":2270492595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6164, '2016-08-11 02:35:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:25.421425Z","gw_timestamp":2277674419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6165, '2016-08-11 02:35:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:32.605104Z","gw_timestamp":2284856459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6166, '2016-08-11 02:35:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:39.792943Z","gw_timestamp":2292038291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6167, '2016-08-11 02:35:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:46.975753Z","gw_timestamp":2299220115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6168, '2016-08-11 02:36:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:35:54.157005Z","gw_timestamp":2306401835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6169, '2016-08-11 02:36:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:01.345881Z","gw_timestamp":2313583771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0Mjeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6170, '2016-08-11 02:36:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:08.512255Z","gw_timestamp":2320765699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6185, '2016-08-11 02:37:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:49.05078Z","gw_timestamp":2421309515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6186, '2016-08-11 02:38:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:56.230884Z","gw_timestamp":2428491339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6187, '2016-08-11 02:38:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:03.418502Z","gw_timestamp":2435673275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6160, '2016-08-11 02:35:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:34:56.695867Z","gw_timestamp":2248947219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6171, '2016-08-11 02:36:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:15.688562Z","gw_timestamp":2327947531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ3OTAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6172, '2016-08-11 02:36:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:22.878625Z","gw_timestamp":2335129355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI2MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6173, '2016-08-11 02:36:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:30.063252Z","gw_timestamp":2342311075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6174, '2016-08-11 02:36:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:37.25024Z","gw_timestamp":2349492595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mje0iw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6175, '2016-08-11 02:36:45', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":741,"f_cnt_down":1325,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:36:38.532078Z","gw_timestamp":1095094468,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjE3MDA0NjMGoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6176, '2016-08-11 02:36:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:44.423494Z","gw_timestamp":2356673795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6177, '2016-08-11 02:36:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:51.626272Z","gw_timestamp":2363855723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6178, '2016-08-11 02:37:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:36:58.785761Z","gw_timestamp":2371037555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6179, '2016-08-11 02:37:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:05.972324Z","gw_timestamp":2378219483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6180, '2016-08-11 02:37:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:13.167279Z","gw_timestamp":2385401203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6181, '2016-08-11 02:37:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:20.323755Z","gw_timestamp":2392582619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6182, '2016-08-11 02:37:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:27.525222Z","gw_timestamp":2399763923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6183, '2016-08-11 02:37:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:34.696006Z","gw_timestamp":2406945547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6184, '2016-08-11 02:37:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:37:41.877628Z","gw_timestamp":2414127475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6189, '2016-08-11 02:38:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:17.799183Z","gw_timestamp":2450036299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6190, '2016-08-11 02:38:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:24.961383Z","gw_timestamp":2457217915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6191, '2016-08-11 02:38:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:32.142991Z","gw_timestamp":2464399435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0MjezSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6192, '2016-08-11 02:38:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:39.320632Z","gw_timestamp":2471581467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6193, '2016-08-11 02:38:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:46.504252Z","gw_timestamp":2478763187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6194, '2016-08-11 02:39:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:53.719157Z","gw_timestamp":2485945123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6195, '2016-08-11 02:39:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:00.87388Z","gw_timestamp":2493126635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6196, '2016-08-11 02:39:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:08.048264Z","gw_timestamp":2500307739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6197, '2016-08-11 02:39:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:15.228881Z","gw_timestamp":2507489043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6198, '2016-08-11 02:39:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:22.4095Z","gw_timestamp":2514670555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6199, '2016-08-11 02:39:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:29.607122Z","gw_timestamp":2521852275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6200, '2016-08-11 02:39:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:36.784886Z","gw_timestamp":2529034211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6201, '2016-08-11 02:39:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:43.994994Z","gw_timestamp":2536216035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6188, '2016-08-11 02:38:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:38:10.598267Z","gw_timestamp":2442854995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6203, '2016-08-11 02:40:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:58.317578Z","gw_timestamp":2550579795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6204, '2016-08-11 02:40:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:05.513657Z","gw_timestamp":2557761523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6205, '2016-08-11 02:40:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:12.695974Z","gw_timestamp":2564943451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6206, '2016-08-11 02:40:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:19.879999Z","gw_timestamp":2572125275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjeyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6207, '2016-08-11 02:40:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:27.056258Z","gw_timestamp":2579307315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6208, '2016-08-11 02:40:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:34.243103Z","gw_timestamp":2586489035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6209, '2016-08-11 02:40:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:41.419514Z","gw_timestamp":2593670755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6210, '2016-08-11 02:40:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:48.599139Z","gw_timestamp":2600852691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6211, '2016-08-11 02:40:57', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":825,"f_cnt_down":1525,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:40:50.589177Z","gw_timestamp":1347151692,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:01.619897Z","gw_timestamp":4277944580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjE3MDA0NjAIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6212, '2016-08-11 02:41:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:40:55.776761Z","gw_timestamp":2608034619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6213, '2016-08-11 02:41:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:02.961394Z","gw_timestamp":2615216451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6214, '2016-08-11 02:41:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:10.150472Z","gw_timestamp":2622398275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6202, '2016-08-11 02:39:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:39:51.139137Z","gw_timestamp":2543397867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6216, '2016-08-11 02:41:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:24.519539Z","gw_timestamp":2636761827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6217, '2016-08-11 02:41:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:31.688012Z","gw_timestamp":2643943859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6218, '2016-08-11 02:41:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:38.869999Z","gw_timestamp":2651125587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6219, '2016-08-11 02:41:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:46.048268Z","gw_timestamp":2658307411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ3OTAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6220, '2016-08-11 02:42:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:53.234997Z","gw_timestamp":2665489243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6221, '2016-08-11 02:42:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:00.429514Z","gw_timestamp":2672671171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6222, '2016-08-11 02:42:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:07.597138Z","gw_timestamp":2679852995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6223, '2016-08-11 02:42:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:14.810303Z","gw_timestamp":2687034923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6224, '2016-08-11 02:42:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:21.953493Z","gw_timestamp":2694216755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6225, '2016-08-11 02:42:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:29.143184Z","gw_timestamp":2701398579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6226, '2016-08-11 02:42:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:36.334643Z","gw_timestamp":2708580307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6227, '2016-08-11 02:42:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:43.501547Z","gw_timestamp":2715761931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjezGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6228, '2016-08-11 02:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:42:50.690019Z","gw_timestamp":2722943131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6215, '2016-08-11 02:41:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:41:17.328638Z","gw_timestamp":2629580099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6230, '2016-08-11 02:43:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:05.058532Z","gw_timestamp":2737306883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0MjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6231, '2016-08-11 02:43:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:12.227878Z","gw_timestamp":2744488611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6232, '2016-08-11 02:43:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:19.419772Z","gw_timestamp":2751670539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6233, '2016-08-11 02:43:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:26.599148Z","gw_timestamp":2758851747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6234, '2016-08-11 02:43:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:33.771756Z","gw_timestamp":2766033155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6235, '2016-08-11 02:43:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:40.952395Z","gw_timestamp":2773214667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6236, '2016-08-11 02:43:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:48.137964Z","gw_timestamp":2780395763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0MjezKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6237, '2016-08-11 02:44:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:43:55.3278Z","gw_timestamp":2787577699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6238, '2016-08-11 02:44:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:02.506394Z","gw_timestamp":2794759627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjeuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6239, '2016-08-11 02:44:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:09.683022Z","gw_timestamp":2801941355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6240, '2016-08-11 02:44:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:16.869779Z","gw_timestamp":2809123179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6241, '2016-08-11 02:44:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:24.048271Z","gw_timestamp":2816304379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6242, '2016-08-11 02:44:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:31.223161Z","gw_timestamp":2823486003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6229, '2016-08-11 02:43:06', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":821,"f_cnt_down":1481,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:43:03.546039Z","gw_timestamp":1480108620,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5NDAxMjI5MDA0MjkLUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6244, '2016-08-11 02:44:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:45.597151Z","gw_timestamp":2837848611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6245, '2016-08-11 02:45:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:52.796295Z","gw_timestamp":2845030435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6246, '2016-08-11 02:45:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:07.140022Z","gw_timestamp":2859394099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6247, '2016-08-11 02:45:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:14.310911Z","gw_timestamp":2866576027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6248, '2016-08-11 02:45:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:21.494466Z","gw_timestamp":2873757747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6249, '2016-08-11 02:45:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:28.700276Z","gw_timestamp":2880939675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6250, '2016-08-11 02:45:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:35.866632Z","gw_timestamp":2888121611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6251, '2016-08-11 02:45:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:43.04426Z","gw_timestamp":2895303435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjezWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6252, '2016-08-11 02:45:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:50.221901Z","gw_timestamp":2902485371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6253, '2016-08-11 02:46:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:45:57.411524Z","gw_timestamp":2909667195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjet6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6254, '2016-08-11 02:46:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:04.613423Z","gw_timestamp":2916848707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6255, '2016-08-11 02:46:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:11.77577Z","gw_timestamp":2924029811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6256, '2016-08-11 02:46:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:18.959403Z","gw_timestamp":2931211739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6243, '2016-08-11 02:44:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:44:38.405527Z","gw_timestamp":2830667203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDYwNjAxMjI3MDA0MjezCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6258, '2016-08-11 02:46:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:33.311791Z","gw_timestamp":2945575395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6259, '2016-08-11 02:46:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:40.496409Z","gw_timestamp":2952757323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6260, '2016-08-11 02:46:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:47.684135Z","gw_timestamp":2959939051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ4NTAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6261, '2016-08-11 02:47:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:54.874705Z","gw_timestamp":2967120979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6262, '2016-08-11 02:47:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:09.218902Z","gw_timestamp":2981484531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6263, '2016-08-11 02:47:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:16.410528Z","gw_timestamp":2988666459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6264, '2016-08-11 02:47:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:23.583263Z","gw_timestamp":2995848395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6265, '2016-08-11 02:47:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:30.764762Z","gw_timestamp":3003030115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6266, '2016-08-11 02:47:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:37.948406Z","gw_timestamp":3010212155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0Mjeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6267, '2016-08-11 02:47:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:45.148282Z","gw_timestamp":3017393667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6268, '2016-08-11 02:48:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:52.312766Z","gw_timestamp":3024575387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6269, '2016-08-11 02:48:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:47:59.496398Z","gw_timestamp":3031756483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6270, '2016-08-11 02:48:08', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1304,"f_cnt_down":2110,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:48:06.335507Z","gw_timestamp":1782898236,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyODAxMjE2MDA0NTUPkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6257, '2016-08-11 02:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:46:26.140003Z","gw_timestamp":2938393467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6272, '2016-08-11 02:48:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:13.86318Z","gw_timestamp":3046120347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6273, '2016-08-11 02:48:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:21.046476Z","gw_timestamp":3053302075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6274, '2016-08-11 02:48:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:28.221892Z","gw_timestamp":3060484003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6275, '2016-08-11 02:48:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:35.400521Z","gw_timestamp":3067665315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6276, '2016-08-11 02:48:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:42.58653Z","gw_timestamp":3074846515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6277, '2016-08-11 02:48:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:49.776408Z","gw_timestamp":3082027819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0MjezSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6278, '2016-08-11 02:49:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:56.943619Z","gw_timestamp":3089209443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6279, '2016-08-11 02:49:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:04.135408Z","gw_timestamp":3096391163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6280, '2016-08-11 02:49:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:11.312779Z","gw_timestamp":3103572987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6281, '2016-08-11 02:49:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:18.493013Z","gw_timestamp":3110754507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6282, '2016-08-11 02:49:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:25.673984Z","gw_timestamp":3117935603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6283, '2016-08-11 02:49:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:32.872926Z","gw_timestamp":3125116699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6284, '2016-08-11 02:49:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:40.041924Z","gw_timestamp":3132298531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6271, '2016-08-11 02:48:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:48:06.685409Z","gw_timestamp":3038938419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjey+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6286, '2016-08-11 02:50:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:54.407534Z","gw_timestamp":3146662179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6287, '2016-08-11 02:50:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:01.603654Z","gw_timestamp":3153844011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6288, '2016-08-11 02:50:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:08.762784Z","gw_timestamp":3161025835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6289, '2016-08-11 02:50:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:15.943403Z","gw_timestamp":3168207563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6290, '2016-08-11 02:50:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:23.142529Z","gw_timestamp":3175389595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6291, '2016-08-11 02:50:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:30.307777Z","gw_timestamp":3182571419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6292, '2016-08-11 02:50:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:37.491415Z","gw_timestamp":3189753251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6293, '2016-08-11 02:50:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:44.669038Z","gw_timestamp":3196934971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6294, '2016-08-11 02:51:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:51.858791Z","gw_timestamp":3204117003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6295, '2016-08-11 02:51:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:50:59.034282Z","gw_timestamp":3211298731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6296, '2016-08-11 02:51:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:06.21991Z","gw_timestamp":3218480139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6297, '2016-08-11 02:51:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:13.405973Z","gw_timestamp":3225661347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6298, '2016-08-11 02:51:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:20.579164Z","gw_timestamp":3232843275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6285, '2016-08-11 02:49:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:49:47.217901Z","gw_timestamp":3139480355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6300, '2016-08-11 02:51:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:34.942412Z","gw_timestamp":3247207035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjeyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6301, '2016-08-11 02:51:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:42.123158Z","gw_timestamp":3254388755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6302, '2016-08-11 02:51:50', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":742,"f_cnt_down":1326,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:51:49.308797Z","gw_timestamp":2005871636,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:00:00.339546Z","gw_timestamp":641696932,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzNDAxMjE3MDA0NjMLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6317, '2016-08-11 02:53:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:29.855664Z","gw_timestamp":3362115747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6318, '2016-08-11 02:53:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:37.032294Z","gw_timestamp":3369297371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6319, '2016-08-11 02:53:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:44.223263Z","gw_timestamp":3376479195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6361, '2016-08-11 02:58:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:31.491429Z","gw_timestamp":3663749267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6362, '2016-08-11 02:58:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:38.671052Z","gw_timestamp":3670931091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6363, '2016-08-11 02:58:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:45.850685Z","gw_timestamp":3678113019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6364, '2016-08-11 02:59:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:53.033582Z","gw_timestamp":3685294739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6365, '2016-08-11 02:59:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:00.207926Z","gw_timestamp":3692476675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6366, '2016-08-11 02:59:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:07.399542Z","gw_timestamp":3699658395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6299, '2016-08-11 02:51:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:27.772254Z","gw_timestamp":3240025203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6303, '2016-08-11 02:51:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:49.309789Z","gw_timestamp":3261570475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6304, '2016-08-11 02:52:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:51:56.493407Z","gw_timestamp":3268751579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6305, '2016-08-11 02:52:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:03.68331Z","gw_timestamp":3275933619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6306, '2016-08-11 02:52:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:10.849164Z","gw_timestamp":3283115339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6307, '2016-08-11 02:52:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:18.041283Z","gw_timestamp":3290297059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6308, '2016-08-11 02:52:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:25.219169Z","gw_timestamp":3297478891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6309, '2016-08-11 02:52:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:32.395657Z","gw_timestamp":3304660819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6310, '2016-08-11 02:52:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:39.584156Z","gw_timestamp":3311842539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6311, '2016-08-11 02:52:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:46.768793Z","gw_timestamp":3319024363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6312, '2016-08-11 02:53:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:52:53.939863Z","gw_timestamp":3326206299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6313, '2016-08-11 02:53:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:01.131169Z","gw_timestamp":3333388227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6314, '2016-08-11 02:53:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:08.311057Z","gw_timestamp":3340569955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6315, '2016-08-11 02:53:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:15.516007Z","gw_timestamp":3347751883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6316, '2016-08-11 02:53:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:22.674031Z","gw_timestamp":3354933819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6320, '2016-08-11 02:54:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:51.398657Z","gw_timestamp":3383661019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6321, '2016-08-11 02:54:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:53:58.595506Z","gw_timestamp":3390843059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6322, '2016-08-11 02:54:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:05.763777Z","gw_timestamp":3398024883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6323, '2016-08-11 02:54:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:12.943542Z","gw_timestamp":3405206603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6324, '2016-08-11 02:54:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:20.131687Z","gw_timestamp":3412388435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6325, '2016-08-11 02:54:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:27.311797Z","gw_timestamp":3419570155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6326, '2016-08-11 02:54:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:34.509923Z","gw_timestamp":3426752091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6327, '2016-08-11 02:54:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:41.670039Z","gw_timestamp":3433934019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6328, '2016-08-11 02:54:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:48.853662Z","gw_timestamp":3441115851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6329, '2016-08-11 02:55:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:54:56.030299Z","gw_timestamp":3448297779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6330, '2016-08-11 02:55:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:03.219921Z","gw_timestamp":3455479611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6331, '2016-08-11 02:55:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:10.394836Z","gw_timestamp":3462661435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6332, '2016-08-11 02:55:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:17.573103Z","gw_timestamp":3469843363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6333, '2016-08-11 02:55:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:24.764238Z","gw_timestamp":3477025187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6334, '2016-08-11 02:55:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:31.937544Z","gw_timestamp":3484206915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6335, '2016-08-11 02:55:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:39.155896Z","gw_timestamp":3491388739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6336, '2016-08-11 02:55:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:46.30478Z","gw_timestamp":3498570779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6337, '2016-08-11 02:56:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:55:53.488427Z","gw_timestamp":3505752507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6338, '2016-08-11 02:56:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:00.666296Z","gw_timestamp":3512934435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6339, '2016-08-11 02:56:10', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":826,"f_cnt_down":1526,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:56:01.360457Z","gw_timestamp":2257923420,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYwNzAxMjE3MDA0NjAJwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6340, '2016-08-11 02:56:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:07.85367Z","gw_timestamp":3520116259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6341, '2016-08-11 02:56:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:15.033346Z","gw_timestamp":3527297459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjeyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6342, '2016-08-11 02:56:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:22.21192Z","gw_timestamp":3534478875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6343, '2016-08-11 02:56:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:29.39355Z","gw_timestamp":3541660699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6344, '2016-08-11 02:56:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:36.574501Z","gw_timestamp":3548842731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6345, '2016-08-11 02:56:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:43.761919Z","gw_timestamp":3556024563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjey6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6346, '2016-08-11 02:56:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:50.954796Z","gw_timestamp":3563206283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6347, '2016-08-11 02:57:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:56:58.128433Z","gw_timestamp":3570387283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6348, '2016-08-11 02:57:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:05.299799Z","gw_timestamp":3577569107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6349, '2016-08-11 02:57:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:12.49288Z","gw_timestamp":3584750723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6350, '2016-08-11 02:57:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:19.67205Z","gw_timestamp":3591932763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6351, '2016-08-11 02:57:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:26.845065Z","gw_timestamp":3599114483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6352, '2016-08-11 02:57:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:34.026284Z","gw_timestamp":3606296315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjeuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6353, '2016-08-11 02:57:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:41.213937Z","gw_timestamp":3613477723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6354, '2016-08-11 02:57:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:48.393547Z","gw_timestamp":3620659027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6355, '2016-08-11 02:58:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:57:55.575302Z","gw_timestamp":3627840747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6356, '2016-08-11 02:58:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:02.772452Z","gw_timestamp":3635021843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6357, '2016-08-11 02:58:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:09.944619Z","gw_timestamp":3642203675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6358, '2016-08-11 02:58:19', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":822,"f_cnt_down":1482,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T02:58:14.391894Z","gw_timestamp":2390954924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:06:25.422673Z","gw_timestamp":1026780060,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5NjAxMjI5MDA0MjkWgQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6359, '2016-08-11 02:58:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:17.115113Z","gw_timestamp":3649385403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6360, '2016-08-11 02:58:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:58:24.296804Z","gw_timestamp":3656567435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6396, '2016-08-11 03:02:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:50.022313Z","gw_timestamp":3922291083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6397, '2016-08-11 03:02:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:57.223694Z","gw_timestamp":3929472491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6398, '2016-08-11 03:03:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:04.386689Z","gw_timestamp":3936653699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6399, '2016-08-11 03:03:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:11.566318Z","gw_timestamp":3943835211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6400, '2016-08-11 03:03:20', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1305,"f_cnt_down":2111,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:03:17.158587Z","gw_timestamp":2693721764,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU3NTAxMjE2MDA0NTUJYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6401, '2016-08-11 03:03:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:18.75194Z","gw_timestamp":3951017139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6409, '2016-08-11 03:04:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:16.21178Z","gw_timestamp":4008471971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6410, '2016-08-11 03:04:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:23.385694Z","gw_timestamp":4015653795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6367, '2016-08-11 02:59:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:14.574671Z","gw_timestamp":3706840331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6368, '2016-08-11 02:59:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:21.755871Z","gw_timestamp":3714022155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6369, '2016-08-11 02:59:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:28.939555Z","gw_timestamp":3721203979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6370, '2016-08-11 02:59:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:36.118182Z","gw_timestamp":3728385811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6371, '2016-08-11 02:59:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:43.300759Z","gw_timestamp":3735567747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6372, '2016-08-11 02:59:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:50.491435Z","gw_timestamp":3742749563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjet+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6373, '2016-08-11 03:00:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T02:59:57.669059Z","gw_timestamp":3749931403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5OTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6374, '2016-08-11 03:00:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:04.842689Z","gw_timestamp":3757113227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6375, '2016-08-11 03:00:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:12.033302Z","gw_timestamp":3764294843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6376, '2016-08-11 03:00:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:19.232047Z","gw_timestamp":3771476883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6377, '2016-08-11 03:00:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:26.387685Z","gw_timestamp":3778658811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6378, '2016-08-11 03:00:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:33.571311Z","gw_timestamp":3785840635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6379, '2016-08-11 03:00:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:40.763317Z","gw_timestamp":3793022363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6380, '2016-08-11 03:00:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:47.934631Z","gw_timestamp":3800204395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6381, '2016-08-11 03:01:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:00:55.120337Z","gw_timestamp":3807386323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6382, '2016-08-11 03:01:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:02.300587Z","gw_timestamp":3814567947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6383, '2016-08-11 03:01:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:09.493827Z","gw_timestamp":3821749147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6384, '2016-08-11 03:01:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:23.84169Z","gw_timestamp":3836112283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6385, '2016-08-11 03:01:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:31.03031Z","gw_timestamp":3843293379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjezOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6386, '2016-08-11 03:01:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:38.212943Z","gw_timestamp":3850475315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6387, '2016-08-11 03:01:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:45.394689Z","gw_timestamp":3857657139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjeumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6388, '2016-08-11 03:02:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:52.5763Z","gw_timestamp":3864838859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6389, '2016-08-11 03:02:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:01:59.76027Z","gw_timestamp":3872020795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6390, '2016-08-11 03:02:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:06.932549Z","gw_timestamp":3879201995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6391, '2016-08-11 03:02:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:14.110439Z","gw_timestamp":3886383403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6392, '2016-08-11 03:02:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:21.2958Z","gw_timestamp":3893564707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6393, '2016-08-11 03:02:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:28.48451Z","gw_timestamp":3900746227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6394, '2016-08-11 03:02:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:35.670261Z","gw_timestamp":3907927955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6395, '2016-08-11 03:02:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:02:42.847686Z","gw_timestamp":3915109779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjeuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6402, '2016-08-11 03:03:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:25.935569Z","gw_timestamp":3958198971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6403, '2016-08-11 03:03:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:33.125247Z","gw_timestamp":3965380899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6404, '2016-08-11 03:03:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:40.301137Z","gw_timestamp":3972562731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6405, '2016-08-11 03:03:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:47.484957Z","gw_timestamp":3979744659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6406, '2016-08-11 03:04:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:03:54.660067Z","gw_timestamp":3986926387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6407, '2016-08-11 03:04:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:01.848963Z","gw_timestamp":3994108211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6408, '2016-08-11 03:04:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:09.022441Z","gw_timestamp":4001290147,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6411, '2016-08-11 03:04:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:30.570316Z","gw_timestamp":4022835627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6412, '2016-08-11 03:04:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:37.770214Z","gw_timestamp":4030017347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6413, '2016-08-11 03:04:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:44.930563Z","gw_timestamp":4037199171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6414, '2016-08-11 03:05:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:52.107196Z","gw_timestamp":4044381211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6415, '2016-08-11 03:05:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:04:59.295814Z","gw_timestamp":4051563035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6416, '2016-08-11 03:05:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:06.486297Z","gw_timestamp":4058744763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6417, '2016-08-11 03:05:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:13.675143Z","gw_timestamp":4065926795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6437, '2016-08-11 03:07:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:37.296955Z","gw_timestamp":4209560627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6439, '2016-08-11 03:08:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:51.654077Z","gw_timestamp":4223924387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6441, '2016-08-11 03:08:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:06.01453Z","gw_timestamp":4238287107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6443, '2016-08-11 03:08:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:20.376706Z","gw_timestamp":4252650763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6445, '2016-08-11 03:08:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:34.767557Z","gw_timestamp":4267014523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6447, '2016-08-11 03:08:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:49.107207Z","gw_timestamp":4281378171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6449, '2016-08-11 03:09:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:03.468455Z","gw_timestamp":773595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6451, '2016-08-11 03:09:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:17.832829Z","gw_timestamp":15137147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6453, '2016-08-11 03:09:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:32.192082Z","gw_timestamp":29501115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6455, '2016-08-11 03:09:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:46.564393Z","gw_timestamp":43864555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6497, '2016-08-11 03:14:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:48.200305Z","gw_timestamp":345498179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6499, '2016-08-11 03:15:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:02.605772Z","gw_timestamp":359861827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6501, '2016-08-11 03:15:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:16.92854Z","gw_timestamp":374225699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6418, '2016-08-11 03:05:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:28.0249Z","gw_timestamp":4080290451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6420, '2016-08-11 03:05:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:42.385687Z","gw_timestamp":4094654107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6422, '2016-08-11 03:06:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:56.749201Z","gw_timestamp":4109017755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6424, '2016-08-11 03:06:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:11.112472Z","gw_timestamp":4123381515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MDAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6426, '2016-08-11 03:06:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:25.479576Z","gw_timestamp":4137745067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6428, '2016-08-11 03:06:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:39.842699Z","gw_timestamp":4152107883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6430, '2016-08-11 03:07:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:54.224653Z","gw_timestamp":4166471651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6432, '2016-08-11 03:07:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:01.379333Z","gw_timestamp":4173653371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6434, '2016-08-11 03:07:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:15.750949Z","gw_timestamp":4188016611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjeuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6436, '2016-08-11 03:07:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:30.10719Z","gw_timestamp":4202379219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6438, '2016-08-11 03:07:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:44.472268Z","gw_timestamp":4216742563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6440, '2016-08-11 03:08:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:58.840041Z","gw_timestamp":4231105595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6442, '2016-08-11 03:08:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:13.203075Z","gw_timestamp":4245469139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6474, '2016-08-11 03:12:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:03.018457Z","gw_timestamp":180317819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6419, '2016-08-11 03:05:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:35.20906Z","gw_timestamp":4087472067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6421, '2016-08-11 03:05:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:05:49.565313Z","gw_timestamp":4101835931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6423, '2016-08-11 03:06:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:03.940299Z","gw_timestamp":4116199691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6425, '2016-08-11 03:06:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:18.297813Z","gw_timestamp":4130563139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6427, '2016-08-11 03:06:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:32.656326Z","gw_timestamp":4144926587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MjAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6429, '2016-08-11 03:06:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:06:47.020449Z","gw_timestamp":4159289715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6431, '2016-08-11 03:07:03', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":743,"f_cnt_down":1327,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:07:00.086723Z","gw_timestamp":2916650012,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0ODAxMjE4MDA0NjMTEQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6433, '2016-08-11 03:07:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:08.589825Z","gw_timestamp":4180835403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6435, '2016-08-11 03:07:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:07:22.923573Z","gw_timestamp":4195197915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6457, '2016-08-11 03:10:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:00.935851Z","gw_timestamp":58228323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6459, '2016-08-11 03:10:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:15.290416Z","gw_timestamp":72591971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6461, '2016-08-11 03:10:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:29.68048Z","gw_timestamp":86955523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6463, '2016-08-11 03:10:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:44.012328Z","gw_timestamp":101319387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6465, '2016-08-11 03:11:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:58.387906Z","gw_timestamp":115683139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6444, '2016-08-11 03:08:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:27.56633Z","gw_timestamp":4259832491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6446, '2016-08-11 03:08:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:41.926575Z","gw_timestamp":4274196347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6448, '2016-08-11 03:09:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:08:56.29283Z","gw_timestamp":4288559483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6450, '2016-08-11 03:09:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:10.662509Z","gw_timestamp":7955427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6452, '2016-08-11 03:09:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:25.050952Z","gw_timestamp":22319075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6454, '2016-08-11 03:09:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:39.373685Z","gw_timestamp":36682835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6456, '2016-08-11 03:10:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:09:53.737952Z","gw_timestamp":51046595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6458, '2016-08-11 03:10:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:08.104208Z","gw_timestamp":65410251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6460, '2016-08-11 03:10:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:22.472446Z","gw_timestamp":79773907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5OTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6462, '2016-08-11 03:10:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:36.831827Z","gw_timestamp":94137563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6464, '2016-08-11 03:10:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:10:51.212069Z","gw_timestamp":108501419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6466, '2016-08-11 03:11:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:05.556339Z","gw_timestamp":122864971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6468, '2016-08-11 03:11:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:12.73696Z","gw_timestamp":130046803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6470, '2016-08-11 03:11:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:34.282819Z","gw_timestamp":151591347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6467, '2016-08-11 03:11:14', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":827,"f_cnt_down":1527,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:11:12.130889Z","gw_timestamp":3168694300,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3OTAxMjE3MDA0NjAIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6469, '2016-08-11 03:11:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:19.931585Z","gw_timestamp":137228523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6471, '2016-08-11 03:11:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:41.487827Z","gw_timestamp":158772643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6473, '2016-08-11 03:12:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:55.835609Z","gw_timestamp":173135891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6475, '2016-08-11 03:12:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:10.20309Z","gw_timestamp":187499643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6477, '2016-08-11 03:12:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:24.560219Z","gw_timestamp":201862779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6479, '2016-08-11 03:12:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:38.91758Z","gw_timestamp":216225811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6481, '2016-08-11 03:13:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:53.284952Z","gw_timestamp":230589667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6483, '2016-08-11 03:13:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:07.645226Z","gw_timestamp":244952699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6485, '2016-08-11 03:13:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:22.045347Z","gw_timestamp":259316043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6487, '2016-08-11 03:13:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:29.198473Z","gw_timestamp":266497971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6489, '2016-08-11 03:13:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:43.559345Z","gw_timestamp":280861635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI3MDA0Mjeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6491, '2016-08-11 03:14:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:57.934675Z","gw_timestamp":295225387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6493, '2016-08-11 03:14:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:12.302056Z","gw_timestamp":309589043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6472, '2016-08-11 03:11:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:11:48.650214Z","gw_timestamp":165954059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6504, '2016-08-11 03:15:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:38.491826Z","gw_timestamp":395771179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6506, '2016-08-11 03:16:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:00.042985Z","gw_timestamp":417315723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6508, '2016-08-11 03:16:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:14.430034Z","gw_timestamp":431679379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6510, '2016-08-11 03:16:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:28.785829Z","gw_timestamp":446043131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6512, '2016-08-11 03:16:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:43.145789Z","gw_timestamp":460405851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6514, '2016-08-11 03:17:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:57.516823Z","gw_timestamp":474769507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6516, '2016-08-11 03:17:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:11.889258Z","gw_timestamp":489133259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0Mjeumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6518, '2016-08-11 03:17:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:26.266698Z","gw_timestamp":503496923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6524, '2016-08-11 03:18:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:09.36406Z","gw_timestamp":546587883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6526, '2016-08-11 03:18:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:23.734425Z","gw_timestamp":560951643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNTAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6528, '2016-08-11 03:18:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:30.907346Z","gw_timestamp":568133675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6530, '2016-08-11 03:18:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:45.299473Z","gw_timestamp":582497227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6532, '2016-08-11 03:19:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:59.636453Z","gw_timestamp":596860883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6476, '2016-08-11 03:12:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:17.374691Z","gw_timestamp":194681371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6478, '2016-08-11 03:12:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:31.749204Z","gw_timestamp":209044083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4NjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6480, '2016-08-11 03:12:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:12:46.121869Z","gw_timestamp":223407843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6482, '2016-08-11 03:13:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:00.464627Z","gw_timestamp":237771603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMDAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6484, '2016-08-11 03:13:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:14.832844Z","gw_timestamp":252134219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6486, '2016-08-11 03:13:30', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":823,"f_cnt_down":1483,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:13:25.232023Z","gw_timestamp":3301795500,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:36.262842Z","gw_timestamp":1937620228,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI4MDA0MzAKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6488, '2016-08-11 03:13:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:36.37571Z","gw_timestamp":273679699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6490, '2016-08-11 03:13:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:13:50.731964Z","gw_timestamp":288043459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6492, '2016-08-11 03:14:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:05.108331Z","gw_timestamp":302407011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6494, '2016-08-11 03:14:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:19.464608Z","gw_timestamp":316770867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6496, '2016-08-11 03:14:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:33.823842Z","gw_timestamp":331134627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6498, '2016-08-11 03:15:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:55.372842Z","gw_timestamp":352680115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6500, '2016-08-11 03:15:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:09.740495Z","gw_timestamp":367043763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6495, '2016-08-11 03:14:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:14:26.650213Z","gw_timestamp":323952587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6505, '2016-08-11 03:16:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:52.859763Z","gw_timestamp":410134627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6531, '2016-08-11 03:19:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:52.447079Z","gw_timestamp":589679051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMTAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6533, '2016-08-11 03:19:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:06.855677Z","gw_timestamp":604042811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6535, '2016-08-11 03:19:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:21.18367Z","gw_timestamp":618406467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6537, '2016-08-11 03:19:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:35.56346Z","gw_timestamp":632770227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6539, '2016-08-11 03:19:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:49.901106Z","gw_timestamp":647133987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0MjeuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6541, '2016-08-11 03:20:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:04.269284Z","gw_timestamp":661497643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6543, '2016-08-11 03:20:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:18.652013Z","gw_timestamp":675861291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6545, '2016-08-11 03:20:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:33.012129Z","gw_timestamp":690224843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6551, '2016-08-11 03:21:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:16.092775Z","gw_timestamp":733316115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6553, '2016-08-11 03:21:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:30.448851Z","gw_timestamp":747679259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6555, '2016-08-11 03:21:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:44.82034Z","gw_timestamp":762041971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6557, '2016-08-11 03:22:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:59.171805Z","gw_timestamp":776405107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6502, '2016-08-11 03:15:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:24.117897Z","gw_timestamp":381407523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6520, '2016-08-11 03:17:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:40.634118Z","gw_timestamp":517860675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6522, '2016-08-11 03:18:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:55.013813Z","gw_timestamp":532224331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6536, '2016-08-11 03:19:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:28.363084Z","gw_timestamp":625588403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6538, '2016-08-11 03:19:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:42.730278Z","gw_timestamp":639951947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6540, '2016-08-11 03:20:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:57.095095Z","gw_timestamp":654315707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6542, '2016-08-11 03:20:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:11.450836Z","gw_timestamp":668679363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MjAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6544, '2016-08-11 03:20:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:25.813203Z","gw_timestamp":683043019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6546, '2016-08-11 03:20:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:40.178456Z","gw_timestamp":697406875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6548, '2016-08-11 03:21:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:54.548716Z","gw_timestamp":711770539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6550, '2016-08-11 03:21:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:08.925594Z","gw_timestamp":726134187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6562, '2016-08-11 03:22:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:27.908449Z","gw_timestamp":805132099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6564, '2016-08-11 03:22:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:42.272197Z","gw_timestamp":819495235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6566, '2016-08-11 03:23:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:56.632589Z","gw_timestamp":833858883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6503, '2016-08-11 03:15:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:15:31.306098Z","gw_timestamp":388589243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6507, '2016-08-11 03:16:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:07.232179Z","gw_timestamp":424497651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6509, '2016-08-11 03:16:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:21.603632Z","gw_timestamp":438861307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6511, '2016-08-11 03:16:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:35.974178Z","gw_timestamp":453224443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6513, '2016-08-11 03:16:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:16:50.355525Z","gw_timestamp":467587779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6515, '2016-08-11 03:17:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:04.738337Z","gw_timestamp":481951435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6517, '2016-08-11 03:17:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:19.077462Z","gw_timestamp":496314987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6519, '2016-08-11 03:17:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:33.447912Z","gw_timestamp":510678747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6521, '2016-08-11 03:17:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:17:47.824538Z","gw_timestamp":525042499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6523, '2016-08-11 03:18:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:02.181079Z","gw_timestamp":539406059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6525, '2016-08-11 03:18:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:16.540706Z","gw_timestamp":553769819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6527, '2016-08-11 03:18:31', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1306,"f_cnt_down":2112,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:18:28.624835Z","gw_timestamp":3605188460,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjE2MDA0NTUHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6529, '2016-08-11 03:18:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:18:38.085533Z","gw_timestamp":575315291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6547, '2016-08-11 03:20:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:20:47.368077Z","gw_timestamp":704588811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6534, '2016-08-11 03:19:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:19:14.004821Z","gw_timestamp":611224643,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6552, '2016-08-11 03:21:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:23.298482Z","gw_timestamp":740497947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6554, '2016-08-11 03:21:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:37.638587Z","gw_timestamp":754860555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6556, '2016-08-11 03:22:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:51.995821Z","gw_timestamp":769223283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNTAxMjI3MDA0Mjeyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6558, '2016-08-11 03:22:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:06.354081Z","gw_timestamp":783586931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6560, '2016-08-11 03:22:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:13.567668Z","gw_timestamp":790768859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6570, '2016-08-11 03:23:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:25.362961Z","gw_timestamp":862586307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6572, '2016-08-11 03:23:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:39.730407Z","gw_timestamp":876950059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6574, '2016-08-11 03:24:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:54.083806Z","gw_timestamp":891313715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6576, '2016-08-11 03:24:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:08.450973Z","gw_timestamp":905676331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6578, '2016-08-11 03:24:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:22.814075Z","gw_timestamp":920039043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6580, '2016-08-11 03:24:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:37.167457Z","gw_timestamp":934402803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6582, '2016-08-11 03:24:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:51.542707Z","gw_timestamp":948766563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6584, '2016-08-11 03:25:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:05.936235Z","gw_timestamp":963129075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6549, '2016-08-11 03:21:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:21:01.729529Z","gw_timestamp":718952259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6561, '2016-08-11 03:22:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:20.718335Z","gw_timestamp":797950691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMzAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6563, '2016-08-11 03:22:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:35.081403Z","gw_timestamp":812313299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6565, '2016-08-11 03:22:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:22:49.475425Z","gw_timestamp":826677067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6567, '2016-08-11 03:23:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:03.811084Z","gw_timestamp":841040819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6569, '2016-08-11 03:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:18.180451Z","gw_timestamp":855404475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6571, '2016-08-11 03:23:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:32.534852Z","gw_timestamp":869768027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6573, '2016-08-11 03:23:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:46.908949Z","gw_timestamp":884131883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6575, '2016-08-11 03:24:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:01.291561Z","gw_timestamp":898495131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5OTAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6577, '2016-08-11 03:24:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:15.643059Z","gw_timestamp":912857427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0MjezCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6579, '2016-08-11 03:24:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:29.999525Z","gw_timestamp":927220979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MDAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6581, '2016-08-11 03:24:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:44.35408Z","gw_timestamp":941584531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6583, '2016-08-11 03:25:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:24:58.717957Z","gw_timestamp":955947763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6585, '2016-08-11 03:25:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:13.088723Z","gw_timestamp":970311003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjeziw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6559, '2016-08-11 03:22:15', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":744,"f_cnt_down":1328,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:22:11.479463Z","gw_timestamp":3828043196,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwMTAxMjE4MDA0NjILYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6587, '2016-08-11 03:25:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:27.442973Z","gw_timestamp":984674755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6589, '2016-08-11 03:25:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:41.815488Z","gw_timestamp":999038203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjezCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6591, '2016-08-11 03:26:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:56.172465Z","gw_timestamp":1013400403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6593, '2016-08-11 03:26:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:10.534826Z","gw_timestamp":1027763851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6595, '2016-08-11 03:26:24', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":828,"f_cnt_down":1528,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:26:22.90318Z","gw_timestamp":4079467036,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDYxMTAxMjE3MDA0NjAI8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6597, '2016-08-11 03:26:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:32.082857Z","gw_timestamp":1049309435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6599, '2016-08-11 03:26:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:46.440155Z","gw_timestamp":1063672051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6601, '2016-08-11 03:27:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:00.822495Z","gw_timestamp":1078035707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6603, '2016-08-11 03:27:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:15.16647Z","gw_timestamp":1092399459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6605, '2016-08-11 03:27:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:29.527715Z","gw_timestamp":1106763115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6607, '2016-08-11 03:27:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:43.894097Z","gw_timestamp":1121126875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjeyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6609, '2016-08-11 03:28:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:58.260329Z","gw_timestamp":1135490427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6611, '2016-08-11 03:28:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:12.638821Z","gw_timestamp":1149854179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6568, '2016-08-11 03:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:23:11.002841Z","gw_timestamp":848222643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6586, '2016-08-11 03:25:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:20.267621Z","gw_timestamp":977492827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6588, '2016-08-11 03:25:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:34.62359Z","gw_timestamp":991856587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6590, '2016-08-11 03:25:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:25:49.002126Z","gw_timestamp":1006219307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6592, '2016-08-11 03:26:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:03.368366Z","gw_timestamp":1020581915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6594, '2016-08-11 03:26:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:17.71035Z","gw_timestamp":1034945675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6596, '2016-08-11 03:26:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:24.899966Z","gw_timestamp":1042127507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjezKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6598, '2016-08-11 03:26:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:39.271616Z","gw_timestamp":1056490947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4NjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6600, '2016-08-11 03:27:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:26:53.630602Z","gw_timestamp":1070853875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6602, '2016-08-11 03:27:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:07.986848Z","gw_timestamp":1085217427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6604, '2016-08-11 03:27:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:22.352357Z","gw_timestamp":1099581291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6606, '2016-08-11 03:27:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:36.718477Z","gw_timestamp":1113944947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6608, '2016-08-11 03:27:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:27:51.081728Z","gw_timestamp":1128308707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6610, '2016-08-11 03:28:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:05.439984Z","gw_timestamp":1142672459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6612, '2016-08-11 03:28:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:19.807228Z","gw_timestamp":1157036115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6616, '2016-08-11 03:28:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:41.353232Z","gw_timestamp":1178580659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6618, '2016-08-11 03:29:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:55.714548Z","gw_timestamp":1192944315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MDAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6620, '2016-08-11 03:29:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:10.076731Z","gw_timestamp":1207308283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6622, '2016-08-11 03:29:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:24.444955Z","gw_timestamp":1221671523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4ODAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6624, '2016-08-11 03:29:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:38.804227Z","gw_timestamp":1236035379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6626, '2016-08-11 03:30:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:00.343289Z","gw_timestamp":1257580971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6628, '2016-08-11 03:30:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:14.710387Z","gw_timestamp":1271943683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6630, '2016-08-11 03:30:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:29.081984Z","gw_timestamp":1286306299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6632, '2016-08-11 03:30:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:43.443981Z","gw_timestamp":1300670059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6634, '2016-08-11 03:31:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:57.807232Z","gw_timestamp":1315032771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6636, '2016-08-11 03:31:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:12.163483Z","gw_timestamp":1329395387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6638, '2016-08-11 03:31:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:26.526979Z","gw_timestamp":1343759147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6640, '2016-08-11 03:31:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:40.918377Z","gw_timestamp":1358122795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6613, '2016-08-11 03:28:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:26.986857Z","gw_timestamp":1164217523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NTAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6617, '2016-08-11 03:28:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:48.533838Z","gw_timestamp":1185762491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6619, '2016-08-11 03:29:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:02.917217Z","gw_timestamp":1200126243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4ODAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6621, '2016-08-11 03:29:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:17.264281Z","gw_timestamp":1214489899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6623, '2016-08-11 03:29:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:31.61761Z","gw_timestamp":1228853555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6625, '2016-08-11 03:30:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:29:53.179753Z","gw_timestamp":1250399035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6627, '2016-08-11 03:30:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:07.533121Z","gw_timestamp":1264762483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6629, '2016-08-11 03:30:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:21.889115Z","gw_timestamp":1279124883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6631, '2016-08-11 03:30:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:36.256343Z","gw_timestamp":1293488227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6633, '2016-08-11 03:30:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:30:50.618607Z","gw_timestamp":1307851675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjeyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6635, '2016-08-11 03:31:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:04.989133Z","gw_timestamp":1322214187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6637, '2016-08-11 03:31:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:19.346494Z","gw_timestamp":1336577211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6639, '2016-08-11 03:31:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:33.713479Z","gw_timestamp":1350940867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6641, '2016-08-11 03:31:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:48.066736Z","gw_timestamp":1365304211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6614, '2016-08-11 03:28:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:28:34.16548Z","gw_timestamp":1171398723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6644, '2016-08-11 03:32:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:09.623604Z","gw_timestamp":1386849171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4NDAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6646, '2016-08-11 03:32:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:23.976863Z","gw_timestamp":1401212827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6648, '2016-08-11 03:32:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:38.347241Z","gw_timestamp":1415575651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6650, '2016-08-11 03:33:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:52.711486Z","gw_timestamp":1429939195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6652, '2016-08-11 03:33:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:07.072738Z","gw_timestamp":1444303059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6654, '2016-08-11 03:33:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:21.432978Z","gw_timestamp":1458666715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6656, '2016-08-11 03:33:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:35.836149Z","gw_timestamp":1473029531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjezOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6658, '2016-08-11 03:33:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:42.976994Z","gw_timestamp":1480211259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMzAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6660, '2016-08-11 03:34:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:04.524999Z","gw_timestamp":1501756843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6662, '2016-08-11 03:34:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:18.881121Z","gw_timestamp":1516119667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6664, '2016-08-11 03:34:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:33.243352Z","gw_timestamp":1530482483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5OTAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6666, '2016-08-11 03:34:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:47.606621Z","gw_timestamp":1544845827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6668, '2016-08-11 03:35:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:02.020252Z","gw_timestamp":1559209483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6615, '2016-08-11 03:28:43', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":824,"f_cnt_down":1484,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:28:36.076619Z","gw_timestamp":4212640540,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-3.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:12.140185Z","gw_timestamp":2848464868,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwMDAxMjI3MDA0MzAMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6643, '2016-08-11 03:32:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:02.432983Z","gw_timestamp":1379667443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6645, '2016-08-11 03:32:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:16.79936Z","gw_timestamp":1394031099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6647, '2016-08-11 03:32:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:31.164558Z","gw_timestamp":1408394547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6649, '2016-08-11 03:32:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:45.522582Z","gw_timestamp":1422757475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6651, '2016-08-11 03:33:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:32:59.882128Z","gw_timestamp":1437121123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6653, '2016-08-11 03:33:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:14.252364Z","gw_timestamp":1451484787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6655, '2016-08-11 03:33:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:28.620616Z","gw_timestamp":1465848435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6700, '2016-08-11 03:39:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:06.1689Z","gw_timestamp":1803387443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6702, '2016-08-11 03:39:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:20.521596Z","gw_timestamp":1817751099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6704, '2016-08-11 03:39:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:34.875514Z","gw_timestamp":1832114755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6706, '2016-08-11 03:39:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:49.243502Z","gw_timestamp":1846478515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6708, '2016-08-11 03:40:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:03.607761Z","gw_timestamp":1860842267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6642, '2016-08-11 03:32:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:31:55.250562Z","gw_timestamp":1372485411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6657, '2016-08-11 03:33:45', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1307,"f_cnt_down":2113,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:33:39.453806Z","gw_timestamp":221050580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjE2MDA0NTYJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6659, '2016-08-11 03:34:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:33:57.342237Z","gw_timestamp":1494575019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6661, '2016-08-11 03:34:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:11.738766Z","gw_timestamp":1508938675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6663, '2016-08-11 03:34:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:26.070094Z","gw_timestamp":1523301283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6665, '2016-08-11 03:34:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:40.432998Z","gw_timestamp":1537664107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6667, '2016-08-11 03:35:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:34:54.787244Z","gw_timestamp":1552027659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6669, '2016-08-11 03:35:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:09.159625Z","gw_timestamp":1566391419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6671, '2016-08-11 03:35:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:23.522363Z","gw_timestamp":1580754131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6673, '2016-08-11 03:35:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:37.880401Z","gw_timestamp":1595116747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6675, '2016-08-11 03:36:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:06.606626Z","gw_timestamp":1623844267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6677, '2016-08-11 03:36:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:20.97539Z","gw_timestamp":1638206979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6679, '2016-08-11 03:36:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:35.337255Z","gw_timestamp":1652570635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6681, '2016-08-11 03:36:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:49.699497Z","gw_timestamp":1666934187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6670, '2016-08-11 03:35:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:16.340252Z","gw_timestamp":1573572827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6672, '2016-08-11 03:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:30.699881Z","gw_timestamp":1587935331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6674, '2016-08-11 03:36:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:35:45.062736Z","gw_timestamp":1602298675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6676, '2016-08-11 03:36:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:13.792625Z","gw_timestamp":1631025459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6678, '2016-08-11 03:36:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:28.15663Z","gw_timestamp":1645388811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6680, '2016-08-11 03:36:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:42.520876Z","gw_timestamp":1659752459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6682, '2016-08-11 03:37:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:36:56.886114Z","gw_timestamp":1674115491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6684, '2016-08-11 03:37:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:11.247758Z","gw_timestamp":1688478835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6686, '2016-08-11 03:37:26', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":745,"f_cnt_down":1329,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:33:58.320665Z","gw_timestamp":3374645348,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjE4MDA0NjEVAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6688, '2016-08-11 03:37:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:32.794326Z","gw_timestamp":1710024315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6690, '2016-08-11 03:38:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:47.15687Z","gw_timestamp":1724388179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5OTAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6692, '2016-08-11 03:38:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:08.696494Z","gw_timestamp":1745933659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6694, '2016-08-11 03:38:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:23.064884Z","gw_timestamp":1760297211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6696, '2016-08-11 03:38:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:37.421402Z","gw_timestamp":1774661075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6683, '2016-08-11 03:37:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:04.073026Z","gw_timestamp":1681296899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6685, '2016-08-11 03:37:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:18.431Z","gw_timestamp":1695660659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6687, '2016-08-11 03:37:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:25.616739Z","gw_timestamp":1702842595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6689, '2016-08-11 03:37:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:37:39.976402Z","gw_timestamp":1717206147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4ODAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6691, '2016-08-11 03:38:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:01.521156Z","gw_timestamp":1738751731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6693, '2016-08-11 03:38:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:15.877129Z","gw_timestamp":1753115587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6695, '2016-08-11 03:38:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:30.250383Z","gw_timestamp":1767479251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6697, '2016-08-11 03:38:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:44.630864Z","gw_timestamp":1781842483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0MjezGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6699, '2016-08-11 03:39:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:58.97602Z","gw_timestamp":1796205619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6701, '2016-08-11 03:39:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:13.336258Z","gw_timestamp":1810569163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6703, '2016-08-11 03:39:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:27.6965Z","gw_timestamp":1824932923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6705, '2016-08-11 03:39:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:42.064734Z","gw_timestamp":1839296579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjez+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6707, '2016-08-11 03:40:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:39:56.439257Z","gw_timestamp":1853660235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6709, '2016-08-11 03:40:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:10.799896Z","gw_timestamp":1868024099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6698, '2016-08-11 03:39:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:38:51.789377Z","gw_timestamp":1789023579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6712, '2016-08-11 03:40:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:32.331196Z","gw_timestamp":1889569587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6714, '2016-08-11 03:40:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:46.708833Z","gw_timestamp":1903933235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjeuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6716, '2016-08-11 03:41:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:01.089125Z","gw_timestamp":1918296995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6718, '2016-08-11 03:41:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:15.426126Z","gw_timestamp":1932659715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6720, '2016-08-11 03:41:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:29.783385Z","gw_timestamp":1947023371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5NDAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6722, '2016-08-11 03:41:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:36.973344Z","gw_timestamp":1954205195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6724, '2016-08-11 03:42:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:51.336388Z","gw_timestamp":1968568947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6726, '2016-08-11 03:42:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:12.892138Z","gw_timestamp":1990114435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6728, '2016-08-11 03:42:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:27.253867Z","gw_timestamp":2004478195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6730, '2016-08-11 03:42:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:41.599764Z","gw_timestamp":2018841531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6732, '2016-08-11 03:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:55.970018Z","gw_timestamp":2033204043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mje0aw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6734, '2016-08-11 03:43:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:10.323213Z","gw_timestamp":2047567283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6736, '2016-08-11 03:43:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:24.699653Z","gw_timestamp":2061930827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ4MjAxMjI3MDA0Mjeyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6710, '2016-08-11 03:40:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:17.969665Z","gw_timestamp":1875205827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6740, '2016-08-11 03:43:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:46.233508Z","gw_timestamp":2083475371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6742, '2016-08-11 03:44:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:07.789604Z","gw_timestamp":2105020027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6744, '2016-08-11 03:44:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:22.141784Z","gw_timestamp":2119383363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6746, '2016-08-11 03:44:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:36.508899Z","gw_timestamp":2133746187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6748, '2016-08-11 03:44:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:50.877269Z","gw_timestamp":2148109011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6750, '2016-08-11 03:45:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:05.23252Z","gw_timestamp":2162472971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6752, '2016-08-11 03:45:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:19.615496Z","gw_timestamp":2176836419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6772, '2016-08-11 03:47:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:50.414145Z","gw_timestamp":2327654171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6774, '2016-08-11 03:48:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:11.965006Z","gw_timestamp":2349199859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6776, '2016-08-11 03:48:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:26.326768Z","gw_timestamp":2363563515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6778, '2016-08-11 03:48:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:40.681647Z","gw_timestamp":2377927163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6780, '2016-08-11 03:48:57', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1308,"f_cnt_down":2114,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:48:50.276288Z","gw_timestamp":1131873508,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjE2MDA0NTUJkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6782, '2016-08-11 03:49:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:02.229521Z","gw_timestamp":2399471715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6711, '2016-08-11 03:40:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:25.152641Z","gw_timestamp":1882387859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6713, '2016-08-11 03:40:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:39.518883Z","gw_timestamp":1896751411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6715, '2016-08-11 03:41:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:40:53.88214Z","gw_timestamp":1911115163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6717, '2016-08-11 03:41:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:08.236509Z","gw_timestamp":1925478611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6719, '2016-08-11 03:41:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:22.607964Z","gw_timestamp":1939841539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6721, '2016-08-11 03:41:39', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":829,"f_cnt_down":1529,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:41:33.674757Z","gw_timestamp":695271764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjE3MDA0NjAHIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6723, '2016-08-11 03:41:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:41:44.143633Z","gw_timestamp":1961387123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6725, '2016-08-11 03:42:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:05.700776Z","gw_timestamp":1982932611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6727, '2016-08-11 03:42:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:20.061895Z","gw_timestamp":1997296363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MTAxMjI3MDA0Mjeuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6729, '2016-08-11 03:42:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:34.419135Z","gw_timestamp":2011660019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6731, '2016-08-11 03:42:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:42:48.789384Z","gw_timestamp":2026022731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6733, '2016-08-11 03:43:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:03.15191Z","gw_timestamp":2040385355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6735, '2016-08-11 03:43:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:17.512901Z","gw_timestamp":2054749107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6737, '2016-08-11 03:43:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:31.880261Z","gw_timestamp":2069112867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6738, '2016-08-11 03:43:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":5998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:39.055136Z","gw_timestamp":2076294067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6754, '2016-08-11 03:45:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:33.978145Z","gw_timestamp":2191200179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6756, '2016-08-11 03:45:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:48.3306Z","gw_timestamp":2205563731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6758, '2016-08-11 03:46:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:09.873198Z","gw_timestamp":2227109419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6760, '2016-08-11 03:46:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:24.240522Z","gw_timestamp":2241473179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6762, '2016-08-11 03:46:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:38.60301Z","gw_timestamp":2255836731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6764, '2016-08-11 03:47:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:52.961125Z","gw_timestamp":2270200491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6766, '2016-08-11 03:47:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:07.327646Z","gw_timestamp":2284563931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mje0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6768, '2016-08-11 03:47:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:21.692653Z","gw_timestamp":2298926963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6770, '2016-08-11 03:47:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:36.045895Z","gw_timestamp":2313290619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6786, '2016-08-11 03:49:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:30.964011Z","gw_timestamp":2428198499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6788, '2016-08-11 03:49:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:45.329671Z","gw_timestamp":2442561947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6790, '2016-08-11 03:50:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:59.687791Z","gw_timestamp":2456925499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MzAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6792, '2016-08-11 03:50:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:14.052909Z","gw_timestamp":2471289363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6739, '2016-08-11 03:43:48', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":825,"f_cnt_down":1485,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:40:22.982514Z","gw_timestamp":3759307196,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ4NDAxMjI3MDA0MzELAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6741, '2016-08-11 03:44:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:43:53.43041Z","gw_timestamp":2090656787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mje0Kw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6743, '2016-08-11 03:44:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:14.961249Z","gw_timestamp":2112201955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MjAxMjI3MDA0Mjeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6745, '2016-08-11 03:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:29.324263Z","gw_timestamp":2126564571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5OTAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6747, '2016-08-11 03:44:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:43.694162Z","gw_timestamp":2140927283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6749, '2016-08-11 03:45:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:44:58.066536Z","gw_timestamp":2155291043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0MjezOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6751, '2016-08-11 03:45:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:12.4094Z","gw_timestamp":2169654699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6753, '2016-08-11 03:45:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:26.775394Z","gw_timestamp":2184018355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6755, '2016-08-11 03:45:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:41.147641Z","gw_timestamp":2198382107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4NzAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6757, '2016-08-11 03:46:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:45:55.503218Z","gw_timestamp":2212745763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6759, '2016-08-11 03:46:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:17.051904Z","gw_timestamp":2234291251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6761, '2016-08-11 03:46:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:31.409146Z","gw_timestamp":2248655011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6763, '2016-08-11 03:46:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:46:45.778521Z","gw_timestamp":2263018763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6765, '2016-08-11 03:47:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:00.140765Z","gw_timestamp":2277382419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMzAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6767, '2016-08-11 03:47:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:14.513514Z","gw_timestamp":2291745035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6795, '2016-08-11 03:50:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:35.618057Z","gw_timestamp":2492834843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6797, '2016-08-11 03:50:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:49.974639Z","gw_timestamp":2507198603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6799, '2016-08-11 03:51:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:04.324483Z","gw_timestamp":2521561627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0Mjeyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6801, '2016-08-11 03:51:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:18.685647Z","gw_timestamp":2535924451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6803, '2016-08-11 03:51:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:33.041853Z","gw_timestamp":2550286747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6805, '2016-08-11 03:51:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:47.404163Z","gw_timestamp":2564650195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6807, '2016-08-11 03:52:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:01.840316Z","gw_timestamp":2579012811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6809, '2016-08-11 03:52:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:23.318419Z","gw_timestamp":2600557459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6811, '2016-08-11 03:52:39', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":746,"f_cnt_down":1330,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:52:33.034539Z","gw_timestamp":1354631868,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:09.098193Z","gw_timestamp":4285422876,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU1MTAxMjE4MDA0NjEhEg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6813, '2016-08-11 03:52:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:44.858293Z","gw_timestamp":2622102627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6815, '2016-08-11 03:53:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:59.22153Z","gw_timestamp":2636465755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6817, '2016-08-11 03:53:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:13.588039Z","gw_timestamp":2650829523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2OTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6769, '2016-08-11 03:47:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:28.864256Z","gw_timestamp":2306108795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6771, '2016-08-11 03:47:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:43.228523Z","gw_timestamp":2320472547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6773, '2016-08-11 03:48:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:47:57.595903Z","gw_timestamp":2334836099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6775, '2016-08-11 03:48:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:19.149043Z","gw_timestamp":2356381683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6777, '2016-08-11 03:48:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:33.503029Z","gw_timestamp":2370745443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6779, '2016-08-11 03:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:47.869222Z","gw_timestamp":2385108163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6781, '2016-08-11 03:49:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:48:55.063419Z","gw_timestamp":2392289987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6783, '2016-08-11 03:49:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:09.447401Z","gw_timestamp":2406653539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mje0Gw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6785, '2016-08-11 03:49:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:23.780403Z","gw_timestamp":2421017507,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6787, '2016-08-11 03:49:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:38.138894Z","gw_timestamp":2435380219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6789, '2016-08-11 03:50:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:52.505279Z","gw_timestamp":2449743771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6791, '2016-08-11 03:50:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:06.863283Z","gw_timestamp":2464107323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6793, '2016-08-11 03:50:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:21.236676Z","gw_timestamp":2478470875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6849, '2016-08-11 03:57:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:03.394454Z","gw_timestamp":2880645699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6784, '2016-08-11 03:49:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:49:16.590164Z","gw_timestamp":2413835579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4OTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6796, '2016-08-11 03:50:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:42.780533Z","gw_timestamp":2500016667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6798, '2016-08-11 03:51:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:57.132784Z","gw_timestamp":2514380427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6800, '2016-08-11 03:51:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:11.510153Z","gw_timestamp":2528743035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6802, '2016-08-11 03:51:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:25.870332Z","gw_timestamp":2543105651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6804, '2016-08-11 03:51:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:40.229522Z","gw_timestamp":2557468475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjeuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6806, '2016-08-11 03:52:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:51:54.58386Z","gw_timestamp":2571831299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6808, '2016-08-11 03:52:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:16.132782Z","gw_timestamp":2593376155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNTAxMjI3MDA0MjezSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6810, '2016-08-11 03:52:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:30.500233Z","gw_timestamp":2607739291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6812, '2016-08-11 03:52:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:37.682788Z","gw_timestamp":2614921323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6814, '2016-08-11 03:53:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:52:52.035187Z","gw_timestamp":2629283939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6816, '2016-08-11 03:53:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:06.39829Z","gw_timestamp":2643647691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6818, '2016-08-11 03:53:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:20.770529Z","gw_timestamp":2658011243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6820, '2016-08-11 03:53:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:35.125781Z","gw_timestamp":2672375107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6794, '2016-08-11 03:50:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:50:28.411103Z","gw_timestamp":2485652803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6824, '2016-08-11 03:54:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:03.856293Z","gw_timestamp":2701101483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6826, '2016-08-11 03:54:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:25.408306Z","gw_timestamp":2722646859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6828, '2016-08-11 03:54:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:39.769543Z","gw_timestamp":2737010723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6830, '2016-08-11 03:55:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:54.123797Z","gw_timestamp":2751374267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6832, '2016-08-11 03:55:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:08.496648Z","gw_timestamp":2765738027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6834, '2016-08-11 03:55:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:22.855287Z","gw_timestamp":2780101683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6836, '2016-08-11 03:55:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:37.216659Z","gw_timestamp":2794464507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6838, '2016-08-11 03:56:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:51.583911Z","gw_timestamp":2808828155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjeuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6840, '2016-08-11 03:56:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:05.944294Z","gw_timestamp":2823191915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU5MzAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6870, '2016-08-11 03:59:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:19.849427Z","gw_timestamp":3017099587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6872, '2016-08-11 03:59:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:34.221677Z","gw_timestamp":3031463347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6874, '2016-08-11 03:59:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:48.58193Z","gw_timestamp":3045827203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6876, '2016-08-11 04:00:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:02.961286Z","gw_timestamp":3060190971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6819, '2016-08-11 03:53:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:27.963625Z","gw_timestamp":2665193179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6821, '2016-08-11 03:53:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:42.315654Z","gw_timestamp":2679556411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6823, '2016-08-11 03:54:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:56.677659Z","gw_timestamp":2693919651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6825, '2016-08-11 03:54:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:18.235978Z","gw_timestamp":2715465131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6827, '2016-08-11 03:54:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:32.580295Z","gw_timestamp":2729828787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6829, '2016-08-11 03:54:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:54:46.945551Z","gw_timestamp":2744192443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6831, '2016-08-11 03:55:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:01.31422Z","gw_timestamp":2758556203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6833, '2016-08-11 03:55:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:15.681668Z","gw_timestamp":2772919859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6835, '2016-08-11 03:55:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:30.041037Z","gw_timestamp":2787282883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6837, '2016-08-11 03:55:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:44.41051Z","gw_timestamp":2801646331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6839, '2016-08-11 03:56:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:55:58.770762Z","gw_timestamp":2816009875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6841, '2016-08-11 03:56:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:20.339821Z","gw_timestamp":2837554635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6843, '2016-08-11 03:56:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:34.677923Z","gw_timestamp":2851918291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6845, '2016-08-11 03:56:46', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":830,"f_cnt_down":1530,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:56:44.446211Z","gw_timestamp":1606043660,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4ODAxMjE3MDA0NjAMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6822, '2016-08-11 03:53:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:53:49.49317Z","gw_timestamp":2686737819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6842, '2016-08-11 03:56:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:27.498052Z","gw_timestamp":2844736355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6844, '2016-08-11 03:56:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:41.862422Z","gw_timestamp":2859100115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6846, '2016-08-11 03:56:50', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":831,"f_cnt_down":1531,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:53:20.509882Z","gw_timestamp":241867268,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":-14.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4ODAxMjE3MDA0NjAMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6848, '2016-08-11 03:57:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:56.21967Z","gw_timestamp":2873463875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6850, '2016-08-11 03:57:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:10.58915Z","gw_timestamp":2887826899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6852, '2016-08-11 03:57:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:24.956445Z","gw_timestamp":2902190243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6854, '2016-08-11 03:57:41', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":831,"f_cnt_down":1532,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:54:09.875001Z","gw_timestamp":291232388,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU4ODAxMjE3MDA0NjAMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6856, '2016-08-11 03:57:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:46.493041Z","gw_timestamp":2923735731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6858, '2016-08-11 03:58:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:00.870693Z","gw_timestamp":2938099491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6860, '2016-08-11 03:58:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:22.396291Z","gw_timestamp":2959644763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6862, '2016-08-11 03:58:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:36.761821Z","gw_timestamp":2974008731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6864, '2016-08-11 03:58:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:51.148167Z","gw_timestamp":2988372275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6866, '2016-08-11 03:58:59', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":827,"f_cnt_down":1487,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:55:33.828465Z","gw_timestamp":375185852,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5MjAxMjI2MDA0MzErkg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6847, '2016-08-11 03:56:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:56:49.06567Z","gw_timestamp":2866281939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6887, '2016-08-11 04:01:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:29.139063Z","gw_timestamp":3146370083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6889, '2016-08-11 04:01:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:43.483188Z","gw_timestamp":3160732595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6891, '2016-08-11 04:02:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:57.85544Z","gw_timestamp":3175096451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6893, '2016-08-11 04:02:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:12.218671Z","gw_timestamp":3189460211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6895, '2016-08-11 04:02:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:26.580934Z","gw_timestamp":3203823971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6897, '2016-08-11 04:02:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:40.935308Z","gw_timestamp":3218187419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6921, '2016-08-11 04:05:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:33.295557Z","gw_timestamp":3390548147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6923, '2016-08-11 04:05:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:47.655823Z","gw_timestamp":3404910971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6925, '2016-08-11 04:06:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:02.024154Z","gw_timestamp":3419274307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6927, '2016-08-11 04:06:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:16.393633Z","gw_timestamp":3433637971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6929, '2016-08-11 04:06:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:30.753699Z","gw_timestamp":3448001203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6931, '2016-08-11 04:06:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:45.115075Z","gw_timestamp":3462364235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNTAxMjI3MDA0MjezCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6957, '2016-08-11 04:09:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:37.474833Z","gw_timestamp":3634724747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6851, '2016-08-11 03:57:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:17.764674Z","gw_timestamp":2895008315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6853, '2016-08-11 03:57:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:32.128796Z","gw_timestamp":2909371963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6855, '2016-08-11 03:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:39.310423Z","gw_timestamp":2916553899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMzAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6857, '2016-08-11 03:58:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:57:53.677802Z","gw_timestamp":2930917763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6859, '2016-08-11 03:58:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:08.045034Z","gw_timestamp":2945281315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NzAxMjI3MDA0Mjeuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6861, '2016-08-11 03:58:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:29.57917Z","gw_timestamp":2966826691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6863, '2016-08-11 03:58:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:43.945154Z","gw_timestamp":2981190659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6865, '2016-08-11 03:58:59', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":826,"f_cnt_down":1486,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T03:58:57.764802Z","gw_timestamp":1739362316,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDQ5MjAxMjI2MDA0MzErkg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6867, '2016-08-11 03:59:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:58:58.31143Z","gw_timestamp":2995554211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6869, '2016-08-11 03:59:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:12.671179Z","gw_timestamp":3009917971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6871, '2016-08-11 03:59:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:27.033423Z","gw_timestamp":3024281619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMzAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6873, '2016-08-11 03:59:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:41.418418Z","gw_timestamp":3038645283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6875, '2016-08-11 04:00:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:55.782989Z","gw_timestamp":3053009035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6877, '2016-08-11 04:00:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:10.121812Z","gw_timestamp":3067372691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NjAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6868, '2016-08-11 03:59:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T03:59:05.538294Z","gw_timestamp":3002736035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjeuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6880, '2016-08-11 04:00:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:38.853574Z","gw_timestamp":3096098539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6882, '2016-08-11 04:01:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:53.210896Z","gw_timestamp":3110461779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6884, '2016-08-11 04:01:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:07.571931Z","gw_timestamp":3124825539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6886, '2016-08-11 04:01:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:21.938184Z","gw_timestamp":3139188467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6888, '2016-08-11 04:01:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:36.306544Z","gw_timestamp":3153551283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6890, '2016-08-11 04:01:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:50.66181Z","gw_timestamp":3167914627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6900, '2016-08-11 04:03:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:02.488182Z","gw_timestamp":3239732379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6902, '2016-08-11 04:03:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:16.854587Z","gw_timestamp":3254095619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6904, '2016-08-11 04:03:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:31.204681Z","gw_timestamp":3268459475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6906, '2016-08-11 04:03:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:45.572189Z","gw_timestamp":3282823131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6908, '2016-08-11 04:04:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:59.943713Z","gw_timestamp":3297185643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6910, '2016-08-11 04:04:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:07.118944Z","gw_timestamp":3304367675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6912, '2016-08-11 04:04:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:28.663806Z","gw_timestamp":3325913267,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6878, '2016-08-11 04:00:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:24.496175Z","gw_timestamp":3081735931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6892, '2016-08-11 04:02:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:05.032042Z","gw_timestamp":3182278283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6894, '2016-08-11 04:02:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:19.395526Z","gw_timestamp":3196642035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6896, '2016-08-11 04:02:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:33.769148Z","gw_timestamp":3211005595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6898, '2016-08-11 04:02:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:48.118939Z","gw_timestamp":3225369347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6916, '2016-08-11 04:05:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:57.391796Z","gw_timestamp":3354639635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6918, '2016-08-11 04:05:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:11.752692Z","gw_timestamp":3369003187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6920, '2016-08-11 04:05:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:26.116927Z","gw_timestamp":3383366947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6922, '2016-08-11 04:05:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:40.507457Z","gw_timestamp":3397729659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6924, '2016-08-11 04:06:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:54.840636Z","gw_timestamp":3412092275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6926, '2016-08-11 04:06:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:09.200687Z","gw_timestamp":3426456139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6928, '2016-08-11 04:06:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:23.573065Z","gw_timestamp":3440819795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6930, '2016-08-11 04:06:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:37.93431Z","gw_timestamp":3455182507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6932, '2016-08-11 04:06:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:52.303307Z","gw_timestamp":3469546267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6879, '2016-08-11 04:00:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:31.671264Z","gw_timestamp":3088917235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6881, '2016-08-11 04:00:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:00:46.028055Z","gw_timestamp":3103279955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6883, '2016-08-11 04:01:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:00.397951Z","gw_timestamp":3117643603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6885, '2016-08-11 04:01:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:01:14.763501Z","gw_timestamp":3132007363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6899, '2016-08-11 04:03:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:02:55.307563Z","gw_timestamp":3232551179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6901, '2016-08-11 04:03:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:09.67227Z","gw_timestamp":3246913683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6903, '2016-08-11 04:03:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:24.036334Z","gw_timestamp":3261277651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MDAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6905, '2016-08-11 04:03:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:38.397443Z","gw_timestamp":3275641203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6907, '2016-08-11 04:03:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:03:52.760818Z","gw_timestamp":3290004331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6909, '2016-08-11 04:04:09', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1309,"f_cnt_down":2115,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:04:01.101863Z","gw_timestamp":2042699524,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:00:37.165546Z","gw_timestamp":678522932,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzNzAxMjE2MDA0NTUKEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6911, '2016-08-11 04:04:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:14.294611Z","gw_timestamp":3311549507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6913, '2016-08-11 04:04:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:35.845708Z","gw_timestamp":3333095195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6915, '2016-08-11 04:04:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:50.218954Z","gw_timestamp":3347458019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI3MDA0MjezSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6914, '2016-08-11 04:04:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:04:43.030005Z","gw_timestamp":3340276915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NzAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6934, '2016-08-11 04:07:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:06.654797Z","gw_timestamp":3483909923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6936, '2016-08-11 04:07:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:21.016058Z","gw_timestamp":3498272531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NDAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6938, '2016-08-11 04:07:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:35.380453Z","gw_timestamp":3512635251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6940, '2016-08-11 04:07:45', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":747,"f_cnt_down":1331,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:07:43.826995Z","gw_timestamp":2265424764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjE4MDA0NjEJ8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6942, '2016-08-11 04:07:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:49.804966Z","gw_timestamp":3526999011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6944, '2016-08-11 04:08:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:04.114141Z","gw_timestamp":3541362667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6946, '2016-08-11 04:08:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:18.474193Z","gw_timestamp":3555725283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6948, '2016-08-11 04:08:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:32.8407Z","gw_timestamp":3570089035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6950, '2016-08-11 04:08:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:47.202597Z","gw_timestamp":3584452795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6952, '2016-08-11 04:09:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:01.562076Z","gw_timestamp":3598816139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6954, '2016-08-11 04:09:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:15.922322Z","gw_timestamp":3613179067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6956, '2016-08-11 04:09:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:30.320689Z","gw_timestamp":3627542819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU4MzAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6958, '2016-08-11 04:09:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:44.662329Z","gw_timestamp":3641906267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6917, '2016-08-11 04:05:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:04.582674Z","gw_timestamp":3361821355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6919, '2016-08-11 04:05:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:05:18.935471Z","gw_timestamp":3376185219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6933, '2016-08-11 04:07:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:06:59.482186Z","gw_timestamp":3476728091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6935, '2016-08-11 04:07:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:13.850997Z","gw_timestamp":3491091331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6937, '2016-08-11 04:07:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:28.198822Z","gw_timestamp":3505453947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjeuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6939, '2016-08-11 04:07:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:42.569333Z","gw_timestamp":3519817075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6941, '2016-08-11 04:07:50', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":748,"f_cnt_down":1332,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:19.890682Z","gw_timestamp":901248068,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-7.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzOTAxMjE4MDA0NjEJ8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6943, '2016-08-11 04:08:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:07:56.936319Z","gw_timestamp":3534180627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6945, '2016-08-11 04:08:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:11.298952Z","gw_timestamp":3548543971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6947, '2016-08-11 04:08:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:25.662774Z","gw_timestamp":3562907211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MjAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6949, '2016-08-11 04:08:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:40.034986Z","gw_timestamp":3577270859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6951, '2016-08-11 04:09:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:08:54.377835Z","gw_timestamp":3591634619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3ODAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6953, '2016-08-11 04:09:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:08.747704Z","gw_timestamp":3605997235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6955, '2016-08-11 04:09:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:23.105948Z","gw_timestamp":3620360891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6959, '2016-08-11 04:09:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:51.832572Z","gw_timestamp":3649087363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6961, '2016-08-11 04:10:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:06.220103Z","gw_timestamp":3663451123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0Mjeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6963, '2016-08-11 04:10:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:20.558078Z","gw_timestamp":3677814779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6965, '2016-08-11 04:10:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:34.93233Z","gw_timestamp":3692177491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6967, '2016-08-11 04:10:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:49.282564Z","gw_timestamp":3706540107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6969, '2016-08-11 04:11:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:03.678224Z","gw_timestamp":3720902827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6971, '2016-08-11 04:11:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:18.028481Z","gw_timestamp":3735266587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6973, '2016-08-11 04:11:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:32.381584Z","gw_timestamp":3749630139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6975, '2016-08-11 04:11:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:46.737711Z","gw_timestamp":3763992955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6977, '2016-08-11 04:12:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:01.138226Z","gw_timestamp":3778356715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6979, '2016-08-11 04:12:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:15.495351Z","gw_timestamp":3792720371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6981, '2016-08-11 04:12:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:37.020423Z","gw_timestamp":3814265955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6983, '2016-08-11 04:12:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:44.188823Z","gw_timestamp":3821447787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NzAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6985, '2016-08-11 04:13:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:58.558078Z","gw_timestamp":3835811331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI3MDA0Mjeuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6960, '2016-08-11 04:10:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:09:59.016208Z","gw_timestamp":3656269403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6964, '2016-08-11 04:10:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:27.749705Z","gw_timestamp":3684996395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6966, '2016-08-11 04:10:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:42.12647Z","gw_timestamp":3699358803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6968, '2016-08-11 04:11:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:56.471331Z","gw_timestamp":3713721419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjezyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6970, '2016-08-11 04:11:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:10.835588Z","gw_timestamp":3728084755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwMTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6972, '2016-08-11 04:11:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:25.191835Z","gw_timestamp":3742448411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6974, '2016-08-11 04:11:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:39.560298Z","gw_timestamp":3756811651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6976, '2016-08-11 04:12:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:11:53.924417Z","gw_timestamp":3771174779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6978, '2016-08-11 04:12:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:08.283694Z","gw_timestamp":3785538547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6980, '2016-08-11 04:12:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:22.655944Z","gw_timestamp":3799902195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6982, '2016-08-11 04:12:46', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":831,"f_cnt_down":1533,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:09:20.646921Z","gw_timestamp":1202004308,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1OTAxMjE3MDA0NjAJEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6984, '2016-08-11 04:12:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:12:51.384556Z","gw_timestamp":3828629611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6986, '2016-08-11 04:13:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:05.73383Z","gw_timestamp":3842993267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6988, '2016-08-11 04:13:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:20.103087Z","gw_timestamp":3857357027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6962, '2016-08-11 04:10:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:10:13.383451Z","gw_timestamp":3670632947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7001, '2016-08-11 04:14:37', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":829,"f_cnt_down":1490,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:14:33.288772Z","gw_timestamp":2674886740,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4NDAxMjI1MDA0MzIoAg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7004, '2016-08-11 04:15:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:53.485495Z","gw_timestamp":3950719315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3OTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7007, '2016-08-11 04:15:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:15.009219Z","gw_timestamp":3972263555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7010, '2016-08-11 04:15:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:36.559085Z","gw_timestamp":3993808403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7013, '2016-08-11 04:16:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:58.102088Z","gw_timestamp":4015352643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7016, '2016-08-11 04:16:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:19.662432Z","gw_timestamp":4036898227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7046, '2016-08-11 04:19:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:47.920475Z","gw_timestamp":4245167571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7049, '2016-08-11 04:20:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:09.454283Z","gw_timestamp":4266713363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7052, '2016-08-11 04:20:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:31.019291Z","gw_timestamp":4288258851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7082, '2016-08-11 04:24:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:59.287996Z","gw_timestamp":201563187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7084, '2016-08-11 04:24:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:13.632112Z","gw_timestamp":215926219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7086, '2016-08-11 04:24:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:28.00236Z","gw_timestamp":230289563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7088, '2016-08-11 04:24:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:49.539239Z","gw_timestamp":251835147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjeuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6987, '2016-08-11 04:13:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:12.938587Z","gw_timestamp":3850175195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7002, '2016-08-11 04:14:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:39.106821Z","gw_timestamp":3936356187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMzAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7005, '2016-08-11 04:15:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:00.65396Z","gw_timestamp":3957900731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7008, '2016-08-11 04:15:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:22.186246Z","gw_timestamp":3979445379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7011, '2016-08-11 04:15:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:43.770112Z","gw_timestamp":4000989819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7014, '2016-08-11 04:16:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:05.275717Z","gw_timestamp":4022534467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7017, '2016-08-11 04:16:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:26.819595Z","gw_timestamp":4044080051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7020, '2016-08-11 04:16:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:48.374548Z","gw_timestamp":4065624491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7023, '2016-08-11 04:17:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:09.9096Z","gw_timestamp":4087170179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMzAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7026, '2016-08-11 04:17:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:31.455284Z","gw_timestamp":4108715667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7029, '2016-08-11 04:18:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:53.012215Z","gw_timestamp":4130261147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3MjAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7035, '2016-08-11 04:18:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:36.092104Z","gw_timestamp":4173350235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7038, '2016-08-11 04:19:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:57.646354Z","gw_timestamp":4194895723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7041, '2016-08-11 04:19:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:12.008477Z","gw_timestamp":4209258539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6989, '2016-08-11 04:13:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:27.295074Z","gw_timestamp":3864538747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6991, '2016-08-11 04:13:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:41.643954Z","gw_timestamp":3878902507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6993, '2016-08-11 04:14:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:56.010207Z","gw_timestamp":3893266163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6995, '2016-08-11 04:14:10', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":827,"f_cnt_down":1488,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:10:44.670618Z","gw_timestamp":1286028004,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4NDAxMjI1MDA0MzIoAg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6997, '2016-08-11 04:14:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:17.570359Z","gw_timestamp":3914810707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6999, '2016-08-11 04:14:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:31.928458Z","gw_timestamp":3929174459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7019, '2016-08-11 04:16:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:41.187828Z","gw_timestamp":4058442667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7022, '2016-08-11 04:17:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:02.733835Z","gw_timestamp":4079988259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7025, '2016-08-11 04:17:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:24.29203Z","gw_timestamp":4101533731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5MjAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7028, '2016-08-11 04:17:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:45.824634Z","gw_timestamp":4123079427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7031, '2016-08-11 04:18:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:07.363546Z","gw_timestamp":4144624387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7034, '2016-08-11 04:18:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:28.909833Z","gw_timestamp":4166168403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7037, '2016-08-11 04:18:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:50.466344Z","gw_timestamp":4187713995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7040, '2016-08-11 04:19:13', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1310,"f_cnt_down":2116,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:19:11.928276Z","gw_timestamp":2953526380,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyMzAxMjE2MDA0NTYXkQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6990, '2016-08-11 04:13:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:34.471326Z","gw_timestamp":3871720571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6992, '2016-08-11 04:13:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:13:48.824985Z","gw_timestamp":3886084331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3OTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6994, '2016-08-11 04:14:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:03.226023Z","gw_timestamp":3900448195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6996, '2016-08-11 04:14:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:10.380585Z","gw_timestamp":3907629291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (6998, '2016-08-11 04:14:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:24.734971Z","gw_timestamp":3921992635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7000, '2016-08-11 04:14:34', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":828,"f_cnt_down":1489,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:11:09.352481Z","gw_timestamp":1310709868,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDQ4NDAxMjI1MDA0MzIoAg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7003, '2016-08-11 04:14:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:14:46.285711Z","gw_timestamp":3943538219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7006, '2016-08-11 04:15:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:07.848863Z","gw_timestamp":3965082139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7009, '2016-08-11 04:15:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:29.376337Z","gw_timestamp":3986627307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7012, '2016-08-11 04:15:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:15:50.912461Z","gw_timestamp":4008170811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7015, '2016-08-11 04:16:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:12.455271Z","gw_timestamp":4029716291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7018, '2016-08-11 04:16:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:34.015208Z","gw_timestamp":4051261155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7021, '2016-08-11 04:17:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:16:55.558201Z","gw_timestamp":4072806427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5NjAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7024, '2016-08-11 04:17:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:17.095075Z","gw_timestamp":4094351803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7027, '2016-08-11 04:17:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:17:38.642222Z","gw_timestamp":4115897491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7033, '2016-08-11 04:18:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:21.72482Z","gw_timestamp":4158987107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0MjeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7036, '2016-08-11 04:18:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:43.271725Z","gw_timestamp":4180532059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU5NTAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7039, '2016-08-11 04:19:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:04.847869Z","gw_timestamp":4202076915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7030, '2016-08-11 04:18:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:00.188975Z","gw_timestamp":4137443075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MDAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7042, '2016-08-11 04:19:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:19.177968Z","gw_timestamp":4216440475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7045, '2016-08-11 04:19:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:40.726844Z","gw_timestamp":4237985947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7048, '2016-08-11 04:20:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:02.283105Z","gw_timestamp":4259531331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7051, '2016-08-11 04:20:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:23.827137Z","gw_timestamp":4281076915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7032, '2016-08-11 04:18:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:18:14.563617Z","gw_timestamp":4151805587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7053, '2016-08-11 04:20:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:45.365461Z","gw_timestamp":7654475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7055, '2016-08-11 04:21:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:59.732857Z","gw_timestamp":22017819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNTAxMjI3MDA0MjevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7057, '2016-08-11 04:21:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:14.085351Z","gw_timestamp":36381579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7059, '2016-08-11 04:21:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:28.459493Z","gw_timestamp":50745339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7061, '2016-08-11 04:21:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:42.817734Z","gw_timestamp":65109099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7063, '2016-08-11 04:22:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:57.190252Z","gw_timestamp":79472651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7065, '2016-08-11 04:22:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:11.552233Z","gw_timestamp":93836403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7067, '2016-08-11 04:22:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:25.906478Z","gw_timestamp":108200059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7069, '2016-08-11 04:22:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:40.271709Z","gw_timestamp":122563715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7071, '2016-08-11 04:22:55', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":748,"f_cnt_down":1333,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:19:30.666361Z","gw_timestamp":1812023748,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNzAxMjE4MDA0NjAIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7073, '2016-08-11 04:23:03', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":749,"f_cnt_down":1334,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:22:54.602633Z","gw_timestamp":3176200844,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNzAxMjE4MDA0NjAIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7075, '2016-08-11 04:23:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:08.999358Z","gw_timestamp":151291235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7077, '2016-08-11 04:23:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:23.370968Z","gw_timestamp":165654883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7043, '2016-08-11 04:19:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:26.372602Z","gw_timestamp":4223622195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7054, '2016-08-11 04:21:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:52.549231Z","gw_timestamp":14836099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7056, '2016-08-11 04:21:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:06.914044Z","gw_timestamp":29199851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7058, '2016-08-11 04:21:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:21.269921Z","gw_timestamp":43563507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7060, '2016-08-11 04:21:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:35.631104Z","gw_timestamp":57927267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7062, '2016-08-11 04:21:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:21:50.003614Z","gw_timestamp":72290819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7064, '2016-08-11 04:22:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:04.360833Z","gw_timestamp":86654579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7066, '2016-08-11 04:22:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:18.721852Z","gw_timestamp":101018331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7068, '2016-08-11 04:22:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:33.092115Z","gw_timestamp":115381683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4NjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7070, '2016-08-11 04:22:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:47.463737Z","gw_timestamp":129745755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7072, '2016-08-11 04:22:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:22:54.642088Z","gw_timestamp":136927579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0MjevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7074, '2016-08-11 04:23:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:01.817742Z","gw_timestamp":144109403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7076, '2016-08-11 04:23:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:16.177927Z","gw_timestamp":158473163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7078, '2016-08-11 04:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:30.551234Z","gw_timestamp":172835979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7044, '2016-08-11 04:19:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:33.541384Z","gw_timestamp":4230804131,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7047, '2016-08-11 04:20:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:19:55.129526Z","gw_timestamp":4252349507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7050, '2016-08-11 04:20:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:20:16.634139Z","gw_timestamp":4273895187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDQ5MDAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7081, '2016-08-11 04:24:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:52.09724Z","gw_timestamp":194381259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7083, '2016-08-11 04:24:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:06.460479Z","gw_timestamp":208744915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7085, '2016-08-11 04:24:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:20.835224Z","gw_timestamp":223107731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7087, '2016-08-11 04:24:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:35.180987Z","gw_timestamp":237471387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMzAxMjI3MDA0Mjeveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7089, '2016-08-11 04:25:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:24:56.723133Z","gw_timestamp":259016659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7091, '2016-08-11 04:25:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:11.091739Z","gw_timestamp":273379691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7093, '2016-08-11 04:25:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:25.449492Z","gw_timestamp":287743347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7095, '2016-08-11 04:25:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:39.814714Z","gw_timestamp":302107107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7097, '2016-08-11 04:26:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:54.184257Z","gw_timestamp":316470659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7099, '2016-08-11 04:26:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:08.550519Z","gw_timestamp":330834419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3OTAxMjI3MDA0MjeuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7079, '2016-08-11 04:23:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:37.733855Z","gw_timestamp":180017603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7080, '2016-08-11 04:23:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:23:44.909486Z","gw_timestamp":187199435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7092, '2016-08-11 04:25:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:18.282731Z","gw_timestamp":280561515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7094, '2016-08-11 04:25:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:32.636105Z","gw_timestamp":294925171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5MDAxMjI3MDA0Mjeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7096, '2016-08-11 04:25:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:46.998367Z","gw_timestamp":309288723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7098, '2016-08-11 04:26:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:01.359601Z","gw_timestamp":323652483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7100, '2016-08-11 04:26:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:15.743376Z","gw_timestamp":338016347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7090, '2016-08-11 04:25:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:25:03.901617Z","gw_timestamp":266197763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7101, '2016-08-11 04:26:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:22.907771Z","gw_timestamp":345198067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3OTAxMjI3MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7102, '2016-08-11 04:26:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:30.084235Z","gw_timestamp":352379995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7103, '2016-08-11 04:26:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:37.267854Z","gw_timestamp":359561723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7104, '2016-08-11 04:27:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:51.630106Z","gw_timestamp":373924443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7105, '2016-08-11 04:27:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:26:58.823204Z","gw_timestamp":381106475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7106, '2016-08-11 04:27:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:06.001369Z","gw_timestamp":388288203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7107, '2016-08-11 04:27:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:13.171373Z","gw_timestamp":395470027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7108, '2016-08-11 04:27:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:20.360735Z","gw_timestamp":402652059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MzAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7109, '2016-08-11 04:27:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:27.537382Z","gw_timestamp":409833579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7110, '2016-08-11 04:27:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:34.718994Z","gw_timestamp":417015611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7111, '2016-08-11 04:27:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:41.905626Z","gw_timestamp":424196707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjezuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7112, '2016-08-11 04:27:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:49.102344Z","gw_timestamp":431378227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7113, '2016-08-11 04:27:57', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":832,"f_cnt_down":1534,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:27:55.354679Z","gw_timestamp":3476953036,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU4ODAxMjE3MDA0NjAIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7114, '2016-08-11 04:27:57', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":833,"f_cnt_down":1535,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:24:31.418426Z","gw_timestamp":2112775812,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDU4ODAxMjE3MDA0NjAIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7116, '2016-08-11 04:28:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:03.447497Z","gw_timestamp":445741987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7118, '2016-08-11 04:28:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:17.810745Z","gw_timestamp":460105747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7120, '2016-08-11 04:28:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:32.173113Z","gw_timestamp":474468355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5MjAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7122, '2016-08-11 04:28:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:46.537638Z","gw_timestamp":488831075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7124, '2016-08-11 04:29:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:00.898005Z","gw_timestamp":503194835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0Mjevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7126, '2016-08-11 04:29:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:15.258877Z","gw_timestamp":517557443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":5.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7128, '2016-08-11 04:29:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:29.650337Z","gw_timestamp":531920163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7130, '2016-08-11 04:29:45', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":829,"f_cnt_down":1491,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:26:20.196882Z","gw_timestamp":2221554268,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-13.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI0MDA0MzQJsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7132, '2016-08-11 04:29:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:51.171071Z","gw_timestamp":553465643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7134, '2016-08-11 04:30:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:05.533588Z","gw_timestamp":567829507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MzAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7136, '2016-08-11 04:30:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:19.905956Z","gw_timestamp":582193051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7138, '2016-08-11 04:30:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:34.268875Z","gw_timestamp":596556819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7140, '2016-08-11 04:31:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:55.804866Z","gw_timestamp":618102403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7115, '2016-08-11 04:28:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:27:56.271869Z","gw_timestamp":438560155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7119, '2016-08-11 04:28:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:25.000358Z","gw_timestamp":467287051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7121, '2016-08-11 04:28:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:39.38002Z","gw_timestamp":481649971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7123, '2016-08-11 04:29:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:53.715985Z","gw_timestamp":496013003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7125, '2016-08-11 04:29:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:08.077476Z","gw_timestamp":510376243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7127, '2016-08-11 04:29:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:22.452499Z","gw_timestamp":524738963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7129, '2016-08-11 04:29:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:36.814739Z","gw_timestamp":539101987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7131, '2016-08-11 04:29:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:43.99549Z","gw_timestamp":546283923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7133, '2016-08-11 04:30:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:29:58.353752Z","gw_timestamp":560647571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7135, '2016-08-11 04:30:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:12.719005Z","gw_timestamp":575011227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7137, '2016-08-11 04:30:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:27.086756Z","gw_timestamp":589374987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7139, '2016-08-11 04:30:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:30:41.440341Z","gw_timestamp":603738747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7141, '2016-08-11 04:31:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:02.994578Z","gw_timestamp":625284331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5NDAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7143, '2016-08-11 04:31:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:17.36004Z","gw_timestamp":639647883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI3MDA0Mjeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7117, '2016-08-11 04:28:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:28:10.636126Z","gw_timestamp":452923915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7147, '2016-08-11 04:31:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:46.074458Z","gw_timestamp":668375299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7149, '2016-08-11 04:32:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:00.444582Z","gw_timestamp":682738011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7151, '2016-08-11 04:32:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:14.803877Z","gw_timestamp":697101563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7163, '2016-08-11 04:33:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:40.989721Z","gw_timestamp":783281931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI3MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7165, '2016-08-11 04:34:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:55.344879Z","gw_timestamp":797644539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7167, '2016-08-11 04:34:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:09.707013Z","gw_timestamp":812008299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNjAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7169, '2016-08-11 04:34:25', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1311,"f_cnt_down":2117,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:34:22.752961Z","gw_timestamp":3864351508,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUxNjAxMjE2MDA0NTUG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7171, '2016-08-11 04:34:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:31.273512Z","gw_timestamp":833553675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7173, '2016-08-11 04:34:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:45.632746Z","gw_timestamp":847917123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7175, '2016-08-11 04:35:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:59.982507Z","gw_timestamp":862280259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7177, '2016-08-11 04:35:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:14.349766Z","gw_timestamp":876643811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7179, '2016-08-11 04:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:28.741252Z","gw_timestamp":891007771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7181, '2016-08-11 04:35:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:43.079604Z","gw_timestamp":905370803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0Mje0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7142, '2016-08-11 04:31:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:10.168357Z","gw_timestamp":632465955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NzAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7146, '2016-08-11 04:31:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:38.90985Z","gw_timestamp":661193467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7148, '2016-08-11 04:32:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:53.262872Z","gw_timestamp":675556811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7150, '2016-08-11 04:32:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:07.626258Z","gw_timestamp":689919739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7152, '2016-08-11 04:32:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:21.98951Z","gw_timestamp":704283595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7154, '2016-08-11 04:32:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:36.348757Z","gw_timestamp":718647251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7156, '2016-08-11 04:32:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:50.729281Z","gw_timestamp":733010499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7158, '2016-08-11 04:33:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:05.077262Z","gw_timestamp":747373523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ4MDAxMjI3MDA0MjeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7160, '2016-08-11 04:33:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:19.441626Z","gw_timestamp":761737387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7162, '2016-08-11 04:33:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:33.799892Z","gw_timestamp":776100203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7164, '2016-08-11 04:33:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:48.165121Z","gw_timestamp":790463339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0MjezCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7166, '2016-08-11 04:34:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:02.527381Z","gw_timestamp":804826475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7168, '2016-08-11 04:34:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:16.897138Z","gw_timestamp":819190019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3OTAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7170, '2016-08-11 04:34:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:24.073332Z","gw_timestamp":826371851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7144, '2016-08-11 04:31:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:24.54038Z","gw_timestamp":646829811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNTAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7174, '2016-08-11 04:35:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:52.801393Z","gw_timestamp":855098219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7176, '2016-08-11 04:35:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:07.166141Z","gw_timestamp":869462083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7178, '2016-08-11 04:35:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:21.53338Z","gw_timestamp":883825843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7180, '2016-08-11 04:35:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:35.886754Z","gw_timestamp":898189499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU4MzAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7182, '2016-08-11 04:35:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:50.254005Z","gw_timestamp":912552107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0MjexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7184, '2016-08-11 04:36:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:04.621267Z","gw_timestamp":926915763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7202, '2016-08-11 04:38:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:06.713132Z","gw_timestamp":1049005163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7204, '2016-08-11 04:38:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:21.077399Z","gw_timestamp":1063368923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjevWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7206, '2016-08-11 04:38:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:35.45299Z","gw_timestamp":1077732683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7208, '2016-08-11 04:38:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:49.795034Z","gw_timestamp":1092096331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7210, '2016-08-11 04:39:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:04.15827Z","gw_timestamp":1106459987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7212, '2016-08-11 04:39:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:18.527522Z","gw_timestamp":1120823643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7214, '2016-08-11 04:39:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:32.889772Z","gw_timestamp":1135187299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI4MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7145, '2016-08-11 04:31:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:31:31.72195Z","gw_timestamp":654011643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7153, '2016-08-11 04:32:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:29.165105Z","gw_timestamp":711465323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7155, '2016-08-11 04:32:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:43.533577Z","gw_timestamp":725829083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7157, '2016-08-11 04:33:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:32:57.89162Z","gw_timestamp":740191795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7159, '2016-08-11 04:33:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:12.25699Z","gw_timestamp":754555459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NzAxMjI3MDA0Mjeuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7161, '2016-08-11 04:33:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:33:26.617259Z","gw_timestamp":768919211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ4NDAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7185, '2016-08-11 04:36:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:11.805887Z","gw_timestamp":934097179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI3MDA0MjexWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7187, '2016-08-11 04:36:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:26.170143Z","gw_timestamp":948459899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7189, '2016-08-11 04:36:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:40.542976Z","gw_timestamp":962823027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7201, '2016-08-11 04:38:07', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":749,"f_cnt_down":1335,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:23:06.475881Z","gw_timestamp":2722800564,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUxOTAxMjE4MDA0NjAIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7203, '2016-08-11 04:38:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:13.895772Z","gw_timestamp":1056187099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7205, '2016-08-11 04:38:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:28.24802Z","gw_timestamp":1070550859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7207, '2016-08-11 04:38:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:42.614473Z","gw_timestamp":1084914403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7209, '2016-08-11 04:39:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:38:56.974805Z","gw_timestamp":1099277955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7172, '2016-08-11 04:34:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:34:38.435635Z","gw_timestamp":840735611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7186, '2016-08-11 04:36:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:18.993764Z","gw_timestamp":941278379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7188, '2016-08-11 04:36:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:33.344842Z","gw_timestamp":955641203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwNzAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7190, '2016-08-11 04:36:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:47.708133Z","gw_timestamp":970004963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7192, '2016-08-11 04:37:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:02.068397Z","gw_timestamp":984368619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7194, '2016-08-11 04:37:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:16.433644Z","gw_timestamp":998732371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7196, '2016-08-11 04:37:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:30.801837Z","gw_timestamp":1013096027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjexew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7198, '2016-08-11 04:37:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:45.15827Z","gw_timestamp":1027459787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7200, '2016-08-11 04:38:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:59.549787Z","gw_timestamp":1041823547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0OTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7218, '2016-08-11 04:40:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:01.620619Z","gw_timestamp":1163913771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0Mjeyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7220, '2016-08-11 04:40:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:15.972658Z","gw_timestamp":1178277539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7222, '2016-08-11 04:40:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:30.336903Z","gw_timestamp":1192641187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1ODAxMjI3MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7266, '2016-08-11 04:45:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:39.16055Z","gw_timestamp":1501454659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0Mjevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7268, '2016-08-11 04:46:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:53.521665Z","gw_timestamp":1515817275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7183, '2016-08-11 04:36:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:35:57.439634Z","gw_timestamp":919733939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7191, '2016-08-11 04:37:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:36:54.899037Z","gw_timestamp":977186683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7193, '2016-08-11 04:37:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:09.263402Z","gw_timestamp":991550651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7195, '2016-08-11 04:37:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:23.618269Z","gw_timestamp":1005914203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7197, '2016-08-11 04:37:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:37.984589Z","gw_timestamp":1020277859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMDAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7199, '2016-08-11 04:38:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:37:52.345028Z","gw_timestamp":1034641611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7241, '2016-08-11 04:43:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:53.972654Z","gw_timestamp":1336273051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU3NDAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7243, '2016-08-11 04:43:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:08.339908Z","gw_timestamp":1350636907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7245, '2016-08-11 04:43:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:22.695412Z","gw_timestamp":1364999523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5MjAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7247, '2016-08-11 04:43:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:37.085735Z","gw_timestamp":1379363283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7249, '2016-08-11 04:43:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:51.424911Z","gw_timestamp":1393726835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7251, '2016-08-11 04:44:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:05.796035Z","gw_timestamp":1408090699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI3MDA0Mjevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7253, '2016-08-11 04:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:20.159289Z","gw_timestamp":1422454355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7279, '2016-08-11 04:47:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:12.513659Z","gw_timestamp":1594816747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7211, '2016-08-11 04:39:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:11.364105Z","gw_timestamp":1113641819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7213, '2016-08-11 04:39:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:25.704601Z","gw_timestamp":1128005579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7215, '2016-08-11 04:39:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:40.063394Z","gw_timestamp":1142368403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7217, '2016-08-11 04:40:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:54.435036Z","gw_timestamp":1156731739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MzAxMjI3MDA0Mjezqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7219, '2016-08-11 04:40:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:08.793016Z","gw_timestamp":1171095811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7221, '2016-08-11 04:40:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:23.179661Z","gw_timestamp":1185459259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7223, '2016-08-11 04:40:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:37.523036Z","gw_timestamp":1199823123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7225, '2016-08-11 04:41:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:51.889783Z","gw_timestamp":1214186155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7227, '2016-08-11 04:41:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:13.440236Z","gw_timestamp":1235731219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2NTAxMjI3MDA0MjexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7229, '2016-08-11 04:41:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:27.810297Z","gw_timestamp":1250094971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7231, '2016-08-11 04:41:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:42.15827Z","gw_timestamp":1264457691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7233, '2016-08-11 04:42:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:56.522517Z","gw_timestamp":1278820411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NDAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7235, '2016-08-11 04:42:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:10.886777Z","gw_timestamp":1293184059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7237, '2016-08-11 04:42:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:25.252485Z","gw_timestamp":1307546571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7216, '2016-08-11 04:39:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:39:47.261384Z","gw_timestamp":1149549915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7224, '2016-08-11 04:40:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:40:44.70915Z","gw_timestamp":1207004843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7226, '2016-08-11 04:41:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:06.262175Z","gw_timestamp":1228549283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7228, '2016-08-11 04:41:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:20.610402Z","gw_timestamp":1242913147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7230, '2016-08-11 04:41:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:34.979657Z","gw_timestamp":1257276491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7232, '2016-08-11 04:41:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:41:49.340537Z","gw_timestamp":1271639307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0MjeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7234, '2016-08-11 04:42:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:03.708156Z","gw_timestamp":1286002235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0MjevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7236, '2016-08-11 04:42:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:18.066392Z","gw_timestamp":1300365163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7238, '2016-08-11 04:42:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:32.43377Z","gw_timestamp":1314728291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI3MDA0Mjew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7240, '2016-08-11 04:42:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:46.797225Z","gw_timestamp":1329091323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7242, '2016-08-11 04:43:11', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":833,"f_cnt_down":1536,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:43:06.125825Z","gw_timestamp":92757332,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDU4MTAxMjE3MDA0NjAIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7244, '2016-08-11 04:43:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:15.517793Z","gw_timestamp":1357818323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNTAxMjI3MDA0Mjev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7246, '2016-08-11 04:43:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:29.874771Z","gw_timestamp":1372181347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI3MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7248, '2016-08-11 04:43:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:44.249163Z","gw_timestamp":1386545003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7239, '2016-08-11 04:42:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:42:39.615671Z","gw_timestamp":1321909499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7255, '2016-08-11 04:44:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:34.553049Z","gw_timestamp":1436818003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI4MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7257, '2016-08-11 04:44:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:48.886806Z","gw_timestamp":1451181763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7259, '2016-08-11 04:44:57', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":831,"f_cnt_down":1493,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:56.073249Z","gw_timestamp":3132397932,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUwNTAxMjI0MDA0MzUL4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7261, '2016-08-11 04:45:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:03.246161Z","gw_timestamp":1465545211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mje0Ww==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7263, '2016-08-11 04:45:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:17.603407Z","gw_timestamp":1479909179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI4MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7265, '2016-08-11 04:45:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:31.97768Z","gw_timestamp":1494272835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7267, '2016-08-11 04:45:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:46.332912Z","gw_timestamp":1508635963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7269, '2016-08-11 04:46:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:00.693288Z","gw_timestamp":1522998683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI4MDA0MjexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7271, '2016-08-11 04:46:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:15.077814Z","gw_timestamp":1537361819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7273, '2016-08-11 04:46:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:29.416787Z","gw_timestamp":1551725579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI3MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7275, '2016-08-11 04:46:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:43.787293Z","gw_timestamp":1566089227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7277, '2016-08-11 04:47:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:58.156291Z","gw_timestamp":1580453091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI4MDA0Mjiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7283, '2016-08-11 04:47:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:41.244615Z","gw_timestamp":1623544371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3OTAxMjI3MDA0Mjeuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7250, '2016-08-11 04:44:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:43:58.633496Z","gw_timestamp":1400908867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7252, '2016-08-11 04:44:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:12.964653Z","gw_timestamp":1415272419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI3MDA0Mjexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7254, '2016-08-11 04:44:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:27.329913Z","gw_timestamp":1429636179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7256, '2016-08-11 04:44:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:41.70328Z","gw_timestamp":1443999939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI4MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7258, '2016-08-11 04:44:56', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":830,"f_cnt_down":1492,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:44:54.97675Z","gw_timestamp":201608308,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUwNTAxMjI0MDA0MzUL4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7260, '2016-08-11 04:45:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:44:56.05554Z","gw_timestamp":1458363595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMzAxMjI4MDA0Mjeyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7262, '2016-08-11 04:45:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:10.430785Z","gw_timestamp":1472727243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI3MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7264, '2016-08-11 04:45:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:45:24.796481Z","gw_timestamp":1487091003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7272, '2016-08-11 04:46:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:22.243423Z","gw_timestamp":1544543643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0MjewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7274, '2016-08-11 04:46:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:36.610408Z","gw_timestamp":1558907507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI3MDA0Mjewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7276, '2016-08-11 04:46:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:50.972597Z","gw_timestamp":1573271059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjI4MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7278, '2016-08-11 04:47:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:05.33804Z","gw_timestamp":1587634923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI3MDA0Mjevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7280, '2016-08-11 04:47:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:19.692295Z","gw_timestamp":1601998579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7282, '2016-08-11 04:47:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:34.066177Z","gw_timestamp":1616362331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7270, '2016-08-11 04:46:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:46:07.872917Z","gw_timestamp":1530180091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMzAxMjI4MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7286, '2016-08-11 04:48:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:02.793959Z","gw_timestamp":1645089643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3OTAxMjI4MDA0MjevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7288, '2016-08-11 04:48:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:17.154495Z","gw_timestamp":1659453299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7290, '2016-08-11 04:48:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:31.510661Z","gw_timestamp":1673815907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNzAxMjI3MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7292, '2016-08-11 04:48:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:45.870916Z","gw_timestamp":1688179667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI3MDA0Mjewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7294, '2016-08-11 04:49:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:00.263431Z","gw_timestamp":1702543427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjI4MDA0Mjeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7296, '2016-08-11 04:49:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:21.784174Z","gw_timestamp":1724087867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7298, '2016-08-11 04:49:37', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1312,"f_cnt_down":2118,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:49:33.58555Z","gw_timestamp":480217244,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAUwMDUwNzAxMjE2MDA0NTYK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7300, '2016-08-11 04:49:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:43.350546Z","gw_timestamp":1745633451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI4MDA0MjexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7302, '2016-08-11 04:50:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:57.691291Z","gw_timestamp":1759997211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjI3MDA0Mjev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7304, '2016-08-11 04:50:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:12.053547Z","gw_timestamp":1774360347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI4MDA0Mjex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7306, '2016-08-11 04:50:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:26.416802Z","gw_timestamp":1788723483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI4MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7308, '2016-08-11 04:50:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:40.787177Z","gw_timestamp":1803087339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI4MDA0Mjeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7310, '2016-08-11 04:51:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:55.161493Z","gw_timestamp":1817450899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI4MDA0Mjevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7281, '2016-08-11 04:47:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:26.893135Z","gw_timestamp":1609180299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwOTAxMjI3MDA0MjeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7287, '2016-08-11 04:48:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:09.971173Z","gw_timestamp":1652271363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7289, '2016-08-11 04:48:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:24.332046Z","gw_timestamp":1666634499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7291, '2016-08-11 04:48:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:38.693221Z","gw_timestamp":1680997947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI3MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7293, '2016-08-11 04:49:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:48:53.059598Z","gw_timestamp":1695361707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI3MDA0Mjeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7295, '2016-08-11 04:49:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:14.606416Z","gw_timestamp":1716906251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjI3MDA0Mjevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7297, '2016-08-11 04:49:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:28.970798Z","gw_timestamp":1731269803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7299, '2016-08-11 04:49:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:36.154502Z","gw_timestamp":1738451627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyMjAxMjI4MDA0MjexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7301, '2016-08-11 04:49:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:49:50.51066Z","gw_timestamp":1752815387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2MzAxMjI3MDA0MjevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7303, '2016-08-11 04:50:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:04.868916Z","gw_timestamp":1767178931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjI4MDA0Mjexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7305, '2016-08-11 04:50:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:19.249416Z","gw_timestamp":1781541651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjI3MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7307, '2016-08-11 04:50:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:33.607827Z","gw_timestamp":1795905523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI3MDA0MjevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7309, '2016-08-11 04:50:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:50:47.958799Z","gw_timestamp":1810269067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI4MDA0MjewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7311, '2016-08-11 04:51:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:02.32943Z","gw_timestamp":1824632827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUwOTAxMjI4MDA0Mjewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7284, '2016-08-11 04:47:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:48.420799Z","gw_timestamp":1630725987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI3MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7314, '2016-08-11 04:51:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:31.054708Z","gw_timestamp":1853359403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ5OTAxMjI3MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7316, '2016-08-11 04:51:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:45.430267Z","gw_timestamp":1867722851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyNDAxMjI3MDA0Mjew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7318, '2016-08-11 04:52:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:59.776295Z","gw_timestamp":1882086611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU2MTAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7320, '2016-08-11 04:52:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:14.144484Z","gw_timestamp":1896450371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MjAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7322, '2016-08-11 04:52:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:28.508681Z","gw_timestamp":1910814027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1NjAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7324, '2016-08-11 04:52:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:42.868179Z","gw_timestamp":1925177787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyMjAxMjI3MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7326, '2016-08-11 04:53:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:57.242434Z","gw_timestamp":1939541435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzMTAxMjI3MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7328, '2016-08-11 04:53:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:11.592559Z","gw_timestamp":1953904987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUwNTAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7330, '2016-08-11 04:53:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:18.782178Z","gw_timestamp":1961086923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNjAxMjI4MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7332, '2016-08-11 04:53:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:33.151809Z","gw_timestamp":1975450571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MjAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7334, '2016-08-11 04:53:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:47.51469Z","gw_timestamp":1989813811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MDAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7336, '2016-08-11 04:54:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:01.908339Z","gw_timestamp":2004176739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NzAxMjI4MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7338, '2016-08-11 04:54:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:16.239306Z","gw_timestamp":2018540811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MDAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7285, '2016-08-11 04:48:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:47:55.604557Z","gw_timestamp":1637907707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI3MDA0Mjewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7315, '2016-08-11 04:51:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:38.231458Z","gw_timestamp":1860541131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNTAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7317, '2016-08-11 04:52:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:52.604047Z","gw_timestamp":1874904579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7319, '2016-08-11 04:52:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:06.965807Z","gw_timestamp":1889268443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxNzAxMjI3MDA0Mjiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7321, '2016-08-11 04:52:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:21.332056Z","gw_timestamp":1903632195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0MDAxMjI3MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7323, '2016-08-11 04:52:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:35.703571Z","gw_timestamp":1917995747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzODAxMjI4MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7325, '2016-08-11 04:52:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:52:50.049671Z","gw_timestamp":1932359715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjI3MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7327, '2016-08-11 04:53:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:04.412926Z","gw_timestamp":1946723267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUyOTAxMjI4MDA0Mjiziw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7329, '2016-08-11 04:53:20', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":750,"f_cnt_down":1336,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:53:16.156001Z","gw_timestamp":702787804,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjE4MDA0NjAIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7331, '2016-08-11 04:53:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:25.974023Z","gw_timestamp":1968268747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDQ5NjAxMjI4MDA0Mjiu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7333, '2016-08-11 04:53:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:40.333435Z","gw_timestamp":1982632507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUxMzAxMjI3MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7335, '2016-08-11 04:54:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:53:54.696435Z","gw_timestamp":1996995219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDUxMTAxMjI3MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7337, '2016-08-11 04:54:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:09.055676Z","gw_timestamp":2011358779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyOTAxMjI3MDA0Mjiyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7339, '2016-08-11 04:54:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:23.418187Z","gw_timestamp":2025722635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzNjAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7312, '2016-08-11 04:51:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:16.697304Z","gw_timestamp":1838995539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU0NTAxMjI3MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7342, '2016-08-11 04:54:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:44.958811Z","gw_timestamp":2047267283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MjAxMjI3MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7344, '2016-08-11 04:55:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:59.331061Z","gw_timestamp":2061630835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MjAxMjI3MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7346, '2016-08-11 04:55:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:13.685558Z","gw_timestamp":2075994491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MjAxMjI3MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7348, '2016-08-11 04:55:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:28.063055Z","gw_timestamp":2090357731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MjAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7350, '2016-08-11 04:55:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:42.434633Z","gw_timestamp":2104720859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUxMTAxMjI4MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7352, '2016-08-11 04:56:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:56.775107Z","gw_timestamp":2119084619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI3MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7354, '2016-08-11 04:56:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:11.138562Z","gw_timestamp":2133448275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNDAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7356, '2016-08-11 04:56:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:25.507822Z","gw_timestamp":2147811931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7358, '2016-08-11 04:56:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:39.869062Z","gw_timestamp":2162175691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7360, '2016-08-11 04:57:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:54.237445Z","gw_timestamp":2176539339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NTAxMjI4MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7362, '2016-08-11 04:57:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:08.627832Z","gw_timestamp":2190903107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7364, '2016-08-11 04:57:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:30.136565Z","gw_timestamp":2212447539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NTAxMjI4MDA0MjewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7366, '2016-08-11 04:57:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:44.499812Z","gw_timestamp":2226811403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNDAxMjI4MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7313, '2016-08-11 04:51:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:51:23.875061Z","gw_timestamp":1846177371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAAwMDU1MjAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7343, '2016-08-11 04:54:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:52.140913Z","gw_timestamp":2054449011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzMzAxMjI3MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7345, '2016-08-11 04:55:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:06.505815Z","gw_timestamp":2068812563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzNjAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7347, '2016-08-11 04:55:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:20.871065Z","gw_timestamp":2083176323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzMTAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7349, '2016-08-11 04:55:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:35.229319Z","gw_timestamp":2097539035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NzAxMjI4MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7351, '2016-08-11 04:55:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:55:49.595564Z","gw_timestamp":2111902795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNjAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7353, '2016-08-11 04:56:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:03.963801Z","gw_timestamp":2126266347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0NzAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7355, '2016-08-11 04:56:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:18.330402Z","gw_timestamp":2140630315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUwOTAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7357, '2016-08-11 04:56:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:32.707685Z","gw_timestamp":2154993859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI4MDA0Mjiyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7359, '2016-08-11 04:56:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:56:47.043677Z","gw_timestamp":2169357619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0MjAxMjI4MDA0Mjev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7361, '2016-08-11 04:57:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:01.435777Z","gw_timestamp":2183721171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7363, '2016-08-11 04:57:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:22.962944Z","gw_timestamp":2205265819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyMjAxMjI4MDA0MjivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7365, '2016-08-11 04:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:37.325572Z","gw_timestamp":2219629475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNDAxMjI4MDA0Mjiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7367, '2016-08-11 04:58:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:51.690437Z","gw_timestamp":2233993123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzODAxMjI4MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7340, '2016-08-11 04:54:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:30.598564Z","gw_timestamp":2032904459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NzAxMjI3MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7370, '2016-08-11 04:58:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:13.249591Z","gw_timestamp":2255536939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NzAxMjI4MDA0Mjizqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7372, '2016-08-11 04:58:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:20.406943Z","gw_timestamp":2262718563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NTAxMjI3MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7374, '2016-08-11 04:58:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:34.776309Z","gw_timestamp":2277082323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU0OTAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7376, '2016-08-11 04:58:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:49.159841Z","gw_timestamp":2291445867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUxMzAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7378, '2016-08-11 04:59:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:03.496821Z","gw_timestamp":2305808691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1ODAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7380, '2016-08-11 04:59:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:17.859074Z","gw_timestamp":2320171307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDQ4ODAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7382, '2016-08-11 04:59:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:32.223318Z","gw_timestamp":2334535067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7384, '2016-08-11 04:59:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:46.594682Z","gw_timestamp":2348897779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwNTAxMjI4MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7386, '2016-08-11 05:00:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:00.947942Z","gw_timestamp":2363260499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI4MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7388, '2016-08-11 05:00:11', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":832,"f_cnt_down":1495,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:45:06.917065Z","gw_timestamp":4043241748,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAQwMDUwNTAxMjI2MDA0MzQNIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7390, '2016-08-11 05:00:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:15.309198Z","gw_timestamp":2377624155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjI4MDA0MjivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7392, '2016-08-11 05:00:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:29.695804Z","gw_timestamp":2391987915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzMTAxMjI4MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7394, '2016-08-11 05:00:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:44.059958Z","gw_timestamp":2406351667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NTAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7341, '2016-08-11 04:54:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:54:37.778172Z","gw_timestamp":2040086187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NTAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7397, '2016-08-11 05:01:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:05.602977Z","gw_timestamp":2427897051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyNjAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7399, '2016-08-11 05:01:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:19.955329Z","gw_timestamp":2442260803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNDAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7401, '2016-08-11 05:01:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:34.315196Z","gw_timestamp":2456624467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1NjAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7421, '2016-08-11 05:04:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:05.14309Z","gw_timestamp":2607438675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUwNzAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7423, '2016-08-11 05:04:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:19.486962Z","gw_timestamp":2621801387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MDAxMjI4MDA0MjizKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7425, '2016-08-11 05:04:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:33.854205Z","gw_timestamp":2636164627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MjAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7427, '2016-08-11 05:04:45', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1313,"f_cnt_down":2119,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:04:44.411768Z","gw_timestamp":1391043908,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAowMDQ5MDAxMjE1MDA0NTYHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7429, '2016-08-11 05:04:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:55.403546Z","gw_timestamp":2657709171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyMjAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7431, '2016-08-11 05:05:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:09.755278Z","gw_timestamp":2672071883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1MjAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7433, '2016-08-11 05:05:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:31.309547Z","gw_timestamp":2693617475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzODAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7435, '2016-08-11 05:05:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:45.66722Z","gw_timestamp":2707981339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1NjAxMjI4MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7437, '2016-08-11 05:06:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:00.033831Z","gw_timestamp":2722344883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUxNTAxMjI4MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7439, '2016-08-11 05:06:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:14.395344Z","gw_timestamp":2736708435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2NTAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7368, '2016-08-11 04:58:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:57:58.881412Z","gw_timestamp":2241174755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjI4MDA0Mjeuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7398, '2016-08-11 05:01:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:12.778322Z","gw_timestamp":2435078979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NTAxMjI4MDA0Mjiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7400, '2016-08-11 05:01:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:27.13758Z","gw_timestamp":2449442635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUwOTAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7402, '2016-08-11 05:01:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:41.509824Z","gw_timestamp":2463806187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUxNTAxMjI4MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7404, '2016-08-11 05:02:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:55.861201Z","gw_timestamp":2478170155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyMDAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7406, '2016-08-11 05:02:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:10.228448Z","gw_timestamp":2492533811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NzAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7408, '2016-08-11 05:02:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:24.587709Z","gw_timestamp":2506896835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDQ5NjAxMjI4MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7410, '2016-08-11 05:02:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:38.942942Z","gw_timestamp":2521259243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NzAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7422, '2016-08-11 05:04:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:12.304423Z","gw_timestamp":2614620075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzMTAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7424, '2016-08-11 05:04:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:26.6707Z","gw_timestamp":2628982803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNDAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7426, '2016-08-11 05:04:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:41.039781Z","gw_timestamp":2643346555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NTAxMjI4MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7428, '2016-08-11 05:04:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:04:48.217456Z","gw_timestamp":2650527971,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU2NTAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7430, '2016-08-11 05:05:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:02.589974Z","gw_timestamp":2664890683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUwMTAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7432, '2016-08-11 05:05:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:16.945966Z","gw_timestamp":2679253715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7369, '2016-08-11 04:58:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:06.052686Z","gw_timestamp":2248355851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjI4MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7371, '2016-08-11 04:58:22', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":834,"f_cnt_down":1537,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T04:58:16.89751Z","gw_timestamp":1003529460,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAswMDU5MTAxMjE3MDA0NjAIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7373, '2016-08-11 04:58:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:27.592558Z","gw_timestamp":2269900491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzNjAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7375, '2016-08-11 04:58:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:41.949945Z","gw_timestamp":2284264251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzODAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7377, '2016-08-11 04:59:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:58:56.315322Z","gw_timestamp":2298627387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU2NzAxMjI4MDA0MjeyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7379, '2016-08-11 04:59:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:10.683394Z","gw_timestamp":2312989899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7381, '2016-08-11 04:59:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:25.050685Z","gw_timestamp":2327353235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU3MjAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7383, '2016-08-11 04:59:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:39.445328Z","gw_timestamp":2341716683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUxMTAxMjI4MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7385, '2016-08-11 05:00:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T04:59:53.765326Z","gw_timestamp":2356078883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjI4MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7387, '2016-08-11 05:00:08', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":831,"f_cnt_down":1494,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:00:05.820511Z","gw_timestamp":1112452516,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAQwMDUwNTAxMjI2MDA0MzQNIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7389, '2016-08-11 05:00:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:08.131515Z","gw_timestamp":2370442323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAEwMDU1NDAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7391, '2016-08-11 05:00:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:22.500821Z","gw_timestamp":2384805883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0OTAxMjI4MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7393, '2016-08-11 05:00:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:36.855061Z","gw_timestamp":2399169739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MjAxMjI4MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7395, '2016-08-11 05:00:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:51.223441Z","gw_timestamp":2413533187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3OTAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7396, '2016-08-11 05:01:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:00:58.410072Z","gw_timestamp":2420715227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyMjAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7412, '2016-08-11 05:03:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:53.318208Z","gw_timestamp":2535622795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUzMTAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7414, '2016-08-11 05:03:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:07.678568Z","gw_timestamp":2549985827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1ODAxMjI4MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7416, '2016-08-11 05:03:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:29.219445Z","gw_timestamp":2571530051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MDAxMjI4MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7418, '2016-08-11 05:03:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:43.585695Z","gw_timestamp":2585893707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyOTAxMjI4MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7420, '2016-08-11 05:04:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:57.950941Z","gw_timestamp":2600257467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUxMTAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7484, '2016-08-11 05:11:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:44.770727Z","gw_timestamp":3067067595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0OTAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7486, '2016-08-11 05:12:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:59.114715Z","gw_timestamp":3081431251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAUwMDUyMDAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7488, '2016-08-11 05:12:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:13.487107Z","gw_timestamp":3095794907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNzAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7490, '2016-08-11 05:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:27.845346Z","gw_timestamp":3110158667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUzNjAxMjI4MDA0MjivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7492, '2016-08-11 05:12:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:42.200599Z","gw_timestamp":3124522323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1NDAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7494, '2016-08-11 05:13:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:56.565857Z","gw_timestamp":3138884931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMDAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7496, '2016-08-11 05:13:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:10.936105Z","gw_timestamp":3153247755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU2MTAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7498, '2016-08-11 05:13:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:25.300877Z","gw_timestamp":3167611195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUxMzAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7403, '2016-08-11 05:01:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:01:48.685442Z","gw_timestamp":2470988123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NTAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7405, '2016-08-11 05:02:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:03.053102Z","gw_timestamp":2485351771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NzAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7407, '2016-08-11 05:02:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:17.405062Z","gw_timestamp":2499715635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0MjAxMjI4MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7409, '2016-08-11 05:02:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:31.773309Z","gw_timestamp":2514078043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU3MDAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7411, '2016-08-11 05:02:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:02:46.132574Z","gw_timestamp":2528440963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUxMTAxMjI4MDA0Mjiumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7413, '2016-08-11 05:03:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:00.512949Z","gw_timestamp":2542804723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU0NTAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7415, '2016-08-11 05:03:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:14.860415Z","gw_timestamp":2557167339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyNDAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7417, '2016-08-11 05:03:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:36.399078Z","gw_timestamp":2578711779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDU1MjAxMjI4MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7419, '2016-08-11 05:03:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:03:50.783038Z","gw_timestamp":2593075539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyOTAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7441, '2016-08-11 05:06:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:28.755704Z","gw_timestamp":2751072299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2NzAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7443, '2016-08-11 05:06:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:43.129714Z","gw_timestamp":2765435851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUyMjAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7445, '2016-08-11 05:07:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:57.488961Z","gw_timestamp":2779799715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzNjAxMjI4MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7447, '2016-08-11 05:07:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:11.862944Z","gw_timestamp":2794163475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzMTAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7449, '2016-08-11 05:07:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:33.396479Z","gw_timestamp":2815708115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU3OTAxMjI4MDA0Mjiy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7434, '2016-08-11 05:05:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:38.490959Z","gw_timestamp":2700799299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0MDAxMjI4MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7436, '2016-08-11 05:06:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:05:52.857437Z","gw_timestamp":2715162955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUwMzAxMjI4MDA0MjivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7438, '2016-08-11 05:06:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:07.216464Z","gw_timestamp":2729526715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAIwMDUyMDAxMjI4MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7440, '2016-08-11 05:06:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:21.592706Z","gw_timestamp":2743890363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU3MDAxMjI4MDA0MjivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7442, '2016-08-11 05:06:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:35.950389Z","gw_timestamp":2758254123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0MjAxMjI4MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7444, '2016-08-11 05:06:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:06:50.301341Z","gw_timestamp":2772617883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1NjAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7446, '2016-08-11 05:07:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:04.681908Z","gw_timestamp":2786981435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2MTAxMjI4MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7448, '2016-08-11 05:07:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:19.034971Z","gw_timestamp":2801345195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUwOTAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7450, '2016-08-11 05:07:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:40.575972Z","gw_timestamp":2822889635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1NDAxMjI4MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7452, '2016-08-11 05:08:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:54.934091Z","gw_timestamp":2837253499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzODAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7454, '2016-08-11 05:08:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:09.301346Z","gw_timestamp":2851617155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUxMzAxMjI4MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7456, '2016-08-11 05:08:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:23.666604Z","gw_timestamp":2865980811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzMTAxMjI4MDA0Mjiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7458, '2016-08-11 05:08:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:30.852222Z","gw_timestamp":2873161899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0OTAxMjI4MDA0Mjizuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7460, '2016-08-11 05:08:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:45.211722Z","gw_timestamp":2887525355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0NzAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7451, '2016-08-11 05:07:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:07:47.757472Z","gw_timestamp":2830071563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUwMzAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7453, '2016-08-11 05:08:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:02.158059Z","gw_timestamp":2844435219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0MjAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7455, '2016-08-11 05:08:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:16.487968Z","gw_timestamp":2858798875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU5MzAxMjI4MDA0MjivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7457, '2016-08-11 05:08:32', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":751,"f_cnt_down":1337,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:08:26.932682Z","gw_timestamp":1613564932,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDUzNDAxMjE5MDA0NjAIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7459, '2016-08-11 05:08:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:38.056581Z","gw_timestamp":2880343523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1MjAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7461, '2016-08-11 05:09:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:52.400823Z","gw_timestamp":2894707179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU3NDAxMjI4MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7463, '2016-08-11 05:09:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:06.752465Z","gw_timestamp":2909070939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2MTAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7465, '2016-08-11 05:09:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:21.118712Z","gw_timestamp":2923434491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUyNDAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7467, '2016-08-11 05:09:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:35.490098Z","gw_timestamp":2937798355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0OTAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7469, '2016-08-11 05:09:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:49.852224Z","gw_timestamp":2952162003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUyNDAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7471, '2016-08-11 05:10:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:04.235984Z","gw_timestamp":2966525763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1MjAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7473, '2016-08-11 05:10:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:18.586435Z","gw_timestamp":2980888379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUxNTAxMjI4MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7477, '2016-08-11 05:10:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:47.298617Z","gw_timestamp":3009614963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzMzAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7479, '2016-08-11 05:11:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:01.659589Z","gw_timestamp":3023977467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU3MDAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7462, '2016-08-11 05:09:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:08:59.57085Z","gw_timestamp":2901889115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1MjAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7464, '2016-08-11 05:09:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:13.940095Z","gw_timestamp":2916252867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1NDAxMjI4MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7466, '2016-08-11 05:09:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:28.306336Z","gw_timestamp":2930616523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUyNDAxMjI4MDA0MjizKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7468, '2016-08-11 05:09:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:42.682493Z","gw_timestamp":2944980179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU2NTAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7470, '2016-08-11 05:10:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:09:57.028971Z","gw_timestamp":2959343731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU0OTAxMjI4MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7472, '2016-08-11 05:10:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:11.392213Z","gw_timestamp":2973706971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUwOTAxMjI4MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7474, '2016-08-11 05:10:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:25.76247Z","gw_timestamp":2988069995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAUwMDU0MDAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7476, '2016-08-11 05:10:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:40.118721Z","gw_timestamp":3002432923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDQ5OTAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7478, '2016-08-11 05:11:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:54.477468Z","gw_timestamp":3016796163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUzODAxMjI4MDA0Mjiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7480, '2016-08-11 05:11:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:08.842409Z","gw_timestamp":3031158883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUyNDAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7482, '2016-08-11 05:11:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:23.202602Z","gw_timestamp":3045522011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDQ4ODAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7502, '2016-08-11 05:13:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:46.837347Z","gw_timestamp":3189155019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUwOTAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7504, '2016-08-11 05:14:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:01.229867Z","gw_timestamp":3203518571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0MDAxMjI4MDA0MjiuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7506, '2016-08-11 05:14:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:15.570857Z","gw_timestamp":3217881283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUzMTAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7475, '2016-08-11 05:10:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:10:32.932101Z","gw_timestamp":2995251203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU3OTAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7501, '2016-08-11 05:13:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:39.653722Z","gw_timestamp":3181973395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7503, '2016-08-11 05:14:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:54.026087Z","gw_timestamp":3196336739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MzAxMjI4MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7505, '2016-08-11 05:14:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:08.382234Z","gw_timestamp":3210699563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUzNjAxMjI4MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7507, '2016-08-11 05:14:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:22.752861Z","gw_timestamp":3225062907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUwNTAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7509, '2016-08-11 05:14:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:37.106847Z","gw_timestamp":3239425627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU2MzAxMjI4MDA0Mjizqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7511, '2016-08-11 05:14:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:51.483979Z","gw_timestamp":3253788547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUyOTAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7513, '2016-08-11 05:15:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:05.831342Z","gw_timestamp":3268152203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDQ5OTAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7525, '2016-08-11 05:16:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:32.044563Z","gw_timestamp":3354330379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7527, '2016-08-11 05:16:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:46.418173Z","gw_timestamp":3368694243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MjAxMjI4MDA0Mjixiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7529, '2016-08-11 05:17:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:00.793734Z","gw_timestamp":3383057067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyMDAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7531, '2016-08-11 05:17:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:15.159912Z","gw_timestamp":3397420611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUwNTAxMjI4MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7533, '2016-08-11 05:17:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:29.527344Z","gw_timestamp":3411784267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNzAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7535, '2016-08-11 05:17:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:43.900772Z","gw_timestamp":3426147923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0MDAxMjI4MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7481, '2016-08-11 05:11:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:16.029975Z","gw_timestamp":3038340187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUyMDAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7483, '2016-08-11 05:11:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:37.568851Z","gw_timestamp":3059885667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDU1ODAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7485, '2016-08-11 05:12:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:11:51.935089Z","gw_timestamp":3074249323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAMwMDUxNTAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7487, '2016-08-11 05:12:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:06.297364Z","gw_timestamp":3088613075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AAowMDUzODAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7489, '2016-08-11 05:12:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:20.670726Z","gw_timestamp":3102976835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0NzAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7491, '2016-08-11 05:12:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:35.058246Z","gw_timestamp":3117340387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDQ4NDAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7493, '2016-08-11 05:12:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:12:49.391223Z","gw_timestamp":3131703315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU4ODAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7495, '2016-08-11 05:13:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:03.753817Z","gw_timestamp":3146065931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUxNTAxMjI4MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7497, '2016-08-11 05:13:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:18.11685Z","gw_timestamp":3160429587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUyMjAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7499, '2016-08-11 05:13:34', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":835,"f_cnt_down":1538,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:58:28.775082Z","gw_timestamp":550132468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACswMDU5NzAxMjE3MDA0NjAMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7515, '2016-08-11 05:15:21', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":832,"f_cnt_down":1496,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:15:17.352435Z","gw_timestamp":2023984884,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABIwMDQ3MjAxMjI3MDA0MzQJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7517, '2016-08-11 05:15:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:27.381421Z","gw_timestamp":3289696851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU0MDAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7519, '2016-08-11 05:15:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:48.939196Z","gw_timestamp":3311241395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxMzAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7521, '2016-08-11 05:16:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:03.304607Z","gw_timestamp":3325604323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU3NzAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7500, '2016-08-11 05:13:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:13:32.470328Z","gw_timestamp":3174792299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMjAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7532, '2016-08-11 05:17:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:22.343134Z","gw_timestamp":3404602339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyMDAxMjI4MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7534, '2016-08-11 05:17:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:36.719567Z","gw_timestamp":3418966195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyNDAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7536, '2016-08-11 05:17:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:51.08212Z","gw_timestamp":3433329851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyMjAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7538, '2016-08-11 05:18:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:05.460553Z","gw_timestamp":3447693507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNTAxMjI4MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7568, '2016-08-11 05:21:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:48.114509Z","gw_timestamp":3670326723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMzAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7570, '2016-08-11 05:22:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:02.480315Z","gw_timestamp":3684689539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3MDAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7572, '2016-08-11 05:22:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:16.852909Z","gw_timestamp":3699053195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDQ3ODAxMjI4MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7574, '2016-08-11 05:22:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:31.2163Z","gw_timestamp":3713416851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjI4MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7576, '2016-08-11 05:23:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:52.75017Z","gw_timestamp":3734961395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwNzAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7578, '2016-08-11 05:23:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:07.123413Z","gw_timestamp":3749325155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MDAxMjI4MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7580, '2016-08-11 05:23:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:21.47768Z","gw_timestamp":3763688283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7582, '2016-08-11 05:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:35.840493Z","gw_timestamp":3778051419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7584, '2016-08-11 05:23:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:43.027668Z","gw_timestamp":3785233355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjI4MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7508, '2016-08-11 05:14:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:29.932229Z","gw_timestamp":3232244107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDQ4ODAxMjI4MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7510, '2016-08-11 05:14:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:44.290734Z","gw_timestamp":3246606723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUxMzAxMjI4MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7512, '2016-08-11 05:15:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:14:58.65973Z","gw_timestamp":3260970475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDU1MjAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7514, '2016-08-11 05:15:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:13.012918Z","gw_timestamp":3275333195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABQwMDUyNDAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7516, '2016-08-11 05:15:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:20.202196Z","gw_timestamp":3282515123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1MjAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7518, '2016-08-11 05:15:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:41.779583Z","gw_timestamp":3304059563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMTAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7520, '2016-08-11 05:16:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:15:56.122584Z","gw_timestamp":3318422387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0MDAxMjI4MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7522, '2016-08-11 05:16:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:10.491973Z","gw_timestamp":3332785939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjI4MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7524, '2016-08-11 05:16:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:24.861278Z","gw_timestamp":3347148651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7526, '2016-08-11 05:16:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:39.229705Z","gw_timestamp":3361512307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0OTAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7528, '2016-08-11 05:17:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:53.608272Z","gw_timestamp":3375876067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU0MDAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7530, '2016-08-11 05:17:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:08.008359Z","gw_timestamp":3390238787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyNjAxMjI4MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7540, '2016-08-11 05:18:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:19.830982Z","gw_timestamp":3462057267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7542, '2016-08-11 05:18:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:34.198415Z","gw_timestamp":3476420819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMTAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7523, '2016-08-11 05:16:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:16:17.710286Z","gw_timestamp":3339967139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMTAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7537, '2016-08-11 05:18:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:17:58.285855Z","gw_timestamp":3440511683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNTAxMjI4MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7539, '2016-08-11 05:18:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:12.660133Z","gw_timestamp":3454875443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUzMzAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7541, '2016-08-11 05:18:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:27.018196Z","gw_timestamp":3469239091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7543, '2016-08-11 05:18:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:41.393632Z","gw_timestamp":3483602747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxMzAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7545, '2016-08-11 05:19:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:55.760191Z","gw_timestamp":3497966403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNzAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7547, '2016-08-11 05:19:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:10.12241Z","gw_timestamp":3512330163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyOTAxMjI4MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7549, '2016-08-11 05:19:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:24.492781Z","gw_timestamp":3526692883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyMjAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7551, '2016-08-11 05:19:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:46.027541Z","gw_timestamp":3548238467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyMDAxMjI4MDA0Mjiyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7553, '2016-08-11 05:20:02', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1314,"f_cnt_down":2120,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:19:55.244826Z","gw_timestamp":2301877412,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACQwMDUxMDAxMjE1MDA0NTcJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7555, '2016-08-11 05:20:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:07.581408Z","gw_timestamp":3569783947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2MTAxMjI4MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7557, '2016-08-11 05:20:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:21.944773Z","gw_timestamp":3584147707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDU1NDAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7561, '2016-08-11 05:21:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:57.844032Z","gw_timestamp":3620054763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzNjAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7565, '2016-08-11 05:21:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:26.576813Z","gw_timestamp":3648781443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyMjAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7544, '2016-08-11 05:18:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:18:48.611356Z","gw_timestamp":3490784683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7546, '2016-08-11 05:19:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:02.942407Z","gw_timestamp":3505148339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7548, '2016-08-11 05:19:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:17.308039Z","gw_timestamp":3519511883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUxNTAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7550, '2016-08-11 05:19:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:31.664281Z","gw_timestamp":3533874707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABUwMDUyMjAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7552, '2016-08-11 05:19:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:19:53.21516Z","gw_timestamp":3555420195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MjAxMjI4MDA0Mjiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7554, '2016-08-11 05:20:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:00.399918Z","gw_timestamp":3562602115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7556, '2016-08-11 05:20:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:14.755144Z","gw_timestamp":3576965771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMTAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7558, '2016-08-11 05:20:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:36.311298Z","gw_timestamp":3598510323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NTAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7560, '2016-08-11 05:20:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:50.666299Z","gw_timestamp":3612873043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7562, '2016-08-11 05:21:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:05.024542Z","gw_timestamp":3627236691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3MDAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7564, '2016-08-11 05:21:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:19.408239Z","gw_timestamp":3641600347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7566, '2016-08-11 05:21:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:33.750172Z","gw_timestamp":3655963171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwMzAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7588, '2016-08-11 05:24:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:11.756166Z","gw_timestamp":3813959619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxMzAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7590, '2016-08-11 05:24:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:26.140698Z","gw_timestamp":3828322547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NjAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7559, '2016-08-11 05:20:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:20:43.481669Z","gw_timestamp":3605692043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7563, '2016-08-11 05:21:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:12.212166Z","gw_timestamp":3634418619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMTAxMjI4MDA0Mjiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7575, '2016-08-11 05:22:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:45.579259Z","gw_timestamp":3727779563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDQ5OTAxMjI4MDA0MjivCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7577, '2016-08-11 05:23:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:59.944912Z","gw_timestamp":3742143219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjI4MDA0MjivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7579, '2016-08-11 05:23:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:14.30005Z","gw_timestamp":3756506979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NzAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7581, '2016-08-11 05:23:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:28.669296Z","gw_timestamp":3770869699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMTAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7583, '2016-08-11 05:23:45', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":752,"f_cnt_down":1338,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:23:37.709591Z","gw_timestamp":2524342284,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAcwMDU3NDAxMjE5MDA0NjAHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7585, '2016-08-11 05:23:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:50.208807Z","gw_timestamp":3792415283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7587, '2016-08-11 05:24:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:04.579544Z","gw_timestamp":3806778419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NzAxMjI4MDA0Mjiy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7589, '2016-08-11 05:24:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:18.929802Z","gw_timestamp":3821140611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NzAxMjI4MDA0MjivKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7591, '2016-08-11 05:24:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:33.300055Z","gw_timestamp":3835504267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0Mjiy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7593, '2016-08-11 05:24:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:47.666427Z","gw_timestamp":3849868027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NzAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7595, '2016-08-11 05:25:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:02.069888Z","gw_timestamp":3864230635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMzAxMjI4MDA0Mjiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7597, '2016-08-11 05:25:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:16.380922Z","gw_timestamp":3878594403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNzAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7567, '2016-08-11 05:21:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:40.932216Z","gw_timestamp":3663144995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNjAxMjI4MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7569, '2016-08-11 05:22:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:21:55.308298Z","gw_timestamp":3677507707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxMzAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7571, '2016-08-11 05:22:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:09.659297Z","gw_timestamp":3691871267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MzAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7573, '2016-08-11 05:22:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:22:24.021604Z","gw_timestamp":3706234923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MDAxMjI4MDA0MjivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7601, '2016-08-11 05:25:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:45.108428Z","gw_timestamp":3907320771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3MDAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7603, '2016-08-11 05:26:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:59.477807Z","gw_timestamp":3921683491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7605, '2016-08-11 05:26:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:13.840049Z","gw_timestamp":3936047251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3NDAxMjI4MDA0MjivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7607, '2016-08-11 05:26:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:28.210521Z","gw_timestamp":3950410899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDQ5OTAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7637, '2016-08-11 05:30:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:56.472798Z","gw_timestamp":4158680563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NjAxMjI4MDA0MjiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7639, '2016-08-11 05:30:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:10.845163Z","gw_timestamp":4173044115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxMTAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7641, '2016-08-11 05:30:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:25.192439Z","gw_timestamp":4187407867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1MjAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7643, '2016-08-11 05:30:33', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":834,"f_cnt_down":1498,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:29.296233Z","gw_timestamp":1570653620,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABUwMDQ3NDAxMjI4MDA0MzMKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7645, '2016-08-11 05:30:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:39.567945Z","gw_timestamp":4201771523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwNzAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7647, '2016-08-11 05:31:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:53.928943Z","gw_timestamp":4216135283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7586, '2016-08-11 05:24:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:23:57.387924Z","gw_timestamp":3799597115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjI4MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7594, '2016-08-11 05:25:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:54.846054Z","gw_timestamp":3857049643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwOTAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7596, '2016-08-11 05:25:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:09.201305Z","gw_timestamp":3871412467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyOTAxMjI4MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7598, '2016-08-11 05:25:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:23.571554Z","gw_timestamp":3885776331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNzAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7600, '2016-08-11 05:25:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:37.924933Z","gw_timestamp":3900139675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1MjAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7602, '2016-08-11 05:26:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:52.310439Z","gw_timestamp":3914501971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMTAxMjI4MDA0MjizGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7604, '2016-08-11 05:26:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:06.658542Z","gw_timestamp":3928865419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7606, '2016-08-11 05:26:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:21.017667Z","gw_timestamp":3943228971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MDAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7608, '2016-08-11 05:26:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:35.389925Z","gw_timestamp":3957591899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MzAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7610, '2016-08-11 05:26:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:49.742292Z","gw_timestamp":3971954715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMjAxMjI4MDA0MjiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7612, '2016-08-11 05:27:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:04.12445Z","gw_timestamp":3986318163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3MjAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7614, '2016-08-11 05:27:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:18.489061Z","gw_timestamp":4000681715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NzAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7616, '2016-08-11 05:27:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:32.84005Z","gw_timestamp":4015045163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjI4MDA0MjixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7618, '2016-08-11 05:27:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:47.193256Z","gw_timestamp":4029408195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MTAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7592, '2016-08-11 05:24:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:24:40.478803Z","gw_timestamp":3842686195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7622, '2016-08-11 05:28:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:15.919115Z","gw_timestamp":4058134667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2MTAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7624, '2016-08-11 05:28:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:30.285182Z","gw_timestamp":4072498323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7626, '2016-08-11 05:28:47', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":836,"f_cnt_down":1539,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:28:38.454149Z","gw_timestamp":2825086988,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:13:39.550785Z","gw_timestamp":1460908172,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC4wMDU0NTAxMjE3MDA0NjAUUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7628, '2016-08-11 05:28:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:51.830067Z","gw_timestamp":4094043803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7630, '2016-08-11 05:29:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:06.203295Z","gw_timestamp":4108407563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNzAxMjI4MDA0Mjiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7632, '2016-08-11 05:29:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:20.564026Z","gw_timestamp":4122771219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDQ5OTAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7634, '2016-08-11 05:29:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:34.943397Z","gw_timestamp":4137134971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7636, '2016-08-11 05:29:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:49.293181Z","gw_timestamp":4151498627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NTAxMjI4MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7638, '2016-08-11 05:30:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:03.645442Z","gw_timestamp":4165862283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0Mjiy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7640, '2016-08-11 05:30:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:18.013808Z","gw_timestamp":4180226043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4ODAxMjI4MDA0Mjixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7642, '2016-08-11 05:30:30', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":833,"f_cnt_down":1497,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:30:28.199582Z","gw_timestamp":2934832476,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABUwMDQ3NDAxMjI4MDA0MzMKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7644, '2016-08-11 05:30:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:32.379063Z","gw_timestamp":4194589803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MDAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7599, '2016-08-11 05:25:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:25:30.747178Z","gw_timestamp":3892958051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3MjAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7609, '2016-08-11 05:26:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:42.564799Z","gw_timestamp":3964773619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7611, '2016-08-11 05:27:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:26:56.922058Z","gw_timestamp":3979136339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MDAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7613, '2016-08-11 05:27:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:11.29113Z","gw_timestamp":3993499995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMTAxMjI4MDA0Mjiuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7615, '2016-08-11 05:27:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:25.652436Z","gw_timestamp":4007863747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7617, '2016-08-11 05:27:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:40.016684Z","gw_timestamp":4022226363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMjAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7619, '2016-08-11 05:28:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:27:54.375927Z","gw_timestamp":4036590019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwOTAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7621, '2016-08-11 05:28:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:08.762587Z","gw_timestamp":4050953667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwNTAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7623, '2016-08-11 05:28:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:23.109808Z","gw_timestamp":4065316491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNzAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7625, '2016-08-11 05:28:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:37.463811Z","gw_timestamp":4079680155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxMzAxMjI4MDA0Mjix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7627, '2016-08-11 05:28:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:44.645562Z","gw_timestamp":4086861971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NjAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7629, '2016-08-11 05:29:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:59.036078Z","gw_timestamp":4101225739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2NTAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7631, '2016-08-11 05:29:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:13.388171Z","gw_timestamp":4115589387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwNzAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7633, '2016-08-11 05:29:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:27.74831Z","gw_timestamp":4129953043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0Mjitug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7620, '2016-08-11 05:28:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:28:01.5677Z","gw_timestamp":4043771843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7648, '2016-08-11 05:31:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:01.104023Z","gw_timestamp":4223316379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0OTAxMjI4MDA0MjizCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7650, '2016-08-11 05:31:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:15.469951Z","gw_timestamp":4237679931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MjAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7652, '2016-08-11 05:31:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:29.83182Z","gw_timestamp":4252043483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMzAxMjI4MDA0Mjiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7654, '2016-08-11 05:31:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:44.190444Z","gw_timestamp":4266406099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NTAxMjI4MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7656, '2016-08-11 05:32:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:58.55367Z","gw_timestamp":4280768187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7658, '2016-08-11 05:32:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:12.91916Z","gw_timestamp":164339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwNTAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7660, '2016-08-11 05:32:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:27.301464Z","gw_timestamp":14527995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7662, '2016-08-11 05:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:41.649571Z","gw_timestamp":28891227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MjAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7664, '2016-08-11 05:33:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:56.00482Z","gw_timestamp":43254475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1MjAxMjI4MDA0MjizCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7666, '2016-08-11 05:33:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:10.367071Z","gw_timestamp":57618123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3MjAxMjI4MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7668, '2016-08-11 05:33:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:24.737394Z","gw_timestamp":71981675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNjAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7670, '2016-08-11 05:33:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:39.104696Z","gw_timestamp":86343771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7700, '2016-08-11 05:37:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:14.551827Z","gw_timestamp":301792963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMzAxMjI4MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7635, '2016-08-11 05:29:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:29:42.100568Z","gw_timestamp":4144316699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMjAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7679, '2016-08-11 05:34:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:50.909079Z","gw_timestamp":158160995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMTAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7681, '2016-08-11 05:35:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:05.27832Z","gw_timestamp":172524555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7683, '2016-08-11 05:35:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:12.460212Z","gw_timestamp":179705547,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjI4MDA0MjiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7685, '2016-08-11 05:35:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:26.82032Z","gw_timestamp":194069091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NDAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7687, '2016-08-11 05:35:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:41.184529Z","gw_timestamp":208431915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7689, '2016-08-11 05:36:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:55.560975Z","gw_timestamp":222795675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1ODAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7717, '2016-08-11 05:39:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:09.454935Z","gw_timestamp":416700531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0NzAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7719, '2016-08-11 05:39:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:23.822334Z","gw_timestamp":431064195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7721, '2016-08-11 05:39:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:38.2056Z","gw_timestamp":445427843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUxNzAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7723, '2016-08-11 05:40:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:52.543706Z","gw_timestamp":459790563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1MjAxMjI4MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7725, '2016-08-11 05:40:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:06.906074Z","gw_timestamp":474154219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUyNjAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7727, '2016-08-11 05:40:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:21.283962Z","gw_timestamp":488517971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0OTAxMjI4MDA0Mjiuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7729, '2016-08-11 05:40:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:35.626711Z","gw_timestamp":502880587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0MDAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7646, '2016-08-11 05:30:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:30:46.753579Z","gw_timestamp":4208953459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MDAxMjI4MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7672, '2016-08-11 05:34:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:00.641823Z","gw_timestamp":107888939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjiuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7674, '2016-08-11 05:34:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:15.003938Z","gw_timestamp":122252795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7676, '2016-08-11 05:34:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:29.371077Z","gw_timestamp":136615419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7678, '2016-08-11 05:34:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:43.755589Z","gw_timestamp":150979067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzNjAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7680, '2016-08-11 05:35:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:58.09369Z","gw_timestamp":165342827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NjAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7682, '2016-08-11 05:35:14', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1315,"f_cnt_down":2121,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:35:06.071312Z","gw_timestamp":3212704340,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACgwMDU0OTAxMjE2MDA0NTcJIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7684, '2016-08-11 05:35:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:19.668849Z","gw_timestamp":186887475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MDAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7686, '2016-08-11 05:35:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:33.99833Z","gw_timestamp":201250195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7688, '2016-08-11 05:35:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:35:48.365193Z","gw_timestamp":215613747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2MzAxMjI4MDA0MjizCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7690, '2016-08-11 05:36:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:02.7357Z","gw_timestamp":229977499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU3NDAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7692, '2016-08-11 05:36:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:17.10071Z","gw_timestamp":244340219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDQ5OTAxMjI4MDA0Mjiyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7694, '2016-08-11 05:36:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:31.455938Z","gw_timestamp":258703875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7696, '2016-08-11 05:36:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:45.839423Z","gw_timestamp":273067531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7649, '2016-08-11 05:31:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:08.284188Z","gw_timestamp":4230498003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0OTAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7651, '2016-08-11 05:31:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:22.653437Z","gw_timestamp":4244861651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7653, '2016-08-11 05:31:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:37.021807Z","gw_timestamp":4259224475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NDAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7655, '2016-08-11 05:31:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:31:51.384777Z","gw_timestamp":4273587091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MjAxMjI4MDA0Mjiyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7657, '2016-08-11 05:32:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:05.737565Z","gw_timestamp":4287949811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7659, '2016-08-11 05:32:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:20.098941Z","gw_timestamp":7346171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwNTAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7661, '2016-08-11 05:32:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:34.467453Z","gw_timestamp":21709819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NzAxMjI4MDA0Mjiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7663, '2016-08-11 05:32:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:32:48.833195Z","gw_timestamp":36072539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2MTAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7665, '2016-08-11 05:33:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:03.207787Z","gw_timestamp":50436403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDYwNjAxMjI4MDA0MjivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7667, '2016-08-11 05:33:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:17.550694Z","gw_timestamp":64799955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0Mjiuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7669, '2016-08-11 05:33:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:31.91594Z","gw_timestamp":79162667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NjAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7671, '2016-08-11 05:34:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:33:46.278304Z","gw_timestamp":93525387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1ODAxMjI4MDA0Mjixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7673, '2016-08-11 05:34:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:07.832415Z","gw_timestamp":115070867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyMjAxMjI4MDA0Mjiyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7675, '2016-08-11 05:34:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:22.193449Z","gw_timestamp":129433795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzMTAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7677, '2016-08-11 05:34:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:34:36.555698Z","gw_timestamp":143797347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU2MzAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7691, '2016-08-11 05:36:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:09.915201Z","gw_timestamp":237158603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MDAxMjI4MDA0Mjiyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7693, '2016-08-11 05:36:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:24.275324Z","gw_timestamp":251522051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3MjAxMjI4MDA0Mjix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7695, '2016-08-11 05:36:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:38.634696Z","gw_timestamp":265885603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDQ5NjAxMjI4MDA0Mjiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7697, '2016-08-11 05:37:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:36:53.010032Z","gw_timestamp":280249251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7699, '2016-08-11 05:37:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:07.370373Z","gw_timestamp":294611659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3OTAxMjI4MDA0MjizWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7701, '2016-08-11 05:37:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:21.725394Z","gw_timestamp":308974795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7703, '2016-08-11 05:37:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:36.08993Z","gw_timestamp":323338547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7705, '2016-08-11 05:37:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:50.455952Z","gw_timestamp":337701579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNjAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7707, '2016-08-11 05:38:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:04.819204Z","gw_timestamp":352064923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MTAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7709, '2016-08-11 05:38:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:19.175585Z","gw_timestamp":366428579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3MjAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7711, '2016-08-11 05:38:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:33.538832Z","gw_timestamp":380792339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0NTAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7713, '2016-08-11 05:38:51', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":753,"f_cnt_down":1339,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:38:48.487245Z","gw_timestamp":3435120380,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:49.583905Z","gw_timestamp":2070941292,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABIwMDUxMjAxMjE5MDA0NjEHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7698, '2016-08-11 05:37:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:00.183452Z","gw_timestamp":287430243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7732, '2016-08-11 05:41:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:57.175582Z","gw_timestamp":524426283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7734, '2016-08-11 05:41:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:11.545792Z","gw_timestamp":538789931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7736, '2016-08-11 05:41:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:25.904089Z","gw_timestamp":553153379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MDAxMjI4MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7738, '2016-08-11 05:41:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:40.285676Z","gw_timestamp":567516307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7740, '2016-08-11 05:42:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:54.634854Z","gw_timestamp":581880059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMDAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7742, '2016-08-11 05:42:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:16.180301Z","gw_timestamp":603425547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjI4MDA0MjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7744, '2016-08-11 05:42:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:30.53498Z","gw_timestamp":617789307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7746, '2016-08-11 05:42:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:44.90698Z","gw_timestamp":632152963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7748, '2016-08-11 05:43:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:59.267478Z","gw_timestamp":646516723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MjAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7750, '2016-08-11 05:43:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:13.642999Z","gw_timestamp":660880163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NTAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7752, '2016-08-11 05:43:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:27.989231Z","gw_timestamp":675243923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxMTAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7754, '2016-08-11 05:43:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:42.355223Z","gw_timestamp":689607787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0Mjiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7756, '2016-08-11 05:43:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:49.543101Z","gw_timestamp":696789515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMTAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7702, '2016-08-11 05:37:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:28.905059Z","gw_timestamp":316156619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MzAxMjI4MDA0Mjiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7704, '2016-08-11 05:37:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:43.274527Z","gw_timestamp":330520379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjI4MDA0Mjivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7706, '2016-08-11 05:38:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:37:57.630958Z","gw_timestamp":344882987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyOTAxMjI4MDA0Mjiy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7708, '2016-08-11 05:38:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:12.018436Z","gw_timestamp":359246747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMDAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7710, '2016-08-11 05:38:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:26.369209Z","gw_timestamp":373610507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7712, '2016-08-11 05:38:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:40.72452Z","gw_timestamp":387974163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUzODAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7714, '2016-08-11 05:38:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:47.914958Z","gw_timestamp":395155779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3MDAxMjI4MDA0Mjiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7716, '2016-08-11 05:39:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:02.271279Z","gw_timestamp":409519331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUwMzAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7718, '2016-08-11 05:39:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:16.640583Z","gw_timestamp":423882363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwMzAxMjI4MDA0Mjiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7720, '2016-08-11 05:39:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:31.003948Z","gw_timestamp":438246123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3MDAxMjI4MDA0Mjiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7722, '2016-08-11 05:39:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:45.361212Z","gw_timestamp":452609363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU2NzAxMjI4MDA0MjiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7724, '2016-08-11 05:40:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:39:59.724531Z","gw_timestamp":466972491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3OTAxMjI4MDA0Mjix6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7726, '2016-08-11 05:40:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:14.090718Z","gw_timestamp":481336043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxNTAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7728, '2016-08-11 05:40:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:28.456114Z","gw_timestamp":495699075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0OTAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7715, '2016-08-11 05:39:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:38:55.085702Z","gw_timestamp":402337715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUyNDAxMjI4MDA0MjiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7733, '2016-08-11 05:41:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:04.359214Z","gw_timestamp":531608003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1ODAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7735, '2016-08-11 05:41:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:18.726474Z","gw_timestamp":545971755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU4ODAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7737, '2016-08-11 05:41:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:33.084088Z","gw_timestamp":560334483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUwNzAxMjI4MDA0MjiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7739, '2016-08-11 05:41:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:41:47.449038Z","gw_timestamp":574698235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUxMzAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7741, '2016-08-11 05:42:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:08.991915Z","gw_timestamp":596243715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMTAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7743, '2016-08-11 05:42:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:23.357633Z","gw_timestamp":610607475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1NDAxMjI4MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7745, '2016-08-11 05:42:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:37.728742Z","gw_timestamp":624971235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDQ4ODAxMjI4MDA0Mjiueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7747, '2016-08-11 05:43:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:42:52.08522Z","gw_timestamp":639334787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDQ5NDAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7769, '2016-08-11 05:45:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:22.89223Z","gw_timestamp":790149619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1MjAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7771, '2016-08-11 05:45:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:37.258474Z","gw_timestamp":804513275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyOTAxMjI4MDA0Mjiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7773, '2016-08-11 05:45:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:44.439298Z","gw_timestamp":811695203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7775, '2016-08-11 05:46:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:58.803348Z","gw_timestamp":826058859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7777, '2016-08-11 05:46:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:13.170723Z","gw_timestamp":840421475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7730, '2016-08-11 05:40:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:42.822335Z","gw_timestamp":510062411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMjAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7760, '2016-08-11 05:44:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:18.272477Z","gw_timestamp":725515883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MjAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7762, '2016-08-11 05:44:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:32.627727Z","gw_timestamp":739878699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMTAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7764, '2016-08-11 05:44:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:46.996244Z","gw_timestamp":754242355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMTAxMjI4MDA0MjiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7766, '2016-08-11 05:45:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:01.353296Z","gw_timestamp":768604971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyMjAxMjI4MDA0Mjiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7768, '2016-08-11 05:45:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:15.716599Z","gw_timestamp":782967691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7770, '2016-08-11 05:45:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:30.074831Z","gw_timestamp":797331451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwNzAxMjI4MDA0Mjiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7772, '2016-08-11 05:45:40', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":834,"f_cnt_down":1499,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:45:39.0479Z","gw_timestamp":3845681236,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AB4wMDQ4NzAxMjI5MDA0MzIMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7800, '2016-08-11 05:49:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:58.351629Z","gw_timestamp":1005600691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0NTAxMjI4MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7802, '2016-08-11 05:49:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:12.718249Z","gw_timestamp":1019963723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDQ5MjAxMjI4MDA0Mjivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7804, '2016-08-11 05:49:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:27.075999Z","gw_timestamp":1034327371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNzAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7806, '2016-08-11 05:49:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:41.436234Z","gw_timestamp":1048690403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzODAxMjI4MDA0Mjivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7808, '2016-08-11 05:50:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:55.801435Z","gw_timestamp":1063053851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0MjAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7810, '2016-08-11 05:50:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:10.171012Z","gw_timestamp":1077417611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0MjAxMjI4MDA0Mjiyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7731, '2016-08-11 05:40:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:40:49.995967Z","gw_timestamp":517244347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2MTAxMjI4MDA0MjiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7749, '2016-08-11 05:43:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:06.447096Z","gw_timestamp":653698443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDQ4NjAxMjI4MDA0MjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7751, '2016-08-11 05:43:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":6998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:20.818292Z","gw_timestamp":668062099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7753, '2016-08-11 05:43:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:35.181869Z","gw_timestamp":682425851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7755, '2016-08-11 05:43:53', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":837,"f_cnt_down":1540,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:43:49.908434Z","gw_timestamp":3736541716,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADowMDYwNTAxMjE3MDA0NjAGIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7757, '2016-08-11 05:44:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:43:56.717592Z","gw_timestamp":703971443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7759, '2016-08-11 05:44:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:11.078837Z","gw_timestamp":718334571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1MjAxMjI4MDA0MjizKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7761, '2016-08-11 05:44:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:25.445068Z","gw_timestamp":732696875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7763, '2016-08-11 05:44:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:39.80722Z","gw_timestamp":747060427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3NDAxMjI4MDA0MjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7765, '2016-08-11 05:45:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:54.184728Z","gw_timestamp":761423659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NzAxMjI4MDA0Mjiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7767, '2016-08-11 05:45:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:08.55834Z","gw_timestamp":775786379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMzAxMjI4MDA0MjizCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7779, '2016-08-11 05:46:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:27.536979Z","gw_timestamp":854784299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUzMTAxMjI4MDA0Mjixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7781, '2016-08-11 05:46:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:41.919499Z","gw_timestamp":869147851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzMzAxMjI4MDA0Mjixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7783, '2016-08-11 05:47:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:56.257473Z","gw_timestamp":883511603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyOTAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7758, '2016-08-11 05:44:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:44:03.912851Z","gw_timestamp":711153267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3NDAxMjI4MDA0Mjivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7774, '2016-08-11 05:46:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:45:51.632038Z","gw_timestamp":818876931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUwOTAxMjI4MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7776, '2016-08-11 05:46:15', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":835,"f_cnt_down":1500,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:46:03.730297Z","gw_timestamp":3870363644,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:31:04.826986Z","gw_timestamp":2506184372,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AB4wMDQ4NzAxMjI5MDA0MzIMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7778, '2016-08-11 05:46:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:20.346342Z","gw_timestamp":847602467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0MDAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7780, '2016-08-11 05:46:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:34.719604Z","gw_timestamp":861966123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU1ODAxMjI4MDA0Mjiymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7782, '2016-08-11 05:46:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:46:49.081855Z","gw_timestamp":876329779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU2NTAxMjI4MDA0Mjixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7784, '2016-08-11 05:47:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:03.438234Z","gw_timestamp":890693427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0MjiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7786, '2016-08-11 05:47:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:17.810349Z","gw_timestamp":905057187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0NTAxMjI4MDA0Mjiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7788, '2016-08-11 05:47:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:32.168986Z","gw_timestamp":919420947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU1NjAxMjI4MDA0MjixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7790, '2016-08-11 05:47:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:46.533985Z","gw_timestamp":933784395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU0NTAxMjI4MDA0Mjivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7792, '2016-08-11 05:48:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:00.899506Z","gw_timestamp":948148051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDU3OTAxMjI4MDA0MjiyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7794, '2016-08-11 05:48:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:15.259482Z","gw_timestamp":962510971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzNjAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7796, '2016-08-11 05:48:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:29.623979Z","gw_timestamp":976874635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0NTAxMjI4MDA0Mjiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7785, '2016-08-11 05:47:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:10.632846Z","gw_timestamp":897875259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDQ4ODAxMjI4MDA0Mjiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7789, '2016-08-11 05:47:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:39.352303Z","gw_timestamp":926602779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU1MjAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7791, '2016-08-11 05:48:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:53.729859Z","gw_timestamp":940966331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNDAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7793, '2016-08-11 05:48:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:08.079861Z","gw_timestamp":955329043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUyNjAxMjI4MDA0Mjivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7795, '2016-08-11 05:48:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:22.43536Z","gw_timestamp":969692811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABYwMDUzODAxMjI4MDA0Mjiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7797, '2016-08-11 05:48:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:36.804565Z","gw_timestamp":984056563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0OTAxMjI4MDA0MjiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7799, '2016-08-11 05:49:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:51.168117Z","gw_timestamp":998419179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU1NjAxMjI4MDA0MjiyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7801, '2016-08-11 05:49:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:05.532987Z","gw_timestamp":1012781891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU1MjAxMjI4MDA0MjiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7803, '2016-08-11 05:49:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:19.886234Z","gw_timestamp":1027145547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUxMTAxMjI4MDA0Mjiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7805, '2016-08-11 05:49:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:34.259827Z","gw_timestamp":1041509203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0MjixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7807, '2016-08-11 05:49:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:49:48.623854Z","gw_timestamp":1055871923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU1MjAxMjI4MDA0MjixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7809, '2016-08-11 05:50:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:03.004109Z","gw_timestamp":1070235675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0OTAxMjI4MDA0Mjiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7811, '2016-08-11 05:50:18', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1316,"f_cnt_down":2122,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:50:16.897031Z","gw_timestamp":4123530500,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACwwMDU2ODAxMjE2MDA0NTcKYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7813, '2016-08-11 05:50:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:24.52899Z","gw_timestamp":1091780747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUzODAxMjI4MDA0MjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7787, '2016-08-11 05:47:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:47:24.990355Z","gw_timestamp":912238915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUzNjAxMjI4MDA0Mjiuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7817, '2016-08-11 05:51:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:53.251608Z","gw_timestamp":1120505651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0MjAxMjI4MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7819, '2016-08-11 05:51:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:07.623124Z","gw_timestamp":1134869211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzODAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7821, '2016-08-11 05:51:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:21.973119Z","gw_timestamp":1149231923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyNDAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7823, '2016-08-11 05:51:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:36.369619Z","gw_timestamp":1163594851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDQ5NjAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7825, '2016-08-11 05:52:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:50.718004Z","gw_timestamp":1177958299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzODAxMjI4MDA0Mjmyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7827, '2016-08-11 05:52:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:05.072994Z","gw_timestamp":1192322163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUyOTAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7829, '2016-08-11 05:52:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:19.434597Z","gw_timestamp":1206684771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxMTAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7831, '2016-08-11 05:52:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:33.790507Z","gw_timestamp":1221048531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUwNTAxMjI4MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7833, '2016-08-11 05:52:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:48.157078Z","gw_timestamp":1235412083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxMzAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7863, '2016-08-11 05:56:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:16.418376Z","gw_timestamp":1443677787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDU1NDAxMjI4MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7798, '2016-08-11 05:48:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:48:44.010391Z","gw_timestamp":991238075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUzODAxMjI4MDA0MjiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7814, '2016-08-11 05:50:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:31.713608Z","gw_timestamp":1098962051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU1NDAxMjI4MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7816, '2016-08-11 05:50:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:46.090254Z","gw_timestamp":1113324659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUwNTAxMjI4MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7818, '2016-08-11 05:51:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:00.451503Z","gw_timestamp":1127687491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDQ5NjAxMjI4MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7820, '2016-08-11 05:51:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:14.800492Z","gw_timestamp":1142050203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxMzAxMjI4MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7822, '2016-08-11 05:51:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:29.159741Z","gw_timestamp":1156413859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDUyOTAxMjI4MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7824, '2016-08-11 05:51:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:43.528116Z","gw_timestamp":1170776579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU0NzAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7826, '2016-08-11 05:52:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:51:57.887561Z","gw_timestamp":1185140227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0OTAxMjI4MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7828, '2016-08-11 05:52:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:12.244616Z","gw_timestamp":1199503683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDU0MDAxMjI4MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7830, '2016-08-11 05:52:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:26.609868Z","gw_timestamp":1213866707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUzNjAxMjI4MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7832, '2016-08-11 05:52:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:41.018381Z","gw_timestamp":1228230363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7834, '2016-08-11 05:53:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:52:55.342493Z","gw_timestamp":1242593179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU0NTAxMjI4MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7836, '2016-08-11 05:53:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:09.700753Z","gw_timestamp":1256956107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDUzODAxMjI4MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7838, '2016-08-11 05:53:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:24.059998Z","gw_timestamp":1271318515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwNTAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7812, '2016-08-11 05:50:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:17.362627Z","gw_timestamp":1084599443,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU3MDAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7842, '2016-08-11 05:54:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:52.791485Z","gw_timestamp":1300045507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUyMjAxMjI4MDA0MjmvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7844, '2016-08-11 05:54:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:59.970248Z","gw_timestamp":1307226611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUzNjAxMjI4MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7846, '2016-08-11 05:54:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:14.334556Z","gw_timestamp":1321589323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDUxMzAxMjI4MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7848, '2016-08-11 05:54:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:28.695751Z","gw_timestamp":1335953083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUxMTAxMjI4MDA0MjmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7850, '2016-08-11 05:54:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:43.057997Z","gw_timestamp":1350315803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MjAxMjI4MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7852, '2016-08-11 05:55:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:57.444945Z","gw_timestamp":1364679459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDQ5NjAxMjI4MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7854, '2016-08-11 05:55:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:11.793609Z","gw_timestamp":1379043115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDQ5MjAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7856, '2016-08-11 05:55:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:26.152877Z","gw_timestamp":1393406971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDU1NDAxMjI4MDA0Mjmuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7858, '2016-08-11 05:55:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:40.516126Z","gw_timestamp":1407770627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyNDAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7860, '2016-08-11 05:56:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:54.87137Z","gw_timestamp":1422134283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU1MjAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7862, '2016-08-11 05:56:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:09.23688Z","gw_timestamp":1436496787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDQ5NjAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7815, '2016-08-11 05:50:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:50:38.888367Z","gw_timestamp":1106143043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABgwMDU1NjAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7835, '2016-08-11 05:53:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:02.521131Z","gw_timestamp":1249774899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABkwMDU3MjAxMjI4MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7837, '2016-08-11 05:53:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:16.889296Z","gw_timestamp":1264137523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUwOTAxMjI4MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7839, '2016-08-11 05:53:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:31.251875Z","gw_timestamp":1278500339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUwOTAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7841, '2016-08-11 05:53:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:45.602864Z","gw_timestamp":1292863995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2NTAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7843, '2016-08-11 05:54:02', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":754,"f_cnt_down":1340,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:53:59.26294Z","gw_timestamp":50929220,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABEwMDU1MTAxMjE5MDA0NTkHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7845, '2016-08-11 05:54:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:07.150175Z","gw_timestamp":1314407811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUzMTAxMjI4MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7847, '2016-08-11 05:54:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:21.534448Z","gw_timestamp":1328771251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUzODAxMjI4MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7849, '2016-08-11 05:54:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:35.881735Z","gw_timestamp":1343134811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0MDAxMjI4MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7851, '2016-08-11 05:54:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:54:50.240625Z","gw_timestamp":1357497731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUyOTAxMjI4MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7853, '2016-08-11 05:55:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:04.599944Z","gw_timestamp":1371861179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUzMzAxMjI4MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7855, '2016-08-11 05:55:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:18.966249Z","gw_timestamp":1386225043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDUzNjAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7857, '2016-08-11 05:55:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:33.349772Z","gw_timestamp":1400588699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU1NDAxMjI4MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7859, '2016-08-11 05:55:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:55:47.704171Z","gw_timestamp":1414952667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUxNzAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7840, '2016-08-11 05:53:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:53:38.432244Z","gw_timestamp":1285682067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxMzAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7864, '2016-08-11 05:56:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:23.618585Z","gw_timestamp":1450859723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMTAxMjI4MDA0Mjmuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7861, '2016-08-11 05:56:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:02.096112Z","gw_timestamp":1429315595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MjAxMjI4MDA0Mjmyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7865, '2016-08-11 05:56:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:30.790765Z","gw_timestamp":1458041131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUyMDAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7866, '2016-08-11 05:56:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:37.979512Z","gw_timestamp":1465222331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0OTAxMjI4MDA0Mjmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7867, '2016-08-11 05:56:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:45.147269Z","gw_timestamp":1472403635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDU2MzAxMjI4MDA0MjmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7868, '2016-08-11 05:57:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:52.325361Z","gw_timestamp":1479585043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyOTAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7869, '2016-08-11 05:57:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:56:59.509131Z","gw_timestamp":1486766771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDQ5MjAxMjI4MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7870, '2016-08-11 05:57:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:06.684115Z","gw_timestamp":1493947763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUzMzAxMjI4MDA0Mjmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7871, '2016-08-11 05:57:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:13.867369Z","gw_timestamp":1501129587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0OTAxMjI4MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7872, '2016-08-11 05:57:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:21.061194Z","gw_timestamp":1508311419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2MTAxMjI4MDA0MjmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7873, '2016-08-11 05:57:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:28.242065Z","gw_timestamp":1515493251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUzMTAxMjI4MDA0MjmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7874, '2016-08-11 05:57:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:35.421381Z","gw_timestamp":1522674243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABswMDUzMTAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7875, '2016-08-11 05:57:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:42.599259Z","gw_timestamp":1529855971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ABwwMDUzMTAxMjI4MDA0Mjmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7876, '2016-08-11 05:57:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:49.786622Z","gw_timestamp":1537037899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyMjAxMjI4MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7877, '2016-08-11 05:58:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:57:56.966256Z","gw_timestamp":1544219723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwNTAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7878, '2016-08-11 05:58:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:04.162025Z","gw_timestamp":1551401451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUzNjAxMjI4MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7882, '2016-08-11 05:58:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:32.870511Z","gw_timestamp":1580128963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDQ5OTAxMjI4MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7884, '2016-08-11 05:58:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:47.240761Z","gw_timestamp":1594492619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUxNzAxMjI4MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7886, '2016-08-11 05:59:03', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":838,"f_cnt_down":1541,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T05:59:00.692268Z","gw_timestamp":352358692,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADowMDU0MjAxMjE3MDA0NTkHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7888, '2016-08-11 05:59:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:08.807904Z","gw_timestamp":1616038099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MjAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7890, '2016-08-11 05:59:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:23.140883Z","gw_timestamp":1630400819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUzMzAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7892, '2016-08-11 05:59:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:37.51026Z","gw_timestamp":1644764579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUwNzAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7894, '2016-08-11 06:00:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:51.871495Z","gw_timestamp":1659128235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDU1NjAxMjI4MDA0Mjmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7896, '2016-08-11 06:00:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:06.234026Z","gw_timestamp":1673491891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNTAxMjI4MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7898, '2016-08-11 06:00:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:20.592011Z","gw_timestamp":1687854499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwMzAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7900, '2016-08-11 06:00:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:42.134997Z","gw_timestamp":1709399147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyOTAxMjI4MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7902, '2016-08-11 06:01:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:56.49939Z","gw_timestamp":1723762179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyNDAxMjI4MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7904, '2016-08-11 06:01:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:10.869515Z","gw_timestamp":1738124795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyNjAxMjI4MDA0Mjmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7906, '2016-08-11 06:01:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:18.047273Z","gw_timestamp":1745306411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyNDAxMjI4MDA0MjmvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7879, '2016-08-11 05:58:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:11.330495Z","gw_timestamp":1558583379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyNDAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7905, '2016-08-11 06:01:20', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":836,"f_cnt_down":1501,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:01:14.578042Z","gw_timestamp":486244532,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:34:40.707474Z","gw_timestamp":3417032156,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-114,"snr":-3,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AowwMDUwMzAxMjMxMDA0MzEKcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7907, '2016-08-11 06:01:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:25.270267Z","gw_timestamp":1752488235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU1NjAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7909, '2016-08-11 06:01:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:39.593018Z","gw_timestamp":1766852003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxNTAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7917, '2016-08-11 06:02:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:44.223763Z","gw_timestamp":1831487611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxMzAxMjI4MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7919, '2016-08-11 06:03:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:58.598137Z","gw_timestamp":1845851371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMzAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7921, '2016-08-11 06:03:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:12.955581Z","gw_timestamp":1860213987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzODAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7923, '2016-08-11 06:03:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:27.31665Z","gw_timestamp":1874577643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDQ5OTAxMjI4MDA0Mjmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7925, '2016-08-11 06:03:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:41.706022Z","gw_timestamp":1888940251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwOTAxMjI4MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7927, '2016-08-11 06:04:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:56.049396Z","gw_timestamp":1903304011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyMDAxMjI4MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7929, '2016-08-11 06:04:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:10.412528Z","gw_timestamp":1917667771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU2NTAxMjI4MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7931, '2016-08-11 06:04:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:24.766769Z","gw_timestamp":1932031531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDU1NjAxMjI4MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7933, '2016-08-11 06:04:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:39.135004Z","gw_timestamp":1946394147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNjAxMjI4MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7880, '2016-08-11 05:58:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:18.529898Z","gw_timestamp":1565765211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2NTAxMjI4MDA0Mjmu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7910, '2016-08-11 06:01:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:46.777761Z","gw_timestamp":1774033723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMTAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7912, '2016-08-11 06:02:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:01.136963Z","gw_timestamp":1788396539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzNjAxMjI4MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7914, '2016-08-11 06:02:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:15.50965Z","gw_timestamp":1802760203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUzODAxMjI4MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7916, '2016-08-11 06:02:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:37.040137Z","gw_timestamp":1824305787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2MzAxMjI4MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7918, '2016-08-11 06:03:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:51.413725Z","gw_timestamp":1838669547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7920, '2016-08-11 06:03:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:05.768766Z","gw_timestamp":1853032571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDQ5NDAxMjI4MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7922, '2016-08-11 06:03:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:20.137013Z","gw_timestamp":1867395811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUzODAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7924, '2016-08-11 06:03:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:34.500269Z","gw_timestamp":1881759155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUwNzAxMjI4MDA0Mjmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7926, '2016-08-11 06:03:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:03:48.858659Z","gw_timestamp":1896122187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyOTAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7928, '2016-08-11 06:04:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:03.226891Z","gw_timestamp":1910485939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU1ODAxMjI4MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7930, '2016-08-11 06:04:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:17.618127Z","gw_timestamp":1924849707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7932, '2016-08-11 06:04:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:31.965588Z","gw_timestamp":1939212835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDU0NzAxMjI4MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7960, '2016-08-11 06:08:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:53.045512Z","gw_timestamp":2140302027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDQ5MDAxMjI4MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7881, '2016-08-11 05:58:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:25.686132Z","gw_timestamp":1572947035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyMDAxMjI4MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7883, '2016-08-11 05:58:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:40.05413Z","gw_timestamp":1587310795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDQ5NDAxMjI4MDA0MjmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7885, '2016-08-11 05:59:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:58:54.41839Z","gw_timestamp":1601674451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyMDAxMjI4MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7887, '2016-08-11 05:59:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:01.595128Z","gw_timestamp":1608856379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyNDAxMjI4MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7889, '2016-08-11 05:59:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:15.962257Z","gw_timestamp":1623219299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNTAxMjI4MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7891, '2016-08-11 05:59:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:30.32063Z","gw_timestamp":1637582755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0NTAxMjI4MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7893, '2016-08-11 05:59:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:44.693504Z","gw_timestamp":1651946299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2NzAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7895, '2016-08-11 06:00:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T05:59:59.074526Z","gw_timestamp":1666310163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUwNTAxMjI4MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7897, '2016-08-11 06:00:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:13.41238Z","gw_timestamp":1680673403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDQ5NjAxMjI4MDA0Mjmziw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7899, '2016-08-11 06:00:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:34.968503Z","gw_timestamp":1702217323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzODAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7901, '2016-08-11 06:00:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:00:49.31763Z","gw_timestamp":1716581083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyOTAxMjI4MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7903, '2016-08-11 06:01:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:03.690891Z","gw_timestamp":1730943699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDQ5MjAxMjI4MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7911, '2016-08-11 06:02:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:53.954765Z","gw_timestamp":1781215443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyOTAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7913, '2016-08-11 06:02:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:08.322653Z","gw_timestamp":1795578267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDQ2NzAxMjI4MDA0Mjmzqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7908, '2016-08-11 06:01:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:01:32.415394Z","gw_timestamp":1759670067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNzAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7934, '2016-08-11 06:04:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:46.320643Z","gw_timestamp":1953576075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MzAxMjI4MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7936, '2016-08-11 06:05:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:00.676902Z","gw_timestamp":1967939731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzODAxMjI4MDA0MjmzKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7938, '2016-08-11 06:05:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:15.041275Z","gw_timestamp":1982303379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMTAxMjI4MDA0MjmwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7940, '2016-08-11 06:05:30', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1317,"f_cnt_down":2123,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:05:27.722426Z","gw_timestamp":739389036,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:38:53.851865Z","gw_timestamp":3670176548,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADYwMDU0OTAxMjE2MDA0NTcHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7942, '2016-08-11 06:05:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:36.59315Z","gw_timestamp":2003848859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDQ5MjAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7944, '2016-08-11 06:05:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:50.945778Z","gw_timestamp":2018212731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUwOTAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7946, '2016-08-11 06:06:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:05.31765Z","gw_timestamp":2032576379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzODAxMjI4MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7948, '2016-08-11 06:06:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:19.677154Z","gw_timestamp":2046939723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzMzAxMjI4MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7950, '2016-08-11 06:06:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:41.228898Z","gw_timestamp":2068484483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUxMTAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7952, '2016-08-11 06:07:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:55.592151Z","gw_timestamp":2082847195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyOTAxMjI4MDA0Mjmy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7954, '2016-08-11 06:07:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:09.956651Z","gw_timestamp":2097211059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyMjAxMjI4MDA0Mjmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7956, '2016-08-11 06:07:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:24.320921Z","gw_timestamp":2111574611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwOTAxMjI4MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7915, '2016-08-11 06:02:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:02:22.677882Z","gw_timestamp":1809942131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMTAxMjI4MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7937, '2016-08-11 06:05:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:07.871798Z","gw_timestamp":1975121555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7939, '2016-08-11 06:05:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:22.222904Z","gw_timestamp":1989485315,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU0NTAxMjI4MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7941, '2016-08-11 06:05:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:29.408529Z","gw_timestamp":1996667147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzMTAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7943, '2016-08-11 06:05:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:43.790041Z","gw_timestamp":2011030795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMTAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7945, '2016-08-11 06:06:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:05:58.127026Z","gw_timestamp":2025394451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU4MTAxMjI4MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7947, '2016-08-11 06:06:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:12.499259Z","gw_timestamp":2039758211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzODAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7965, '2016-08-11 06:08:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:28.949396Z","gw_timestamp":2176208451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNzAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7967, '2016-08-11 06:08:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:43.310784Z","gw_timestamp":2190571899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzMTAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7969, '2016-08-11 06:09:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:57.673037Z","gw_timestamp":2204933995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU1NDAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7971, '2016-08-11 06:09:11', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":755,"f_cnt_down":1341,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:42:36.168834Z","gw_timestamp":3892493516,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AQ8wMDU0NTAxMjE3MDA0NjQLAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7985, '2016-08-11 06:10:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:38.216898Z","gw_timestamp":2305479267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwOTAxMjI4MDA0MjmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7987, '2016-08-11 06:11:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:52.583538Z","gw_timestamp":2319842291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyOTAxMjI4MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7989, '2016-08-11 06:11:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:06.947537Z","gw_timestamp":2334205531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MzAxMjI4MDA0Mjmzqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7935, '2016-08-11 06:04:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:04:53.502262Z","gw_timestamp":1960757795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMzAxMjI4MDA0Mjmy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7949, '2016-08-11 06:06:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:26.862651Z","gw_timestamp":2054120923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyOTAxMjI4MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7951, '2016-08-11 06:06:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:06:48.405747Z","gw_timestamp":2075665475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0NTAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7953, '2016-08-11 06:07:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:02.767036Z","gw_timestamp":2090029123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyOTAxMjI4MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7955, '2016-08-11 06:07:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:17.130046Z","gw_timestamp":2104392787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDQ5NDAxMjI4MDA0MjmzKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7957, '2016-08-11 06:07:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:31.488401Z","gw_timestamp":2118756547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyMjAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7959, '2016-08-11 06:07:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:45.862653Z","gw_timestamp":2133120299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyNDAxMjI4MDA0Mjmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7961, '2016-08-11 06:08:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:00.224303Z","gw_timestamp":2147483747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyMDAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7963, '2016-08-11 06:08:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:14.591795Z","gw_timestamp":2161846043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNzAxMjI4MDA0Mjmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7973, '2016-08-11 06:09:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:12.051495Z","gw_timestamp":2219297539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzODAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7975, '2016-08-11 06:09:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:26.392532Z","gw_timestamp":2233661091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU0NTAxMjI4MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7977, '2016-08-11 06:09:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:40.7619Z","gw_timestamp":2248024747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyMjAxMjI4MDA0Mjmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7979, '2016-08-11 06:10:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:55.122163Z","gw_timestamp":2262388403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzMzAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7981, '2016-08-11 06:10:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:09.510668Z","gw_timestamp":2276752163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0OTAxMjI4MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7958, '2016-08-11 06:07:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:07:38.69562Z","gw_timestamp":2125938371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNTAxMjI4MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7964, '2016-08-11 06:08:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:21.771766Z","gw_timestamp":2169027459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDQ5NDAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7966, '2016-08-11 06:08:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:36.130366Z","gw_timestamp":2183390179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1NDAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7968, '2016-08-11 06:08:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:50.497409Z","gw_timestamp":2197752995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyNDAxMjI4MDA0Mjmyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7970, '2016-08-11 06:09:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:04.848657Z","gw_timestamp":2212115611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU1ODAxMjI4MDA0MjmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7972, '2016-08-11 06:09:13', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":756,"f_cnt_down":1342,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:09:10.039381Z","gw_timestamp":961706100,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AQ8wMDU0NTAxMjE3MDA0NjQLAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7974, '2016-08-11 06:09:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:19.211901Z","gw_timestamp":2226479163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU1NjAxMjI4MDA0MjmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7976, '2016-08-11 06:09:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:33.608435Z","gw_timestamp":2240843019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxNTAxMjI4MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7978, '2016-08-11 06:09:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:09:47.949539Z","gw_timestamp":2255206675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1MjAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7980, '2016-08-11 06:10:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:02.338035Z","gw_timestamp":2269570227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDQ5NDAxMjI4MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7996, '2016-08-11 06:12:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:57.20502Z","gw_timestamp":2384475931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyMDAxMjI4MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7998, '2016-08-11 06:12:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:11.574233Z","gw_timestamp":2398838643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwNTAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8000, '2016-08-11 06:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:25.940536Z","gw_timestamp":2413202195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUyOTAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8002, '2016-08-11 06:12:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:40.313808Z","gw_timestamp":2427564907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwOTAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7962, '2016-08-11 06:08:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:08:07.402801Z","gw_timestamp":2154664739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1MjAxMjI4MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7982, '2016-08-11 06:10:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:16.700401Z","gw_timestamp":2283933987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDQ5OTAxMjI4MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7984, '2016-08-11 06:10:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:31.038288Z","gw_timestamp":2298297747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNzAxMjI4MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7986, '2016-08-11 06:10:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:45.394596Z","gw_timestamp":2312660563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1NDAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7988, '2016-08-11 06:11:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:59.776167Z","gw_timestamp":2327024219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzNjAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7990, '2016-08-11 06:11:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:14.139293Z","gw_timestamp":2341386731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwNzAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7992, '2016-08-11 06:11:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:28.484484Z","gw_timestamp":2355750595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0MjAxMjI4MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7994, '2016-08-11 06:11:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:42.855664Z","gw_timestamp":2370113211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU0NTAxMjI4MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8006, '2016-08-11 06:13:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:09.021535Z","gw_timestamp":2456292323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNzAxMjI4MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8008, '2016-08-11 06:13:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:23.397661Z","gw_timestamp":2470656187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzMTAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8010, '2016-08-11 06:13:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:37.752927Z","gw_timestamp":2485018899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0MDAxMjI4MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8012, '2016-08-11 06:14:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:52.133435Z","gw_timestamp":2499382451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1NjAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8014, '2016-08-11 06:14:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:06.485597Z","gw_timestamp":2513746107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU2NzAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8016, '2016-08-11 06:14:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:13.658298Z","gw_timestamp":2520928043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7983, '2016-08-11 06:10:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:10:23.874726Z","gw_timestamp":2291115923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxMzAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7991, '2016-08-11 06:11:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:21.312795Z","gw_timestamp":2348568667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU2MzAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7993, '2016-08-11 06:11:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:35.666032Z","gw_timestamp":2362932003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU3MDAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7995, '2016-08-11 06:11:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:11:50.047651Z","gw_timestamp":2377294515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyMDAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7997, '2016-08-11 06:12:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:04.416423Z","gw_timestamp":2391657643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzMTAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (7999, '2016-08-11 06:12:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:18.75992Z","gw_timestamp":2406020363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU2MzAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8001, '2016-08-11 06:12:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:33.114296Z","gw_timestamp":2420383187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyOTAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8005, '2016-08-11 06:13:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:01.859882Z","gw_timestamp":2449110603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwOTAxMjI4MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8007, '2016-08-11 06:13:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:16.206041Z","gw_timestamp":2463474259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU3OTAxMjI4MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8009, '2016-08-11 06:13:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:30.568301Z","gw_timestamp":2477837915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0MDAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8011, '2016-08-11 06:13:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:44.939548Z","gw_timestamp":2492200627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxMzAxMjI4MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8013, '2016-08-11 06:14:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:13:59.295068Z","gw_timestamp":2506564387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyNDAxMjI4MDA0Mjmx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8015, '2016-08-11 06:14:15', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":839,"f_cnt_down":1542,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:14:11.466869Z","gw_timestamp":1263133732,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Aw8wMDYxNDAxMjE3MDA0NjEJ4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8017, '2016-08-11 06:14:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:20.844774Z","gw_timestamp":2528109867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU1NDAxMjI4MDA0Mjmzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8003, '2016-08-11 06:12:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:47.486413Z","gw_timestamp":2434746843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyMjAxMjI4MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8021, '2016-08-11 06:14:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:49.572297Z","gw_timestamp":2556837283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNTAxMjI4MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8023, '2016-08-11 06:15:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:03.933529Z","gw_timestamp":2571200939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MDAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8025, '2016-08-11 06:15:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:18.313404Z","gw_timestamp":2585564067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUzODAxMjI4MDA0Mjm1aw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8037, '2016-08-11 06:16:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:37.296925Z","gw_timestamp":2664564067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU2NzAxMjI4MDA0Mjmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8039, '2016-08-11 06:16:51', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":838,"f_cnt_down":1503,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:16:50.107728Z","gw_timestamp":1421774668,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACwwMDQ3NTAxMjMxMDA0MzALkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8041, '2016-08-11 06:17:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:51.665418Z","gw_timestamp":2678927723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyMjAxMjI4MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8043, '2016-08-11 06:17:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:06.026549Z","gw_timestamp":2693290443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUyMjAxMjI4MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8045, '2016-08-11 06:17:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:20.383671Z","gw_timestamp":2707653059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2MTAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8047, '2016-08-11 06:17:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:34.768432Z","gw_timestamp":2722016811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxNjAxMjI4MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8049, '2016-08-11 06:17:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:49.138571Z","gw_timestamp":2736379427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUwMzAxMjI4MDA0Mjmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8051, '2016-08-11 06:18:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:03.481559Z","gw_timestamp":2750742251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUyNDAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8053, '2016-08-11 06:18:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:17.843797Z","gw_timestamp":2765105907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDQ5NDAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8055, '2016-08-11 06:18:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:32.204045Z","gw_timestamp":2779469555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU4MTAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8004, '2016-08-11 06:13:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:12:54.659032Z","gw_timestamp":2441928779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwMzAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8034, '2016-08-11 06:16:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:22.935545Z","gw_timestamp":2650200307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyMjAxMjI4MDA0Mjmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8036, '2016-08-11 06:16:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:30.113299Z","gw_timestamp":2657382139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2MTAxMjI4MDA0Mjmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8038, '2016-08-11 06:16:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:44.507802Z","gw_timestamp":2671745795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwOTAxMjI4MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8040, '2016-08-11 06:16:53', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":839,"f_cnt_down":1504,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:50:16.237194Z","gw_timestamp":57594580,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-115,"snr":-5.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACwwMDQ3NTAxMjMxMDA0MzALkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8042, '2016-08-11 06:17:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:58.845789Z","gw_timestamp":2686108923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUxNTAxMjI4MDA0Mjmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8044, '2016-08-11 06:17:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:13.199052Z","gw_timestamp":2700471755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUxNTAxMjI4MDA0Mjmyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8046, '2016-08-11 06:17:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:27.573294Z","gw_timestamp":2714834987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxMzAxMjI4MDA0Mjmymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8048, '2016-08-11 06:17:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:41.924693Z","gw_timestamp":2729198435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU1NDAxMjI4MDA0Mjmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8050, '2016-08-11 06:18:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:17:56.28992Z","gw_timestamp":2743561251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDQ5OTAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8052, '2016-08-11 06:18:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:10.653178Z","gw_timestamp":2757923971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUwNzAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8054, '2016-08-11 06:18:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:25.03402Z","gw_timestamp":2772287627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2NzAxMjI4MDA0Mjmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8056, '2016-08-11 06:18:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:39.378809Z","gw_timestamp":2786651275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0OTAxMjI4MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8058, '2016-08-11 06:19:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:00.922681Z","gw_timestamp":2808196867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUzNjAxMjI4MDA0MjmzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8018, '2016-08-11 06:14:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:28.028422Z","gw_timestamp":2535291699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyOTAxMjI4MDA0MjmuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8020, '2016-08-11 06:14:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:42.41017Z","gw_timestamp":2549655555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUwODAxMjI4MDA0Mjmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8022, '2016-08-11 06:15:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:56.75091Z","gw_timestamp":2564019003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzNjAxMjI4MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8024, '2016-08-11 06:15:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:11.11517Z","gw_timestamp":2578382867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUwMzAxMjI4MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8026, '2016-08-11 06:15:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:25.481543Z","gw_timestamp":2592745587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2NTAxMjI4MDA0Mjmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8028, '2016-08-11 06:15:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:39.840791Z","gw_timestamp":2607109139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyNjAxMjI4MDA0MjmvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8030, '2016-08-11 06:16:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:54.234691Z","gw_timestamp":2621472899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUxMTAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8032, '2016-08-11 06:16:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:08.57125Z","gw_timestamp":2635836651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyMjAxMjI4MDA0MjmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8070, '2016-08-11 06:20:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:27.11731Z","gw_timestamp":2894378691,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDUyNjAxMjI4MDA0MjmzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8072, '2016-08-11 06:20:43', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1318,"f_cnt_down":2124,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:20:38.558557Z","gw_timestamp":1650225604,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADgwMDU0OTAxMjE2MDA0NTgJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8074, '2016-08-11 06:21:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:55.832813Z","gw_timestamp":2923105587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMzAxMjI4MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8076, '2016-08-11 06:21:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:10.205192Z","gw_timestamp":2937468411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDQ5MjAxMjI4MDA0MjmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8078, '2016-08-11 06:21:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:24.565435Z","gw_timestamp":2951831331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyOTAxMjI4MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8080, '2016-08-11 06:21:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:38.938966Z","gw_timestamp":2966194675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxNjAxMjI4MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8019, '2016-08-11 06:14:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:14:35.215313Z","gw_timestamp":2542473627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwMTAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8027, '2016-08-11 06:15:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:32.665413Z","gw_timestamp":2599927411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDQ4NDAxMjI4MDA0MjmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8029, '2016-08-11 06:15:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:15:47.029418Z","gw_timestamp":2614291067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUxMzAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8031, '2016-08-11 06:16:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:01.384936Z","gw_timestamp":2628654723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0OTAxMjI4MDA0Mjmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8033, '2016-08-11 06:16:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:16:15.746055Z","gw_timestamp":2643018587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MDAxMjI4MDA0MjmxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8035, '2016-08-11 06:16:31', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":837,"f_cnt_down":1502,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:51.554906Z","gw_timestamp":32912292,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACwwMDQ3NTAxMjMxMDA0MzALkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8085, '2016-08-11 06:22:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:14.827933Z","gw_timestamp":3002102875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxODAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8087, '2016-08-11 06:22:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:29.200775Z","gw_timestamp":3016465595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDQ5OTAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8089, '2016-08-11 06:22:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:43.563815Z","gw_timestamp":3030829139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU2MTAxMjI4MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8091, '2016-08-11 06:23:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:57.923686Z","gw_timestamp":3045191859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0OTAxMjI4MDA0Mjmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8093, '2016-08-11 06:23:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:12.28189Z","gw_timestamp":3059554683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyOTAxMjI4MDA0Mjmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8095, '2016-08-11 06:23:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:26.652315Z","gw_timestamp":3073918235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2MTAxMjI4MDA0MjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8097, '2016-08-11 06:23:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:41.007569Z","gw_timestamp":3088281051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxNzAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8099, '2016-08-11 06:24:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:55.374799Z","gw_timestamp":3102643771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1ODAxMjI4MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8057, '2016-08-11 06:19:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:18:53.751054Z","gw_timestamp":2801015139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUyNDAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8059, '2016-08-11 06:19:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:08.1113Z","gw_timestamp":2815378795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyMjAxMjI4MDA0MjmwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8061, '2016-08-11 06:19:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:22.496195Z","gw_timestamp":2829742451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUxMTAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8063, '2016-08-11 06:19:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:36.840802Z","gw_timestamp":2844106211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyMDAxMjI4MDA0Mjmy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8065, '2016-08-11 06:20:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:51.202185Z","gw_timestamp":2858469971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU3OTAxMjI4MDA0MjmvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8067, '2016-08-11 06:20:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:05.565459Z","gw_timestamp":2872833627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2MzAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8069, '2016-08-11 06:20:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:19.933863Z","gw_timestamp":2887197283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDQ4NDAxMjI4MDA0Mjmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8071, '2016-08-11 06:20:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:34.297933Z","gw_timestamp":2901559995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MDAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8073, '2016-08-11 06:20:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:41.470555Z","gw_timestamp":2908741723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0NzAxMjI4MDA0Mjmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8075, '2016-08-11 06:21:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:03.019562Z","gw_timestamp":2930287307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU1NjAxMjI4MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8077, '2016-08-11 06:21:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:17.378807Z","gw_timestamp":2944650027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0NzAxMjI4MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8079, '2016-08-11 06:21:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:31.745048Z","gw_timestamp":2959012747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB0wMDQ5NzAxMjI4MDA0Mjmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8081, '2016-08-11 06:21:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:46.113299Z","gw_timestamp":2973376499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDQ4ODAxMjI4MDA0MjmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8083, '2016-08-11 06:22:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:00.473559Z","gw_timestamp":2987740163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyMDAxMjI4MDA0Mjmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8060, '2016-08-11 06:19:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:15.287935Z","gw_timestamp":2822560731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDU3MjAxMjI4MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8062, '2016-08-11 06:19:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:29.651117Z","gw_timestamp":2836924275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwNzAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8064, '2016-08-11 06:19:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:44.021432Z","gw_timestamp":2851287931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MDAxMjI4MDA0Mjmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8066, '2016-08-11 06:20:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:19:58.388069Z","gw_timestamp":2865651803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUyNjAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8068, '2016-08-11 06:20:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:20:12.745038Z","gw_timestamp":2880015451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxMTAxMjI4MDA0Mjmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8112, '2016-08-11 06:25:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:28.733073Z","gw_timestamp":3196006795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwMTAxMjI4MDA0MjmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8114, '2016-08-11 06:25:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:43.103448Z","gw_timestamp":3210370459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0OTAxMjI4MDA0MjmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8116, '2016-08-11 06:26:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:57.469682Z","gw_timestamp":3224734211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0OTAxMjI4MDA0Mjmuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8118, '2016-08-11 06:26:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:11.824937Z","gw_timestamp":3239096931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8120, '2016-08-11 06:26:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:26.19165Z","gw_timestamp":3253460587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8122, '2016-08-11 06:26:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:40.563953Z","gw_timestamp":3267824139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDQ5NTAxMjI4MDA0MzCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8124, '2016-08-11 06:27:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:54.909825Z","gw_timestamp":3282186955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU2NTAxMjI4MDA0MzCu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8126, '2016-08-11 06:27:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:09.286576Z","gw_timestamp":3296550715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUyMzAxMjI4MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8128, '2016-08-11 06:27:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:23.637325Z","gw_timestamp":3310913227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwNzAxMjI4MDA0MzCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8082, '2016-08-11 06:22:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:21:53.310211Z","gw_timestamp":2980558323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0NzAxMjI4MDA0MjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8084, '2016-08-11 06:22:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:07.652311Z","gw_timestamp":2994921459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2NzAxMjI4MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8086, '2016-08-11 06:22:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:22.021513Z","gw_timestamp":3009284075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyOTAxMjI4MDA0Mjmymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8088, '2016-08-11 06:22:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:36.385814Z","gw_timestamp":3023647315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxMDAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8090, '2016-08-11 06:22:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:22:50.740057Z","gw_timestamp":3038010339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNTAxMjI4MDA0Mjmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8092, '2016-08-11 06:23:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:05.116625Z","gw_timestamp":3052373059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxMzAxMjI4MDA0MjmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8094, '2016-08-11 06:23:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:19.4799Z","gw_timestamp":3066736403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzNjAxMjI4MDA0MjmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8096, '2016-08-11 06:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:33.823923Z","gw_timestamp":3081099227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU3MDAxMjI4MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8098, '2016-08-11 06:23:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:23:48.191191Z","gw_timestamp":3095462667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDU0MDAxMjI4MDA0Mjmyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8100, '2016-08-11 06:24:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:02.558659Z","gw_timestamp":3109825603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUyNjAxMjI4MDA0Mjmw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8102, '2016-08-11 06:24:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:16.914718Z","gw_timestamp":3124189355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzNjAxMjI4MDA0Mjmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8104, '2016-08-11 06:24:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:24.119658Z","gw_timestamp":3131371075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0MDAxMjI4MDA0MjmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8106, '2016-08-11 06:24:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:38.458951Z","gw_timestamp":3145734843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU3NDAxMjI4MDA0Mjmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8108, '2016-08-11 06:25:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:00.030101Z","gw_timestamp":3167280427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB4wMDUxNTAxMjI4MDA0Mjmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8101, '2016-08-11 06:24:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:09.755707Z","gw_timestamp":3117007427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU3MDAxMjI4MDA0Mjmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8103, '2016-08-11 06:24:26', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":756,"f_cnt_down":1343,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:24:20.816953Z","gw_timestamp":1872484108,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:46.946441Z","gw_timestamp":508303828,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABIwMDU1OTAxMjE3MDA0NjQVAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8105, '2016-08-11 06:24:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:31.27606Z","gw_timestamp":3138553011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU1NjAxMjI4MDA0Mjmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8107, '2016-08-11 06:24:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:24:45.644509Z","gw_timestamp":3152916771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMzAxMjI4MDA0MjmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8109, '2016-08-11 06:25:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:07.185171Z","gw_timestamp":3174462251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzODAxMjI4MDA0Mjmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8111, '2016-08-11 06:25:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:21.561719Z","gw_timestamp":3188825803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzNjAxMjI4MDA0MjmzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8113, '2016-08-11 06:25:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:35.928087Z","gw_timestamp":3203188627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzODAxMjI4MDA0MjmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8115, '2016-08-11 06:25:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:50.304503Z","gw_timestamp":3217552387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwMzAxMjI4MDA0Mjmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8117, '2016-08-11 06:26:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:04.650321Z","gw_timestamp":3231915939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MjAxMjI4MDA0Mjmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8119, '2016-08-11 06:26:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:19.006706Z","gw_timestamp":3246278755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxMzAxMjI4MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8121, '2016-08-11 06:26:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:33.378017Z","gw_timestamp":3260642203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUwOTAxMjI4MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8123, '2016-08-11 06:26:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:26:47.74019Z","gw_timestamp":3275005131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwMzAxMjI4MDA0MzCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8125, '2016-08-11 06:27:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:02.097574Z","gw_timestamp":3289368787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MTAxMjI4MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8110, '2016-08-11 06:25:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:25:14.376812Z","gw_timestamp":3181643979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyNDAxMjI4MDA0MjmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8132, '2016-08-11 06:28:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:52.373946Z","gw_timestamp":3339639699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUzNjAxMjI4MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8134, '2016-08-11 06:28:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:06.737318Z","gw_timestamp":3354003355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDQ5MTAxMjI4MDA0MzCy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8136, '2016-08-11 06:28:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:21.095479Z","gw_timestamp":3368366075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUwNzAxMjI4MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8166, '2016-08-11 06:31:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:49.359329Z","gw_timestamp":3576634691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU1MjAxMjI4MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8192, '2016-08-11 06:34:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:41.738455Z","gw_timestamp":3748997099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MzAxMjI4MDA0MzCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8194, '2016-08-11 06:35:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:56.080847Z","gw_timestamp":3763360851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0MDAxMjI4MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8196, '2016-08-11 06:35:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:10.445846Z","gw_timestamp":3777724403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU2NzAxMjI4MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8198, '2016-08-11 06:35:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:24.818088Z","gw_timestamp":3792088163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwNzAxMjI4MDA0MzCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8200, '2016-08-11 06:35:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:39.174397Z","gw_timestamp":3806451819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0MjAxMjI4MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8202, '2016-08-11 06:35:56', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1319,"f_cnt_down":2125,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:35:49.393048Z","gw_timestamp":2561060532,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDUwNzAxMjE2MDA0NTgIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8204, '2016-08-11 06:36:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:00.726349Z","gw_timestamp":3827996363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDQ4NDAxMjI4MDA0MzCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8206, '2016-08-11 06:36:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:15.079975Z","gw_timestamp":3842359491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyMDAxMjI4MDA0MzCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8208, '2016-08-11 06:36:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:29.463114Z","gw_timestamp":3856721899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0NTAxMjI4MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8127, '2016-08-11 06:27:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:16.485713Z","gw_timestamp":3303731811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AB8wMDUwODAxMjI4MDA0MzCuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8131, '2016-08-11 06:27:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:45.1792Z","gw_timestamp":3332457771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzODAxMjI4MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8133, '2016-08-11 06:28:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:59.554633Z","gw_timestamp":3346821627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0MjAxMjI4MDA0MzCyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8135, '2016-08-11 06:28:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:13.907827Z","gw_timestamp":3361184971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwMzAxMjI4MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8137, '2016-08-11 06:28:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:28.280072Z","gw_timestamp":3375547171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0MDAxMjI4MDA0MzCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8139, '2016-08-11 06:28:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:42.645323Z","gw_timestamp":3389910723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzNjAxMjI4MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8141, '2016-08-11 06:29:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:57.009987Z","gw_timestamp":3404274379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8143, '2016-08-11 06:29:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:11.362029Z","gw_timestamp":3418637819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyMDAxMjI4MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8145, '2016-08-11 06:29:24', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":840,"f_cnt_down":1543,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:29:22.242161Z","gw_timestamp":2173909460,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHIwMDU4MDAxMjE4MDA0NjEOAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8147, '2016-08-11 06:29:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:25.723154Z","gw_timestamp":3433000331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUxNzAxMjI4MDA0MzC0Sw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8149, '2016-08-11 06:29:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:40.086565Z","gw_timestamp":3447363467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMjAxMjI4MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8151, '2016-08-11 06:30:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:54.449707Z","gw_timestamp":3461727123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwOTAxMjI4MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8153, '2016-08-11 06:30:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:08.840385Z","gw_timestamp":3476090779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0NTAxMjI4MDA0MzCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8155, '2016-08-11 06:30:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:23.182336Z","gw_timestamp":3490454011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU2MTAxMjI4MDA0MzCyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8129, '2016-08-11 06:27:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:30.821949Z","gw_timestamp":3318094843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMzAxMjI4MDA0MzCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8159, '2016-08-11 06:31:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:51.909829Z","gw_timestamp":3519180075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0NTAxMjI4MDA0MzCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8161, '2016-08-11 06:31:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:13.457837Z","gw_timestamp":3540725555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwODAxMjI4MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8163, '2016-08-11 06:31:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:27.820093Z","gw_timestamp":3555089211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxNzAxMjI4MDA0MzCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8165, '2016-08-11 06:31:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:42.177235Z","gw_timestamp":3569452763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0NzAxMjI4MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8167, '2016-08-11 06:32:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:56.544639Z","gw_timestamp":3583816515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwODAxMjI4MDA0MzCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8169, '2016-08-11 06:32:05', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":840,"f_cnt_down":1506,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:05:27.085242Z","gw_timestamp":968442628,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADowMDQ3MTAxMjMxMDA0MjkLcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8171, '2016-08-11 06:32:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:10.901844Z","gw_timestamp":3598180171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0MjAxMjI4MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8173, '2016-08-11 06:32:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:25.270434Z","gw_timestamp":3612543939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwOTAxMjI4MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8175, '2016-08-11 06:32:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:39.626467Z","gw_timestamp":3626907691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU1NjAxMjI4MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8177, '2016-08-11 06:33:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:54.000708Z","gw_timestamp":3641271355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU0NzAxMjI4MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8179, '2016-08-11 06:33:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:08.357971Z","gw_timestamp":3655635107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxMjAxMjI4MDA0MzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8181, '2016-08-11 06:33:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:22.720218Z","gw_timestamp":3669998659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0NzAxMjI4MDA0MzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8183, '2016-08-11 06:33:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:37.093666Z","gw_timestamp":3684362107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MTAxMjI4MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8130, '2016-08-11 06:27:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:27:38.009576Z","gw_timestamp":3325276043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUwNzAxMjI4MDA0MzCzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8138, '2016-08-11 06:28:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:35.453711Z","gw_timestamp":3382728795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUwMzAxMjI4MDA0MzCyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8140, '2016-08-11 06:28:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:28:49.822953Z","gw_timestamp":3397092651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxNTAxMjI4MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8142, '2016-08-11 06:29:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:04.183329Z","gw_timestamp":3411456203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU3MDAxMjI4MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8144, '2016-08-11 06:29:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:18.541586Z","gw_timestamp":3425818923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUzMzAxMjI4MDA0MzCymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8146, '2016-08-11 06:29:27', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":841,"f_cnt_down":1544,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:02:48.371666Z","gw_timestamp":809729052,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHIwMDU4MDAxMjE4MDA0NjEOAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8148, '2016-08-11 06:29:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:32.910963Z","gw_timestamp":3440181635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzNjAxMjI4MDA0MzCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8150, '2016-08-11 06:29:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:29:47.274833Z","gw_timestamp":3454545403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyNjAxMjI4MDA0MzCzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8152, '2016-08-11 06:30:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:01.639431Z","gw_timestamp":3468909051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU1NDAxMjI4MDA0MzCx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8154, '2016-08-11 06:30:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:15.993708Z","gw_timestamp":3483272707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxNTAxMjI4MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8156, '2016-08-11 06:30:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:30.362959Z","gw_timestamp":3497635419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0OTAxMjI4MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8158, '2016-08-11 06:30:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:44.736139Z","gw_timestamp":3511999083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8160, '2016-08-11 06:31:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:06.276085Z","gw_timestamp":3533543731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8162, '2016-08-11 06:31:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:20.633729Z","gw_timestamp":3547907283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMTAxMjI4MDA0MzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8157, '2016-08-11 06:30:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:30:37.546589Z","gw_timestamp":3504817251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxNTAxMjI4MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8187, '2016-08-11 06:34:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:05.812096Z","gw_timestamp":3713088891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDUxODAxMjI4MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8189, '2016-08-11 06:34:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:20.174412Z","gw_timestamp":3727452443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0MDAxMjI4MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8191, '2016-08-11 06:34:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:34.538721Z","gw_timestamp":3741815995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDQ5MTAxMjI4MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8193, '2016-08-11 06:34:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:48.907963Z","gw_timestamp":3756178923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU1MjAxMjI4MDA0MzCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8195, '2016-08-11 06:35:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:03.269462Z","gw_timestamp":3770542683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyNDAxMjI4MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8197, '2016-08-11 06:35:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:17.645353Z","gw_timestamp":3784906331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDQ5NzAxMjI4MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8199, '2016-08-11 06:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:31.999716Z","gw_timestamp":3799270091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU3MDAxMjI4MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8201, '2016-08-11 06:35:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:46.358083Z","gw_timestamp":3813632811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU1MjAxMjI4MDA0MzCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8203, '2016-08-11 06:36:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:35:53.554869Z","gw_timestamp":3820814635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMTAxMjI4MDA0MzCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8205, '2016-08-11 06:36:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:07.923471Z","gw_timestamp":3835178291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0NTAxMjI4MDA0MzCvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8207, '2016-08-11 06:36:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:22.259206Z","gw_timestamp":3849540907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzMzAxMjI4MDA0MzCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8237, '2016-08-11 06:40:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:57.708355Z","gw_timestamp":4064990315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwNzAxMjI4MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8239, '2016-08-11 06:40:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:12.071733Z","gw_timestamp":4079353131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0MzAxMjI4MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8164, '2016-08-11 06:31:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:31:35.012824Z","gw_timestamp":3562270939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUwODAxMjI4MDA0MzCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8168, '2016-08-11 06:32:02', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":839,"f_cnt_down":1505,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:32:00.955735Z","gw_timestamp":2332623108,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADowMDQ3MTAxMjMxMDA0MjkLcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8170, '2016-08-11 06:32:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:03.731221Z","gw_timestamp":3590998451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUzMjAxMjI4MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8172, '2016-08-11 06:32:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:18.084691Z","gw_timestamp":3605362107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUzMTAxMjI4MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8174, '2016-08-11 06:32:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:32.454837Z","gw_timestamp":3619725763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDQ5OTAxMjI4MDA0MzCtug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8176, '2016-08-11 06:32:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:32:46.822087Z","gw_timestamp":3634089515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUwODAxMjI4MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8178, '2016-08-11 06:33:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:01.205712Z","gw_timestamp":3648453171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0NzAxMjI4MDA0MzCumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8180, '2016-08-11 06:33:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:15.547592Z","gw_timestamp":3662816931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0MDAxMjI4MDA0MzCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8182, '2016-08-11 06:33:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:29.903961Z","gw_timestamp":3677180595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMjAxMjI4MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8184, '2016-08-11 06:33:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:44.273212Z","gw_timestamp":3691543203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU1NjAxMjI4MDA0MzCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8186, '2016-08-11 06:34:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:58.637466Z","gw_timestamp":3705907067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyMjAxMjI4MDA0MzCuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8188, '2016-08-11 06:34:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:13.002702Z","gw_timestamp":3720270723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMzAxMjI4MDA0MzCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8190, '2016-08-11 06:34:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:34:27.368243Z","gw_timestamp":3734634379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0MDAxMjI4MDA0MzCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8212, '2016-08-11 06:37:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:05.353102Z","gw_timestamp":3892631043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDQ5OTAxMjI4MDA0MzCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8185, '2016-08-11 06:34:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:33:51.479107Z","gw_timestamp":3698725139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMTAxMjI4MDA0MzCyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8209, '2016-08-11 06:36:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:36.629642Z","gw_timestamp":3863903731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDQ5NzAxMjI4MDA0MzCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8211, '2016-08-11 06:37:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:58.179478Z","gw_timestamp":3885449211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU1MjAxMjI4MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8213, '2016-08-11 06:37:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:12.542728Z","gw_timestamp":3899812555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxNjAxMjI4MDA0MzCyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8215, '2016-08-11 06:37:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:26.892976Z","gw_timestamp":3914175267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU2MTAxMjI4MDA0MzCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8217, '2016-08-11 06:37:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:41.262221Z","gw_timestamp":3928538403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyNTAxMjI4MDA0MzCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8219, '2016-08-11 06:38:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:55.618602Z","gw_timestamp":3942901747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8221, '2016-08-11 06:38:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:10.015433Z","gw_timestamp":3957264155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyMDAxMjI4MDA0MzCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8223, '2016-08-11 06:38:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:24.349099Z","gw_timestamp":3971627387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMDAxMjI4MDA0MzGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8225, '2016-08-11 06:38:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:38.7143Z","gw_timestamp":3985991155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU0NTAxMjI4MDA0MzCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8227, '2016-08-11 06:39:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:53.075602Z","gw_timestamp":4000354179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUxMTAxMjI4MDA0MzCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8229, '2016-08-11 06:39:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:07.438979Z","gw_timestamp":4014717419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyOTAxMjI4MDA0MzCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8231, '2016-08-11 06:39:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:21.797226Z","gw_timestamp":4029081075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0NTAxMjI4MDA0MzCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8233, '2016-08-11 06:39:37', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":757,"f_cnt_down":1344,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:39:31.595207Z","gw_timestamp":2783262796,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABcwMDUyNTAxMjE4MDA0NjMe0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8210, '2016-08-11 06:36:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:36:43.826106Z","gw_timestamp":3871085555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzODAxMjI4MDA0MzCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8216, '2016-08-11 06:37:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:34.084551Z","gw_timestamp":3921356475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MTAxMjI4MDA0MzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8246, '2016-08-11 06:41:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:02.363571Z","gw_timestamp":4129624051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyOTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8248, '2016-08-11 06:41:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:16.727652Z","gw_timestamp":4143986771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxMDAxMjI4MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8250, '2016-08-11 06:41:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:31.069875Z","gw_timestamp":4158350323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMjAxMjI4MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8252, '2016-08-11 06:41:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:45.440114Z","gw_timestamp":4172713035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDQ4MjAxMjI4MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8254, '2016-08-11 06:42:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:59.804237Z","gw_timestamp":4187076907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDUzNjAxMjI4MDA0MzGueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8256, '2016-08-11 06:42:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:14.15871Z","gw_timestamp":4201439619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzNDAxMjI4MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8258, '2016-08-11 06:42:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:28.549224Z","gw_timestamp":4215802235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzMjAxMjI4MDA0MzGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8260, '2016-08-11 06:42:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:42.8921Z","gw_timestamp":4230164843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxMjAxMjI4MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8262, '2016-08-11 06:43:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:57.255359Z","gw_timestamp":4244528603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8264, '2016-08-11 06:43:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:18.831515Z","gw_timestamp":4266073979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxNjAxMjI4MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8266, '2016-08-11 06:43:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:33.169759Z","gw_timestamp":4280436491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0OTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8268, '2016-08-11 06:43:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:47.519867Z","gw_timestamp":4294798587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU1NjAxMjI4MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8214, '2016-08-11 06:37:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:19.735269Z","gw_timestamp":3906993651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU2NzAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8218, '2016-08-11 06:37:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:37:48.440849Z","gw_timestamp":3935720131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0NTAxMjI4MDA0MzCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8220, '2016-08-11 06:38:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:02.801353Z","gw_timestamp":3950082843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxMTAxMjI4MDA0MzCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8222, '2016-08-11 06:38:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:17.175457Z","gw_timestamp":3964445459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDQ5NTAxMjI4MDA0MzCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8224, '2016-08-11 06:38:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:31.528728Z","gw_timestamp":3978809219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyMDAxMjI4MDA0MzCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8226, '2016-08-11 06:38:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:38:45.89496Z","gw_timestamp":3993172979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU1NDAxMjI4MDA0MzCvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8228, '2016-08-11 06:39:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:00.269381Z","gw_timestamp":4007535699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxMjAxMjI4MDA0MzCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8230, '2016-08-11 06:39:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:14.627538Z","gw_timestamp":4021899347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMjAxMjI4MDA0MzCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8232, '2016-08-11 06:39:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:28.990854Z","gw_timestamp":4036263003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMTAxMjI4MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8234, '2016-08-11 06:39:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:36.192859Z","gw_timestamp":4043444939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUwNTAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8236, '2016-08-11 06:39:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:50.558998Z","gw_timestamp":4057808587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMjAxMjI4MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8238, '2016-08-11 06:40:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:04.888986Z","gw_timestamp":4072172139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMjAxMjI4MDA0MzCvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8240, '2016-08-11 06:40:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:19.258359Z","gw_timestamp":4086534859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU0MDAxMjI4MDA0MzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8242, '2016-08-11 06:40:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:33.620605Z","gw_timestamp":4100898723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU1NjAxMjI4MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8235, '2016-08-11 06:39:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:39:43.344096Z","gw_timestamp":4050626763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACEwMDU4NjAxMjI4MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8243, '2016-08-11 06:40:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:40.808232Z","gw_timestamp":4108079819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUzMTAxMjI4MDA0MzGyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8245, '2016-08-11 06:41:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:55.158485Z","gw_timestamp":4122442227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MzAxMjI4MDA0MzGy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8247, '2016-08-11 06:41:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:09.529733Z","gw_timestamp":4136805779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDQ5OTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8249, '2016-08-11 06:41:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:23.896104Z","gw_timestamp":4151168491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0OTAxMjI4MDA0MzGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8251, '2016-08-11 06:41:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:38.252292Z","gw_timestamp":4165532043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzMzAxMjI4MDA0MzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8253, '2016-08-11 06:42:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:41:52.630893Z","gw_timestamp":4179894971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUxNjAxMjI4MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8255, '2016-08-11 06:42:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:06.973855Z","gw_timestamp":4194258619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxMDAxMjI4MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8279, '2016-08-11 06:45:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:59.343221Z","gw_timestamp":71648099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyOTAxMjI4MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8281, '2016-08-11 06:45:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:13.719707Z","gw_timestamp":86011443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0OTAxMjI4MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8283, '2016-08-11 06:45:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:28.064875Z","gw_timestamp":100375203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1MjAxMjI4MDA0MzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8285, '2016-08-11 06:45:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:42.424989Z","gw_timestamp":114738755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUwMTAxMjI4MDA0MzGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8287, '2016-08-11 06:46:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:56.791579Z","gw_timestamp":129102619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxNTAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8289, '2016-08-11 06:46:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:11.158615Z","gw_timestamp":143466275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyNTAxMjI4MDA0MzGuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8241, '2016-08-11 06:40:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:26.444175Z","gw_timestamp":4093716787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxNTAxMjI4MDA0MzCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8257, '2016-08-11 06:42:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:21.345225Z","gw_timestamp":4208620715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUyMDAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8259, '2016-08-11 06:42:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:35.707491Z","gw_timestamp":4222983643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU0NTAxMjI4MDA0MzGyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8261, '2016-08-11 06:42:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:42:50.07487Z","gw_timestamp":4237346779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxODAxMjI4MDA0MzGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8263, '2016-08-11 06:43:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:04.426073Z","gw_timestamp":4251710539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwOTAxMjI4MDA0MzGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8265, '2016-08-11 06:43:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:25.977966Z","gw_timestamp":4273254971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMjAxMjI4MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8267, '2016-08-11 06:43:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:40.331235Z","gw_timestamp":4287617587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMzAxMjI4MDA0MzGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8269, '2016-08-11 06:44:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:43:54.700489Z","gw_timestamp":7013115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU3MjAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8271, '2016-08-11 06:44:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:09.087956Z","gw_timestamp":21375939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyNzAxMjI4MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8273, '2016-08-11 06:44:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:23.440263Z","gw_timestamp":35739491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzMzAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8275, '2016-08-11 06:44:38', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":841,"f_cnt_down":1545,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:44:33.018509Z","gw_timestamp":3084686244,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:17:59.148049Z","gw_timestamp":1720505436,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGAwMDU2MjAxMjE4MDA0NjIZAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8277, '2016-08-11 06:44:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:44.966119Z","gw_timestamp":57285075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwNTAxMjI4MDA0MzGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8293, '2016-08-11 06:46:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:39.897393Z","gw_timestamp":172193691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU1NDAxMjI4MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8244, '2016-08-11 06:40:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:40:47.977861Z","gw_timestamp":4115261235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8272, '2016-08-11 06:44:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:16.246364Z","gw_timestamp":28557555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACAwMDU0MzAxMjI4MDA0MzGuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8274, '2016-08-11 06:44:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:30.61162Z","gw_timestamp":42921315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDQ4ODAxMjI4MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8276, '2016-08-11 06:44:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:37.786231Z","gw_timestamp":50103251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMjAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8278, '2016-08-11 06:45:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:52.149605Z","gw_timestamp":64466899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUwNTAxMjI4MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8280, '2016-08-11 06:45:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:06.516867Z","gw_timestamp":78829619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDQ5NzAxMjI4MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8282, '2016-08-11 06:45:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:20.886401Z","gw_timestamp":93193275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyNDAxMjI4MDA0MzGzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8284, '2016-08-11 06:45:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:35.242377Z","gw_timestamp":107556923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUzNjAxMjI4MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8286, '2016-08-11 06:46:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:45:49.609962Z","gw_timestamp":121920683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyOTAxMjI4MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8288, '2016-08-11 06:46:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:03.990249Z","gw_timestamp":136284443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxMDAxMjI4MDA0MzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8290, '2016-08-11 06:46:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:18.333248Z","gw_timestamp":150647995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxNjAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8292, '2016-08-11 06:46:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:32.697481Z","gw_timestamp":165011755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUyNTAxMjI4MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8322, '2016-08-11 06:50:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:15.319201Z","gw_timestamp":387641011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxNDAxMjI4MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8324, '2016-08-11 06:50:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:29.685631Z","gw_timestamp":402003835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxMDAxMjI4MDA0MzGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8270, '2016-08-11 06:44:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:44:01.882123Z","gw_timestamp":14194739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDQ5MTAxMjI4MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8294, '2016-08-11 06:46:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:47.0626Z","gw_timestamp":179375619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyMDAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8296, '2016-08-11 06:47:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:01.442311Z","gw_timestamp":193739171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU1NjAxMjI4MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8298, '2016-08-11 06:47:25', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":840,"f_cnt_down":1507,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:47:11.817858Z","gw_timestamp":3243485668,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC4wMDQ4MDAxMjMxMDA0MzMK8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8300, '2016-08-11 06:47:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:30.151624Z","gw_timestamp":222466067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1MjAxMjI4MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8302, '2016-08-11 06:47:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:44.521129Z","gw_timestamp":236828467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUxNjAxMjI4MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8304, '2016-08-11 06:48:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:58.878124Z","gw_timestamp":251190979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxNjAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8306, '2016-08-11 06:48:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:13.23963Z","gw_timestamp":265554531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUxNTAxMjI4MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8308, '2016-08-11 06:48:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:27.613318Z","gw_timestamp":279916939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDQ5MTAxMjI4MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8310, '2016-08-11 06:48:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:41.959002Z","gw_timestamp":294280067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDU1NDAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8312, '2016-08-11 06:49:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:56.323495Z","gw_timestamp":308643723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0NzAxMjI4MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8314, '2016-08-11 06:49:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:10.695749Z","gw_timestamp":323007067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU2MTAxMjI4MDA0MzGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8316, '2016-08-11 06:49:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:32.241785Z","gw_timestamp":344550979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyNDAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8318, '2016-08-11 06:49:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:46.614883Z","gw_timestamp":358914635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUzODAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8291, '2016-08-11 06:46:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:25.517875Z","gw_timestamp":157829931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDU1NDAxMjI4MDA0MzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8325, '2016-08-11 06:50:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:36.871261Z","gw_timestamp":409185659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxMDAxMjI4MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8327, '2016-08-11 06:51:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:51.238442Z","gw_timestamp":423549315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUwMzAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8329, '2016-08-11 06:51:08', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1320,"f_cnt_down":2126,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:51:00.22075Z","gw_timestamp":3471888668,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEIwMDU2MzAxMjE2MDA0NTkQsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8331, '2016-08-11 06:51:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:12.779387Z","gw_timestamp":445093755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxNjAxMjI4MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8333, '2016-08-11 06:51:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:34.333255Z","gw_timestamp":466639339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzODAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8335, '2016-08-11 06:51:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:48.70463Z","gw_timestamp":481002995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMTAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8337, '2016-08-11 06:52:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:03.051874Z","gw_timestamp":495365715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyMDAxMjI4MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8339, '2016-08-11 06:52:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:17.420596Z","gw_timestamp":509729475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU1ODAxMjI4MDA0MzGuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8386, '2016-08-11 06:58:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:02.145913Z","gw_timestamp":854451355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyNTAxMjI4MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8388, '2016-08-11 06:58:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:16.501132Z","gw_timestamp":868814915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUzNDAxMjI4MDA0MzGyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8390, '2016-08-11 06:58:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:30.865783Z","gw_timestamp":883178563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDQ5NzAxMjI4MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8392, '2016-08-11 06:58:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:45.248917Z","gw_timestamp":897542019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUzMjAxMjI4MDA0MzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8394, '2016-08-11 06:59:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:59.59091Z","gw_timestamp":911904627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDU2MTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8295, '2016-08-11 06:47:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:46:54.245522Z","gw_timestamp":186557339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMjAxMjI4MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8297, '2016-08-11 06:47:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:08.612745Z","gw_timestamp":200920995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0NTAxMjI4MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8299, '2016-08-11 06:47:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:22.963995Z","gw_timestamp":215284651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyMDAxMjI4MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8301, '2016-08-11 06:47:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:37.336506Z","gw_timestamp":229647267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUzMjAxMjI4MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8303, '2016-08-11 06:48:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:47:51.701854Z","gw_timestamp":244009987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU2MTAxMjI4MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8305, '2016-08-11 06:48:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:06.059743Z","gw_timestamp":258372803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyOTAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8307, '2016-08-11 06:48:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:20.417119Z","gw_timestamp":272735523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU0MzAxMjI4MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8309, '2016-08-11 06:48:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:34.779327Z","gw_timestamp":287098139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUzODAxMjI4MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8311, '2016-08-11 06:48:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:48:49.162878Z","gw_timestamp":301461891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUzODAxMjI4MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8313, '2016-08-11 06:49:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:03.535342Z","gw_timestamp":315825651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0MDAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8315, '2016-08-11 06:49:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:25.052883Z","gw_timestamp":337369787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0NTAxMjI4MDA0MzGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8317, '2016-08-11 06:49:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:39.423998Z","gw_timestamp":351732707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUwMzAxMjI4MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8319, '2016-08-11 06:50:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:49:53.815453Z","gw_timestamp":366096571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU1MjAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8321, '2016-08-11 06:50:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:08.157894Z","gw_timestamp":380459915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxMDAxMjI4MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8320, '2016-08-11 06:50:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:00.969005Z","gw_timestamp":373278403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDU0MzAxMjI4MDA0MzGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8328, '2016-08-11 06:51:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:58.413715Z","gw_timestamp":430731043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDU0NzAxMjI4MDA0MzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8369, '2016-08-11 06:56:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:00.037893Z","gw_timestamp":732361755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU1ODAxMjI4MDA0MzGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8371, '2016-08-11 06:56:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:14.402274Z","gw_timestamp":746725403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyMDAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8373, '2016-08-11 06:56:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:28.781932Z","gw_timestamp":761089163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1NDAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8375, '2016-08-11 06:56:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:43.134755Z","gw_timestamp":775452819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyNzAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8377, '2016-08-11 06:57:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:57.491022Z","gw_timestamp":789816475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyOTAxMjI4MDA0MzGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8379, '2016-08-11 06:57:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:11.865403Z","gw_timestamp":804179291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0NzAxMjI4MDA0MzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8381, '2016-08-11 06:57:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:26.228631Z","gw_timestamp":818542955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDU1MjAxMjI4MDA0MzGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8383, '2016-08-11 06:57:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:40.605406Z","gw_timestamp":832906603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyMDAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8385, '2016-08-11 06:58:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:54.980672Z","gw_timestamp":847270363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8387, '2016-08-11 06:58:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:09.308397Z","gw_timestamp":861632979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU2NTAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8389, '2016-08-11 06:58:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:23.672653Z","gw_timestamp":875996739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1NDAxMjI4MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8391, '2016-08-11 06:58:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:38.044014Z","gw_timestamp":890360499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1NDAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8323, '2016-08-11 06:50:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:22.503007Z","gw_timestamp":394822003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyOTAxMjI4MDA0MzGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8341, '2016-08-11 06:52:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:31.77446Z","gw_timestamp":524093235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUzODAxMjI4MDA0MzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8343, '2016-08-11 06:52:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:46.138765Z","gw_timestamp":538455851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU0OTAxMjI4MDA0MzGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8345, '2016-08-11 06:53:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:00.513526Z","gw_timestamp":552819507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxODAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8347, '2016-08-11 06:53:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:14.863256Z","gw_timestamp":567183267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxNjAxMjI4MDA0MzGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8349, '2016-08-11 06:53:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:36.438417Z","gw_timestamp":588728531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMDAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8351, '2016-08-11 06:54:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:50.772387Z","gw_timestamp":603091251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8353, '2016-08-11 06:54:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:05.140769Z","gw_timestamp":617454283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyMzAxMjI4MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8355, '2016-08-11 06:54:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:19.499016Z","gw_timestamp":631817523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU0MDAxMjI4MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8357, '2016-08-11 06:54:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:33.862267Z","gw_timestamp":646180547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDUxNjAxMjI4MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8359, '2016-08-11 06:54:50', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":758,"f_cnt_down":1345,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:54:42.379804Z","gw_timestamp":3694047828,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":-6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABMwMDUxNDAxMjE5MDA0NzAL4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8361, '2016-08-11 06:55:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:55.402147Z","gw_timestamp":667726139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU2MzAxMjI4MDA0MzGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8363, '2016-08-11 06:55:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:09.775518Z","gw_timestamp":682089891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU1MjAxMjI4MDA0MzGueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8365, '2016-08-11 06:55:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:24.142891Z","gw_timestamp":696452619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0OTAxMjI4MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8326, '2016-08-11 06:50:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:50:44.081086Z","gw_timestamp":416367387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyMzAxMjI4MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8330, '2016-08-11 06:51:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:05.590762Z","gw_timestamp":437912035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACIwMDU3NzAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8332, '2016-08-11 06:51:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:27.139635Z","gw_timestamp":459457619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUwODAxMjI4MDA0MzGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8334, '2016-08-11 06:51:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:41.513995Z","gw_timestamp":473821275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUxNjAxMjI4MDA0MzGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8336, '2016-08-11 06:52:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:51:55.867263Z","gw_timestamp":488184099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUyMzAxMjI4MDA0MzGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8338, '2016-08-11 06:52:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:10.22458Z","gw_timestamp":502547651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxNjAxMjI4MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8340, '2016-08-11 06:52:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:24.590761Z","gw_timestamp":516911299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU1NjAxMjI4MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8342, '2016-08-11 06:52:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:38.987125Z","gw_timestamp":531274851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMDAxMjI4MDA0MzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8344, '2016-08-11 06:53:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:52:53.318383Z","gw_timestamp":545637571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0MDAxMjI4MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8346, '2016-08-11 06:53:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:07.691644Z","gw_timestamp":560001435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUwMTAxMjI4MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8348, '2016-08-11 06:53:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:29.227515Z","gw_timestamp":581547019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0NzAxMjI4MDA0MzGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8350, '2016-08-11 06:53:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:43.597767Z","gw_timestamp":595909635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0NzAxMjI4MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8352, '2016-08-11 06:54:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:53:57.959383Z","gw_timestamp":610272355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUyMjAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8354, '2016-08-11 06:54:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:12.340143Z","gw_timestamp":624636115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0OTAxMjI4MDA0MzGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8356, '2016-08-11 06:54:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:26.698902Z","gw_timestamp":638998723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzMzAxMjI4MDA0MzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8358, '2016-08-11 06:54:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:41.050883Z","gw_timestamp":653362483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUzNjAxMjI4MDA0MzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8360, '2016-08-11 06:54:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:54:48.226512Z","gw_timestamp":660544203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU3NzAxMjI4MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8362, '2016-08-11 06:55:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:02.661136Z","gw_timestamp":674908067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxNDAxMjI4MDA0MzGu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8364, '2016-08-11 06:55:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:16.960145Z","gw_timestamp":689270995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxNjAxMjI4MDA0MzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8366, '2016-08-11 06:55:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:38.505147Z","gw_timestamp":710816267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACMwMDUzODAxMjI4MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8368, '2016-08-11 06:56:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:52.865909Z","gw_timestamp":725179819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0MjAxMjI4MDA0MzGu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8370, '2016-08-11 06:56:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:07.223644Z","gw_timestamp":739543683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUyMzAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8372, '2016-08-11 06:56:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:21.593899Z","gw_timestamp":753907235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU0MDAxMjI4MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8374, '2016-08-11 06:56:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:35.956151Z","gw_timestamp":768271099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDQ5OTAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8376, '2016-08-11 06:56:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:56:50.312344Z","gw_timestamp":782634651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUxMjAxMjI4MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8378, '2016-08-11 06:57:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:04.69824Z","gw_timestamp":796997571,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU3MjAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8380, '2016-08-11 06:57:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:19.041016Z","gw_timestamp":811361123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDU1NjAxMjI4MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8382, '2016-08-11 06:57:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:33.403223Z","gw_timestamp":825724883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDQ5NzAxMjI4MDA0MzGy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8367, '2016-08-11 06:55:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:55:31.310393Z","gw_timestamp":703634443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUyMDAxMjI4MDA0MzGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8395, '2016-08-11 06:59:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:06.760932Z","gw_timestamp":919085931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzNjAxMjI4MDA0MzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8397, '2016-08-11 06:59:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:21.157045Z","gw_timestamp":933449587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUyOTAxMjI4MDA0MzGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8399, '2016-08-11 06:59:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:35.492157Z","gw_timestamp":947813243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUxNjAxMjI4MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8401, '2016-08-11 06:59:45', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":842,"f_cnt_down":1546,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:33:09.930706Z","gw_timestamp":2631288092,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-114,"snr":-6.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMYwMDU5MTAxMjE4MDA0NjkIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8403, '2016-08-11 06:59:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:49.852401Z","gw_timestamp":962175963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyNTAxMjI4MDA0MzGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8405, '2016-08-11 07:00:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:04.223638Z","gw_timestamp":976538475,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDUyMzAxMjI4MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8427, '2016-08-11 07:02:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:42.218915Z","gw_timestamp":1134534299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1NjAxMjI4MDA0MzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8429, '2016-08-11 07:03:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:56.585015Z","gw_timestamp":1148898059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUxODAxMjI4MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8431, '2016-08-11 07:03:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:10.953556Z","gw_timestamp":1163261299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUwODAxMjI4MDA0MzGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8433, '2016-08-11 07:03:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:25.297517Z","gw_timestamp":1177623387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUzNDAxMjI4MDA0MzGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8435, '2016-08-11 07:03:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:46.865632Z","gw_timestamp":1199168979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxODAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8437, '2016-08-11 07:04:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:01.205653Z","gw_timestamp":1213532523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxMDAxMjI4MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8439, '2016-08-11 07:04:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:15.56804Z","gw_timestamp":1227895243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDQ5NTAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8384, '2016-08-11 06:57:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:57:47.770507Z","gw_timestamp":840088539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUyMDAxMjI4MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8398, '2016-08-11 06:59:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:28.309401Z","gw_timestamp":940631515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1NDAxMjI4MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8400, '2016-08-11 06:59:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:42.674763Z","gw_timestamp":954994443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUyOTAxMjI4MDA0MzGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8402, '2016-08-11 06:59:52', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":843,"f_cnt_down":1547,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T06:59:43.801123Z","gw_timestamp":3995469292,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMYwMDU5MTAxMjE4MDA0NjkIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8404, '2016-08-11 07:00:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:57.049279Z","gw_timestamp":969357267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxNjAxMjI4MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8406, '2016-08-11 07:00:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:11.396277Z","gw_timestamp":983719467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUxNjAxMjI4MDA0MzGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8408, '2016-08-11 07:00:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:25.760524Z","gw_timestamp":998083323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUzODAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8410, '2016-08-11 07:00:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:40.126777Z","gw_timestamp":1012446363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDUwMzAxMjI4MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8412, '2016-08-11 07:01:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:54.512274Z","gw_timestamp":1026808555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyOTAxMjI4MDA0MzGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8414, '2016-08-11 07:01:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:08.845531Z","gw_timestamp":1041172315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUyNTAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8416, '2016-08-11 07:01:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:23.215661Z","gw_timestamp":1055535555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDU0NTAxMjI4MDA0MzGyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8418, '2016-08-11 07:01:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:44.758526Z","gw_timestamp":1077079467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU0OTAxMjI4MDA0MzGx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8420, '2016-08-11 07:02:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:59.122909Z","gw_timestamp":1091443227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUxNjAxMjI4MDA0MzGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8422, '2016-08-11 07:02:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:13.487147Z","gw_timestamp":1105806883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyMDAxMjI4MDA0MzGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8393, '2016-08-11 06:59:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:58:52.407262Z","gw_timestamp":904723003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUxNjAxMjI4MDA0MzGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8426, '2016-08-11 07:02:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:35.039664Z","gw_timestamp":1127352467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDQ5NzAxMjI4MDA0MzGuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8428, '2016-08-11 07:02:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:49.387286Z","gw_timestamp":1141716019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxODAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8430, '2016-08-11 07:03:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:03.761167Z","gw_timestamp":1156079883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1MjAxMjI4MDA0MzGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8436, '2016-08-11 07:04:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:54.033229Z","gw_timestamp":1206350803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUzMjAxMjI4MDA0MzGuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8446, '2016-08-11 07:05:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:05:13.023553Z","gw_timestamp":1285347155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUxNDAxMjI4MDA0MzKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8448, '2016-08-11 07:05:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:05:27.38641Z","gw_timestamp":1299710915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU3MDAxMjI4MDA0MzKu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8450, '2016-08-11 07:05:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:05:48.925484Z","gw_timestamp":1321255251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxMjAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8452, '2016-08-11 07:06:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:03.30254Z","gw_timestamp":1335617971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUxODAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8454, '2016-08-11 07:06:19', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1321,"f_cnt_down":2127,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:06:11.049355Z","gw_timestamp":87750412,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AK4wMDUzNTAxMjE2MDA0NjAIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8456, '2016-08-11 07:06:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:24.834613Z","gw_timestamp":1357163555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUxMjAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8458, '2016-08-11 07:06:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:39.19984Z","gw_timestamp":1371527211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUxMjAxMjI4MDA0MzGy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8460, '2016-08-11 07:07:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:53.55905Z","gw_timestamp":1385889931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU1NDAxMjI4MDA0MzGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8462, '2016-08-11 07:07:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:07.93429Z","gw_timestamp":1400253683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU0OTAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8396, '2016-08-11 06:59:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T06:59:13.949155Z","gw_timestamp":926267763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUzMjAxMjI4MDA0MzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8407, '2016-08-11 07:00:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:18.589172Z","gw_timestamp":990901395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU3MjAxMjI4MDA0MzGvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8409, '2016-08-11 07:00:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:32.951685Z","gw_timestamp":1005265051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyMDAxMjI4MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8411, '2016-08-11 07:00:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:00:47.302532Z","gw_timestamp":1019627563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUwNTAxMjI4MDA0MzGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8413, '2016-08-11 07:01:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:01.673236Z","gw_timestamp":1033990491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUzNjAxMjI4MDA0MzGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8415, '2016-08-11 07:01:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:16.035011Z","gw_timestamp":1048354139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU2MTAxMjI4MDA0MzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8417, '2016-08-11 07:01:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:30.412395Z","gw_timestamp":1062716643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1ODAxMjI4MDA0MzGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8419, '2016-08-11 07:02:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:01:51.946267Z","gw_timestamp":1084261403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDQ5OTAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8421, '2016-08-11 07:02:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:06.30802Z","gw_timestamp":1098624955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU1MjAxMjI4MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8423, '2016-08-11 07:02:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:20.686069Z","gw_timestamp":1112988715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU0NzAxMjI4MDA0MzGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8425, '2016-08-11 07:02:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:02:27.845311Z","gw_timestamp":1120170643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDUzODAxMjI4MDA0MzGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8443, '2016-08-11 07:04:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:44.296921Z","gw_timestamp":1256621723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACQwMDU1NDAxMjI4MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8445, '2016-08-11 07:05:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:58.682902Z","gw_timestamp":1270984435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDU2NzAxMjI4MDA0MzKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8447, '2016-08-11 07:05:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:05:20.21279Z","gw_timestamp":1292528979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUyOTAxMjI4MDA0MzKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8424, '2016-08-11 07:02:30', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":841,"f_cnt_down":1508,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:02:22.666161Z","gw_timestamp":4154334404,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Aq0wMDQ4NDAxMjMwMDA0NDAPcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8432, '2016-08-11 07:03:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:18.118914Z","gw_timestamp":1170442395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUwODAxMjI4MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8434, '2016-08-11 07:03:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:03:32.488145Z","gw_timestamp":1184805219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUyNTAxMjI4MDA0MzGt+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8438, '2016-08-11 07:04:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:08.397417Z","gw_timestamp":1220714147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUzMjAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8440, '2016-08-11 07:04:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:22.76903Z","gw_timestamp":1235076235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACcwMDUxMjAxMjI4MDA0MzGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8442, '2016-08-11 07:04:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:37.110185Z","gw_timestamp":1249439787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUwODAxMjI4MDA0MzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8444, '2016-08-11 07:05:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:51.487158Z","gw_timestamp":1263803235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU3MDAxMjI4MDA0MzGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8466, '2016-08-11 07:07:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:36.657923Z","gw_timestamp":1428980059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDU1MjAxMjI4MDA0MzGtig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8468, '2016-08-11 07:07:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:51.026183Z","gw_timestamp":1443343819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU1NDAxMjI4MDA0MzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8470, '2016-08-11 07:08:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:05.395916Z","gw_timestamp":1457707467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDQ5MTAxMjI4MDA0MzGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8472, '2016-08-11 07:08:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:19.759793Z","gw_timestamp":1472071131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDUyNTAxMjI4MDA0MzGxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8474, '2016-08-11 07:08:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:34.105916Z","gw_timestamp":1486433947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUwODAxMjI4MDA0MzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8476, '2016-08-11 07:08:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:48.473293Z","gw_timestamp":1500797499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUyMzAxMjI4MDA0MzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8478, '2016-08-11 07:09:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:02.829536Z","gw_timestamp":1515160739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU0NTAxMjI4MDA0MzKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8441, '2016-08-11 07:04:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:04:29.933288Z","gw_timestamp":1242258067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUyNTAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8451, '2016-08-11 07:06:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:05:56.108915Z","gw_timestamp":1328436243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACUwMDU0NzAxMjI4MDA0MzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8453, '2016-08-11 07:06:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:10.472164Z","gw_timestamp":1342799899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU1MjAxMjI4MDA0MzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8455, '2016-08-11 07:06:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:17.654781Z","gw_timestamp":1349981627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUxODAxMjI4MDA0MzGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8457, '2016-08-11 07:06:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:32.017168Z","gw_timestamp":1364345379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDUzNDAxMjI4MDA0MzGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8459, '2016-08-11 07:06:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:06:46.384513Z","gw_timestamp":1378708203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU2MzAxMjI4MDA0MzGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8461, '2016-08-11 07:07:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:00.746675Z","gw_timestamp":1393071859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACYwMDUwMTAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8463, '2016-08-11 07:07:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:15.107806Z","gw_timestamp":1407435411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUzNjAxMjI4MDA0MzGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8465, '2016-08-11 07:07:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:29.483562Z","gw_timestamp":1421798131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU1MjAxMjI4MDA0MzGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8467, '2016-08-11 07:07:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:43.831542Z","gw_timestamp":1436161987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUzNDAxMjI4MDA0MzGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8469, '2016-08-11 07:08:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:58.206786Z","gw_timestamp":1450525539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDUwMzAxMjI4MDA0MzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8471, '2016-08-11 07:08:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:12.564029Z","gw_timestamp":1464889299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDU0NTAxMjI4MDA0MzGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8473, '2016-08-11 07:08:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:26.928295Z","gw_timestamp":1479252955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUxNDAxMjI4MDA0MzGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8475, '2016-08-11 07:08:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:41.286805Z","gw_timestamp":1493615779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUyNzAxMjI4MDA0MzGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8449, '2016-08-11 07:05:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:05:34.567427Z","gw_timestamp":1306892539,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUzMzAxMjI4MDA0MzKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8479, '2016-08-11 07:09:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:10.014745Z","gw_timestamp":1522341947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU1MjAxMjI4MDA0MzKueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8481, '2016-08-11 07:09:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:24.386424Z","gw_timestamp":1536705803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUzNjAxMjI4MDA0MzKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8483, '2016-08-11 07:09:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:38.74367Z","gw_timestamp":1551069459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUyNzAxMjI4MDA0MzKxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8485, '2016-08-11 07:09:55', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":759,"f_cnt_down":1346,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:09:53.160392Z","gw_timestamp":309861556,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:44.322706Z","gw_timestamp":3240647388,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACEwMDUzOTAxMjE4MDA0NzgIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8487, '2016-08-11 07:10:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:00.292663Z","gw_timestamp":1572614107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUxNDAxMjI4MDA0MzKyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8489, '2016-08-11 07:10:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:14.649932Z","gw_timestamp":1586977459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0MDAxMjI4MDA0MzOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8491, '2016-08-11 07:10:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7726,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:29.01918Z","gw_timestamp":1601340483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDUzODAxMjI4MDA0MzOy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8493, '2016-08-11 07:10:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:43.389701Z","gw_timestamp":1615704131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUzNDAxMjI4MDA0MzOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8495, '2016-08-11 07:11:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:57.747794Z","gw_timestamp":1630067475,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU0OTAxMjI4MDA0MzOwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8525, '2016-08-11 07:14:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:40.363562Z","gw_timestamp":1852696107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyMzAxMjI4MDA0NDWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8527, '2016-08-11 07:14:56', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":843,"f_cnt_down":1548,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:14:54.576811Z","gw_timestamp":611278116,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AOcwMDU4NzAxMjE4MDA0NzYKEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8529, '2016-08-11 07:15:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:01.948809Z","gw_timestamp":1874241595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDU2NzAxMjI4MDA0NDawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8464, '2016-08-11 07:07:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:07:22.292549Z","gw_timestamp":1414616403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACowMDU3MjAxMjI4MDA0MzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8482, '2016-08-11 07:09:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:31.568281Z","gw_timestamp":1543887531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUyOTAxMjI4MDA0MzKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8484, '2016-08-11 07:09:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:45.926561Z","gw_timestamp":1558251395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDUzMjAxMjI4MDA0MzKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8486, '2016-08-11 07:10:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7721,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:53.106055Z","gw_timestamp":1565433115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUxMDAxMjI4MDA0MzKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8504, '2016-08-11 07:12:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:02.381555Z","gw_timestamp":1694701427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU0OTAxMjI4MDA0MzawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8506, '2016-08-11 07:12:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:16.744055Z","gw_timestamp":1709064147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUzNjAxMjI4MDA0Mziwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8528, '2016-08-11 07:15:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:54.731749Z","gw_timestamp":1867059867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDQ4MjAxMjI4MDA0NDayiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8530, '2016-08-11 07:15:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:09.092068Z","gw_timestamp":1881423523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU1NDAxMjI4MDA0NDauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8532, '2016-08-11 07:15:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:23.486252Z","gw_timestamp":1895786659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxNjAxMjI4MDA0NDazKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8534, '2016-08-11 07:15:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:37.821772Z","gw_timestamp":1910149899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUyMzAxMjI4MDA0NDewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8536, '2016-08-11 07:16:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:52.177773Z","gw_timestamp":1924513547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU1NjAxMjI4MDA0NDeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8538, '2016-08-11 07:16:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:06.538976Z","gw_timestamp":1938877411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU1MjAxMjI4MDA0NDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8540, '2016-08-11 07:16:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:28.079799Z","gw_timestamp":1960421859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUxODAxMjI4MDA0NDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8542, '2016-08-11 07:16:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:42.445176Z","gw_timestamp":1974785507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUxMDAxMjI4MDA0NDmvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8477, '2016-08-11 07:08:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:08:55.668331Z","gw_timestamp":1507979435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDQ4MjAxMjI4MDA0MzKvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8497, '2016-08-11 07:11:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:12.107058Z","gw_timestamp":1644430099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDU0MzAxMjI4MDA0MzOy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8499, '2016-08-11 07:11:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:26.471307Z","gw_timestamp":1658793123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUzNjAxMjI4MDA0MzWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8501, '2016-08-11 07:11:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:40.840371Z","gw_timestamp":1673156875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUxNDAxMjI4MDA0MzWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8503, '2016-08-11 07:12:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:55.199805Z","gw_timestamp":1687520331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUzNjAxMjI4MDA0Mzax2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8505, '2016-08-11 07:12:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:09.555103Z","gw_timestamp":1701882627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU2NTAxMjI4MDA0Mzexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8507, '2016-08-11 07:12:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:23.913426Z","gw_timestamp":1716246075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUxNjAxMjI4MDA0Mziw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8509, '2016-08-11 07:12:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:38.282674Z","gw_timestamp":1730609731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0MzAxMjI4MDA0NDCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8511, '2016-08-11 07:13:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:52.648932Z","gw_timestamp":1744972451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU2NzAxMjI4MDA0NDCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8513, '2016-08-11 07:13:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:07.015372Z","gw_timestamp":1759336099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxMjAxMjI4MDA0NDGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8515, '2016-08-11 07:13:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:21.37462Z","gw_timestamp":1773699755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUwMzAxMjI4MDA0NDKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8517, '2016-08-11 07:13:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:35.74613Z","gw_timestamp":1788063099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0MDAxMjI4MDA0NDKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8519, '2016-08-11 07:14:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:57.279531Z","gw_timestamp":1809606915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxNjAxMjI4MDA0NDOxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8521, '2016-08-11 07:14:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:11.648213Z","gw_timestamp":1823969635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU1ODAxMjI4MDA0NDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8480, '2016-08-11 07:09:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:09:17.192747Z","gw_timestamp":1529523979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACgwMDUxNDAxMjI4MDA0MzKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8488, '2016-08-11 07:10:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:07.468287Z","gw_timestamp":1579795939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUzNjAxMjI4MDA0MzOvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8490, '2016-08-11 07:10:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:21.843824Z","gw_timestamp":1594158547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUzMjAxMjI4MDA0MzOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8492, '2016-08-11 07:10:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:36.201802Z","gw_timestamp":1608522307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDUzODAxMjI4MDA0MzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8494, '2016-08-11 07:10:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:10:50.560163Z","gw_timestamp":1622885859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUyOTAxMjI4MDA0MzOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8496, '2016-08-11 07:11:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:04.937899Z","gw_timestamp":1637248683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUwODAxMjI4MDA0MzOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8498, '2016-08-11 07:11:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:19.288685Z","gw_timestamp":1651611395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUyNTAxMjI4MDA0MzSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8500, '2016-08-11 07:11:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:33.644927Z","gw_timestamp":1665975051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACkwMDUxNjAxMjI4MDA0MzWumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8502, '2016-08-11 07:11:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:11:48.019115Z","gw_timestamp":1680338811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU1NjAxMjI4MDA0MzWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8508, '2016-08-11 07:12:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:31.095192Z","gw_timestamp":1723427899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDQ5MzAxMjI4MDA0Mzmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8510, '2016-08-11 07:12:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:45.460307Z","gw_timestamp":1737791451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACswMDUyMzAxMjI4MDA0NDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8512, '2016-08-11 07:13:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:12:59.824607Z","gw_timestamp":1752154275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUzNDAxMjI4MDA0NDGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8514, '2016-08-11 07:13:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:14.189926Z","gw_timestamp":1766517931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUzODAxMjI4MDA0NDGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8516, '2016-08-11 07:13:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:28.555139Z","gw_timestamp":1780881587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUyNTAxMjI4MDA0NDKueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8518, '2016-08-11 07:13:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:13:42.913462Z","gw_timestamp":1795244195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUzMjAxMjI4MDA0NDOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8520, '2016-08-11 07:14:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:04.460295Z","gw_timestamp":1816787907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUyNTAxMjI4MDA0NDOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8522, '2016-08-11 07:14:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:18.825705Z","gw_timestamp":1831151467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDQ5NzAxMjI4MDA0NDSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8524, '2016-08-11 07:14:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:33.179945Z","gw_timestamp":1845514179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU1ODAxMjI4MDA0NDSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8526, '2016-08-11 07:14:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:47.560206Z","gw_timestamp":1859878043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUxNjAxMjI4MDA0NDWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8546, '2016-08-11 07:17:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:11.173722Z","gw_timestamp":2003511883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUxNjAxMjI4MDA0NTCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8548, '2016-08-11 07:17:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:25.536969Z","gw_timestamp":2017874699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUwNTAxMjI4MDA0NTCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8550, '2016-08-11 07:17:35', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":842,"f_cnt_down":1509,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:17:33.513486Z","gw_timestamp":770214868,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArcwMDQ5MjAxMjMwMDA0NDYK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8552, '2016-08-11 07:17:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:39.909731Z","gw_timestamp":2032238363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDQ5NTAxMjI4MDA0NTCyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8554, '2016-08-11 07:18:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:01.439237Z","gw_timestamp":2053783323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxNDAxMjI4MDA0NTGvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8556, '2016-08-11 07:18:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:15.815475Z","gw_timestamp":2068146451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUxMDAxMjI4MDA0NTKxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8558, '2016-08-11 07:18:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:30.199001Z","gw_timestamp":2082510219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU1NjAxMjI4MDA0NTKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8560, '2016-08-11 07:18:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:44.537245Z","gw_timestamp":2096873347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU2NzAxMjI4MDA0NTKvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8562, '2016-08-11 07:19:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:58.900483Z","gw_timestamp":2111236795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDQ5MTAxMjI4MDA0NTOwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8523, '2016-08-11 07:14:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:14:25.999321Z","gw_timestamp":1838332459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU1ODAxMjI4MDA0NDSumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8531, '2016-08-11 07:15:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:16.271692Z","gw_timestamp":1888605355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUwNTAxMjI4MDA0NDayWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8533, '2016-08-11 07:15:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:30.640055Z","gw_timestamp":1902967971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDQ5OTAxMjI4MDA0NDavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8535, '2016-08-11 07:15:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:45.00471Z","gw_timestamp":1917331827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUzODAxMjI4MDA0NDevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8537, '2016-08-11 07:16:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:15:59.366816Z","gw_timestamp":1931695483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU4MzAxMjI4MDA0NDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8539, '2016-08-11 07:16:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:13.732877Z","gw_timestamp":1946059035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyMDAxMjI4MDA0NDixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8541, '2016-08-11 07:16:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:35.261604Z","gw_timestamp":1967603579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDQ4ODAxMjI4MDA0NDiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8543, '2016-08-11 07:16:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:49.628854Z","gw_timestamp":1981967443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDQ5NTAxMjI4MDA0NDmyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8545, '2016-08-11 07:17:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:04.000371Z","gw_timestamp":1996330363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0NzAxMjI4MDA0NDmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8547, '2016-08-11 07:17:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:18.355472Z","gw_timestamp":2010693187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0OTAxMjI4MDA0NTCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8549, '2016-08-11 07:17:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:32.720602Z","gw_timestamp":2025056635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDQ4ODAxMjI4MDA0NTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8551, '2016-08-11 07:17:41', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":843,"f_cnt_down":1510,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:39:24.675809Z","gw_timestamp":3701000492,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArcwMDQ5MjAxMjMwMDA0NDYK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8553, '2016-08-11 07:18:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:17:47.083986Z","gw_timestamp":2039420187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzMjAxMjI4MDA0NTCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8555, '2016-08-11 07:18:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:08.629137Z","gw_timestamp":2060964731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyMDAxMjI4MDA0NTGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8544, '2016-08-11 07:17:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:16:56.814548Z","gw_timestamp":1989149163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUxMjAxMjI4MDA0NDmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8566, '2016-08-11 07:19:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:27.625855Z","gw_timestamp":2139964099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU2MzAxMjI4MDA0NTSzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8568, '2016-08-11 07:19:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:41.98873Z","gw_timestamp":2154327755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUzMzAxMjI4MDA0NTSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8570, '2016-08-11 07:20:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:56.349352Z","gw_timestamp":2168691411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDQ5OTAxMjI4MDA0NTWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8572, '2016-08-11 07:20:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:10.723586Z","gw_timestamp":2183055067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUxNTAxMjI4MDA0NTWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8574, '2016-08-11 07:20:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:25.075112Z","gw_timestamp":2197418827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxMzAxMjI4MDA0NTWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8576, '2016-08-11 07:20:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:39.447236Z","gw_timestamp":2211781539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0MjAxMjI4MDA0NTWzKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8617, '2016-08-11 07:25:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:26.714886Z","gw_timestamp":2499048483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0NzAxMjI4MDA0NjKyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8619, '2016-08-11 07:25:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:41.076124Z","gw_timestamp":2513412243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU3NDAxMjI3MDA0NjOyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8621, '2016-08-11 07:26:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:55.440375Z","gw_timestamp":2527775891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU2NTAxMjI3MDA0NjOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8623, '2016-08-11 07:26:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:16.976503Z","gw_timestamp":2549321275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxMTAxMjI3MDA0NjSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8625, '2016-08-11 07:26:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:31.335355Z","gw_timestamp":2563684195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyNjAxMjI3MDA0NjSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8627, '2016-08-11 07:26:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:45.701875Z","gw_timestamp":2578047851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyMDAxMjI3MDA0NjSymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8629, '2016-08-11 07:27:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:00.075337Z","gw_timestamp":2592411499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU3NjAxMjI3MDA0NjStmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8557, '2016-08-11 07:18:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:22.994093Z","gw_timestamp":2075328387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU1NDAxMjI4MDA0NTKvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8579, '2016-08-11 07:21:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:00.994229Z","gw_timestamp":2233327131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUzODAxMjI4MDA0NTaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8581, '2016-08-11 07:21:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:15.351487Z","gw_timestamp":2247690787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUyNDAxMjI4MDA0NTewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8583, '2016-08-11 07:21:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:22.550635Z","gw_timestamp":2254872611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU0MDAxMjI4MDA0NTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8595, '2016-08-11 07:23:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:55.89236Z","gw_timestamp":2348233651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ACwwMDU1NDAxMjI4MDA0NTmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8597, '2016-08-11 07:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:10.251599Z","gw_timestamp":2362596891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUwNTAxMjI4MDA0NTmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8599, '2016-08-11 07:23:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:24.61899Z","gw_timestamp":2376960027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUxNTAxMjI4MDA0NTmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8601, '2016-08-11 07:23:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:38.997498Z","gw_timestamp":2391323787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU0OTAxMjI4MDA0NjCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8603, '2016-08-11 07:24:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:53.34306Z","gw_timestamp":2405686603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDQ5MDAxMjI4MDA0NjCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8605, '2016-08-11 07:24:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:07.716248Z","gw_timestamp":2420050051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUyNjAxMjI4MDA0NjCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8607, '2016-08-11 07:24:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:22.070122Z","gw_timestamp":2434412763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU3MDAxMjI4MDA0NjGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8609, '2016-08-11 07:24:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:36.439366Z","gw_timestamp":2448776523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUzMzAxMjI4MDA0NjGyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8611, '2016-08-11 07:25:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:50.798624Z","gw_timestamp":2463140283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDQ5MjAxMjI4MDA0NjGvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8613, '2016-08-11 07:25:07', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":760,"f_cnt_down":1347,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:25:03.941145Z","gw_timestamp":1220642740,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACgwMDUzOTAxMjE4MDA0ODQJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8559, '2016-08-11 07:18:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:37.351359Z","gw_timestamp":2089692035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxNzAxMjI4MDA0NTKu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8561, '2016-08-11 07:19:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:18:51.720728Z","gw_timestamp":2104054859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUwOTAxMjI4MDA0NTOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8563, '2016-08-11 07:19:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:06.078989Z","gw_timestamp":2118418515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDQ5MzAxMjI4MDA0NTOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8565, '2016-08-11 07:19:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:20.451571Z","gw_timestamp":2132782275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUwMTAxMjI4MDA0NTSwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8567, '2016-08-11 07:19:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:34.809486Z","gw_timestamp":2147145923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0OTAxMjI4MDA0NTSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8569, '2016-08-11 07:19:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:49.176743Z","gw_timestamp":2161509579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUyOTAxMjI4MDA0NTWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8571, '2016-08-11 07:20:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:03.529056Z","gw_timestamp":2175873339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUwNzAxMjI4MDA0NTWsKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8573, '2016-08-11 07:20:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:17.892342Z","gw_timestamp":2190236899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUwMTAxMjI4MDA0NTWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8575, '2016-08-11 07:20:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:32.262614Z","gw_timestamp":2204600235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUyNjAxMjI4MDA0NTW0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8577, '2016-08-11 07:20:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:46.632129Z","gw_timestamp":2218963371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUzMzAxMjI4MDA0NTaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8585, '2016-08-11 07:21:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:36.899422Z","gw_timestamp":2269235331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0MjAxMjI4MDA0NTewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8587, '2016-08-11 07:22:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:51.264722Z","gw_timestamp":2283598979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUwMzAxMjI4MDA0NTev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8589, '2016-08-11 07:22:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:12.79992Z","gw_timestamp":2305143835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDQ5NDAxMjI4MDA0NTiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8591, '2016-08-11 07:22:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:27.180124Z","gw_timestamp":2319506547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU1MjAxMjI4MDA0NTix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8564, '2016-08-11 07:19:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:19:13.259612Z","gw_timestamp":2125600339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyOTAxMjI4MDA0NTOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8578, '2016-08-11 07:21:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:20:53.806475Z","gw_timestamp":2226145299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUwNTAxMjI4MDA0NTaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8580, '2016-08-11 07:21:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:08.170866Z","gw_timestamp":2240508851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDUwNzAxMjI4MDA0NTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8582, '2016-08-11 07:21:24', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1322,"f_cnt_down":2128,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:21:21.879514Z","gw_timestamp":998581004,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMowMDUxMDAxMjE2MDA0NjIYIQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8584, '2016-08-11 07:21:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:29.71874Z","gw_timestamp":2262053811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUzNjAxMjI4MDA0NTeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8586, '2016-08-11 07:21:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:21:44.072989Z","gw_timestamp":2276417155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUzODAxMjI4MDA0NTex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8588, '2016-08-11 07:22:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:05.623987Z","gw_timestamp":2297962635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUxMTAxMjI4MDA0NTewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8590, '2016-08-11 07:22:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:19.986228Z","gw_timestamp":2312325451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUxNzAxMjI4MDA0NTiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8592, '2016-08-11 07:22:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:34.354616Z","gw_timestamp":2326688067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU2MTAxMjI4MDA0NTiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8594, '2016-08-11 07:23:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:48.708862Z","gw_timestamp":2341051827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU1ODAxMjI4MDA0NTmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8596, '2016-08-11 07:23:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:03.084784Z","gw_timestamp":2355415379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU1ODAxMjI4MDA0NTmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8598, '2016-08-11 07:23:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:17.441496Z","gw_timestamp":2369778099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU0MDAxMjI4MDA0NTmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8600, '2016-08-11 07:23:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:31.803628Z","gw_timestamp":2384141955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyNjAxMjI4MDA0NTmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8602, '2016-08-11 07:23:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:23:46.161118Z","gw_timestamp":2398505611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUyOTAxMjI4MDA0NjCu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8593, '2016-08-11 07:22:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:22:41.536108Z","gw_timestamp":2333869995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU1NjAxMjI4MDA0NTmzuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8606, '2016-08-11 07:24:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:14.910425Z","gw_timestamp":2427231043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyMDAxMjI4MDA0NjCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8608, '2016-08-11 07:24:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:29.257752Z","gw_timestamp":2441594699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDQ4NjAxMjI4MDA0NjGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8610, '2016-08-11 07:24:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:43.639268Z","gw_timestamp":2455958355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0MDAxMjI4MDA0NjGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8612, '2016-08-11 07:25:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:57.985259Z","gw_timestamp":2470322003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU3NzAxMjI4MDA0NjGvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8614, '2016-08-11 07:25:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:05.156856Z","gw_timestamp":2477503827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0MDAxMjI4MDA0NjGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8616, '2016-08-11 07:25:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:19.524574Z","gw_timestamp":2491867491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxMTAxMjI4MDA0NjKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8618, '2016-08-11 07:25:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:33.898709Z","gw_timestamp":2506230307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUxNTAxMjI3MDA0NjKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8620, '2016-08-11 07:25:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:48.248735Z","gw_timestamp":2520594067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU0MDAxMjI3MDA0NjOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8622, '2016-08-11 07:26:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:09.804824Z","gw_timestamp":2542139547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUyMDAxMjI3MDA0NjOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8624, '2016-08-11 07:26:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:24.173148Z","gw_timestamp":2556502675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUzMTAxMjI3MDA0NjSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8626, '2016-08-11 07:26:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:38.518249Z","gw_timestamp":2570865923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDU1NjAxMjI3MDA0NjSzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8628, '2016-08-11 07:27:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:26:52.890499Z","gw_timestamp":2585229675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUzNjAxMjI3MDA0NjSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8630, '2016-08-11 07:27:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:07.244885Z","gw_timestamp":2599593219,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU1NjAxMjI3MDA0NjSyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8604, '2016-08-11 07:24:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:24:00.533115Z","gw_timestamp":2412868427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU0NTAxMjI4MDA0NjCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8634, '2016-08-11 07:27:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:35.973182Z","gw_timestamp":2628318763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU0MDAxMjI3MDA0NjW0Gw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8636, '2016-08-11 07:27:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:50.367875Z","gw_timestamp":2642682523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU2NTAxMjI3MDA0NjWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8638, '2016-08-11 07:28:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:04.722574Z","gw_timestamp":2657046067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyNDAxMjI3MDA0NjWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8640, '2016-08-11 07:28:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:19.069077Z","gw_timestamp":2671409203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyOTAxMjI3MDA0NjauCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8642, '2016-08-11 07:28:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:33.435319Z","gw_timestamp":2685772435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUxNzAxMjI3MDA0Njaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8644, '2016-08-11 07:28:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:47.798127Z","gw_timestamp":2700136195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0MDAxMjI3MDA0NjawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8646, '2016-08-11 07:29:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:02.160009Z","gw_timestamp":2714499643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1MjAxMjI3MDA0Njavmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8648, '2016-08-11 07:29:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:16.522255Z","gw_timestamp":2728862259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDU3NjAxMjI3MDA0Njavmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8650, '2016-08-11 07:29:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:30.885434Z","gw_timestamp":2743225283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU0MDAxMjI3MDA0Njexiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8652, '2016-08-11 07:29:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:45.26203Z","gw_timestamp":2757587995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUwNzAxMjI3MDA0Njewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8654, '2016-08-11 07:30:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:59.60612Z","gw_timestamp":2771951443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUxMTAxMjI3MDA0Njiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8656, '2016-08-11 07:30:08', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":845,"f_cnt_down":1550,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:30:05.351204Z","gw_timestamp":1522052940,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"APwwMDU5ODAxMjE4MDA0ODMKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8658, '2016-08-11 07:30:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:13.968374Z","gw_timestamp":2786314371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU2OTAxMjI3MDA0Njixaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8615, '2016-08-11 07:25:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:25:12.3425Z","gw_timestamp":2484685763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyNDAxMjI4MDA0NjKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8661, '2016-08-11 07:30:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:42.696507Z","gw_timestamp":2815041779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyMjAxMjI3MDA0Njiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8663, '2016-08-11 07:31:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:57.056122Z","gw_timestamp":2829405331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyOTAxMjI3MDA0Njixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8665, '2016-08-11 07:31:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:11.454661Z","gw_timestamp":2843769187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDQ5NjAxMjI3MDA0Njiuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8667, '2016-08-11 07:31:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:25.811031Z","gw_timestamp":2858132747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU0MjAxMjI3MDA0Njmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8669, '2016-08-11 07:31:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:40.148007Z","gw_timestamp":2872495555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU0NzAxMjI3MDA0NjmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8671, '2016-08-11 07:32:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:54.514414Z","gw_timestamp":2886858171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0OTAxMjI2MDA0Njmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8679, '2016-08-11 07:33:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7913,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:51.989657Z","gw_timestamp":2944310915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1MjAxMjI2MDA0NzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8681, '2016-08-11 07:33:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:06.332627Z","gw_timestamp":2958673731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU3MTAxMjI2MDA0NzGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8683, '2016-08-11 07:33:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:20.685002Z","gw_timestamp":2973036347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxMzAxMjI2MDA0NzGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8685, '2016-08-11 07:33:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:35.052204Z","gw_timestamp":2987398955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDQ5MjAxMjI2MDA0NzGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8687, '2016-08-11 07:33:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:49.422458Z","gw_timestamp":3001761779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUxNTAxMjI2MDA0NzGx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8689, '2016-08-11 07:34:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:03.785742Z","gw_timestamp":3016125427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxMzAxMjI2MDA0NzGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8691, '2016-08-11 07:34:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:25.329772Z","gw_timestamp":3037669035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUyNjAxMjI2MDA0NzGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8631, '2016-08-11 07:27:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:14.455331Z","gw_timestamp":2606775155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1NjAxMjI3MDA0NjSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8633, '2016-08-11 07:27:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:28.80326Z","gw_timestamp":2621137771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyNDAxMjI3MDA0NjWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8635, '2016-08-11 07:27:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:43.155999Z","gw_timestamp":2635500587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU0NTAxMjI3MDA0NjWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8637, '2016-08-11 07:28:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:57.521251Z","gw_timestamp":2649864243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUxMTAxMjI3MDA0NjWvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8639, '2016-08-11 07:28:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:11.889508Z","gw_timestamp":2664228003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU3NDAxMjI3MDA0NjawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8641, '2016-08-11 07:28:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:26.255887Z","gw_timestamp":2678590715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUzNjAxMjI3MDA0Njaxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8643, '2016-08-11 07:28:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:40.635881Z","gw_timestamp":2692954371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU1NDAxMjI3MDA0NjaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8645, '2016-08-11 07:29:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:28:54.992633Z","gw_timestamp":2707318131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUyNDAxMjI3MDA0Njaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8647, '2016-08-11 07:29:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:09.337632Z","gw_timestamp":2721680739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUzNjAxMjI3MDA0Njawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8649, '2016-08-11 07:29:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:23.706874Z","gw_timestamp":2736043459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU1NjAxMjI3MDA0Njawew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8651, '2016-08-11 07:29:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:38.066122Z","gw_timestamp":2750407011,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUwNDAxMjI3MDA0NjewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8653, '2016-08-11 07:30:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:29:52.427635Z","gw_timestamp":2764769827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxNTAxMjI3MDA0NjezKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8655, '2016-08-11 07:30:06', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":844,"f_cnt_down":1549,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:51:56.513554Z","gw_timestamp":157870940,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-120,"snr":-6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"APwwMDU5ODAxMjE4MDA0ODMKAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8657, '2016-08-11 07:30:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:06.792748Z","gw_timestamp":2779132539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyOTAxMjI3MDA0NjiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8632, '2016-08-11 07:27:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:27:21.617999Z","gw_timestamp":2613956467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxNTAxMjI3MDA0NjWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8662, '2016-08-11 07:30:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7896,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:49.882511Z","gw_timestamp":2822223611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDQ5MjAxMjI3MDA0NjivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8664, '2016-08-11 07:31:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:04.239884Z","gw_timestamp":2836587259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1MjAxMjI3MDA0NjixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8666, '2016-08-11 07:31:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:18.608138Z","gw_timestamp":2850951019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1MjAxMjI3MDA0Njmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8668, '2016-08-11 07:31:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:32.974429Z","gw_timestamp":2865313835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1NjAxMjI2MDA0NjmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8698, '2016-08-11 07:35:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:15.596053Z","gw_timestamp":3087939947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzNzAxMjI2MDA0NzOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8659, '2016-08-11 07:30:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:28.335639Z","gw_timestamp":2800678019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-82,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzMzAxMjI3MDA0Njivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8673, '2016-08-11 07:32:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:16.068527Z","gw_timestamp":2908403651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDQ5MDAxMjI2MDA0NzCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8675, '2016-08-11 07:32:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:30.415645Z","gw_timestamp":2922765635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUxMzAxMjI2MDA0NzCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8677, '2016-08-11 07:32:46', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":843,"f_cnt_down":1511,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:32:44.360905Z","gw_timestamp":1681062716,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:54:35.523257Z","gw_timestamp":316880644,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"As4wMDQ5NDAxMjI5MDA0NTENEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8695, '2016-08-11 07:35:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:54.054278Z","gw_timestamp":3066395299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzNTAxMjI2MDA0NzKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8697, '2016-08-11 07:35:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:08.433851Z","gw_timestamp":3080758115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUyODAxMjI2MDA0NzKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8699, '2016-08-11 07:35:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:22.782027Z","gw_timestamp":3095120931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU0NDAxMjI2MDA0NzOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8660, '2016-08-11 07:30:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:30:35.534479Z","gw_timestamp":2807859955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU1NDAxMjI3MDA0NjixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8670, '2016-08-11 07:31:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:31:47.330768Z","gw_timestamp":2879677179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0MjAxMjI2MDA0Njmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8672, '2016-08-11 07:32:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:01.712348Z","gw_timestamp":2894040107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUzMTAxMjI2MDA0NzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8674, '2016-08-11 07:32:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:23.24489Z","gw_timestamp":2915584643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUzMTAxMjI2MDA0NzCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8676, '2016-08-11 07:32:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:37.599011Z","gw_timestamp":2929947363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU2NTAxMjI2MDA0NzCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8678, '2016-08-11 07:32:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:44.784752Z","gw_timestamp":2937128979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxNTAxMjI2MDA0NzCzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8680, '2016-08-11 07:33:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:32:59.151013Z","gw_timestamp":2951491907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0OTAxMjI2MDA0NzGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8682, '2016-08-11 07:33:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:13.513288Z","gw_timestamp":2965854931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDQ5NDAxMjI2MDA0NzGwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8684, '2016-08-11 07:33:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:27.88901Z","gw_timestamp":2980217963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDU0OTAxMjI2MDA0NzGyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8686, '2016-08-11 07:33:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:42.232891Z","gw_timestamp":2994579947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU1MTAxMjI2MDA0NzGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8688, '2016-08-11 07:34:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:33:56.598147Z","gw_timestamp":3008943603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyODAxMjI2MDA0NzGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8690, '2016-08-11 07:34:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:18.156899Z","gw_timestamp":3030488043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU2MjAxMjI2MDA0NzGyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8692, '2016-08-11 07:34:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:32.500392Z","gw_timestamp":3044850755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU2MDAxMjI2MDA0NzGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8694, '2016-08-11 07:34:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:46.867642Z","gw_timestamp":3059213571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU0NjAxMjI2MDA0NzKxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8693, '2016-08-11 07:34:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:34:39.684014Z","gw_timestamp":3052031747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0MjAxMjI2MDA0NzKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8696, '2016-08-11 07:35:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:01.231893Z","gw_timestamp":3073576923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0NjAxMjI2MDA0NzKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8700, '2016-08-11 07:35:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:29.957411Z","gw_timestamp":3102302659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU0NjAxMjI2MDA0NzOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8701, '2016-08-11 07:35:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:37.137422Z","gw_timestamp":3109484387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzMTAxMjI2MDA0NzOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8702, '2016-08-11 07:35:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:44.332106Z","gw_timestamp":3116665899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUxOTAxMjI2MDA0NzOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8703, '2016-08-11 07:36:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:51.495736Z","gw_timestamp":3123847099,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU2MjAxMjI2MDA0NzOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8704, '2016-08-11 07:36:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:35:58.684228Z","gw_timestamp":3131028819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzOTAxMjI2MDA0NzOyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8705, '2016-08-11 07:36:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:05.862146Z","gw_timestamp":3138209819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU3NjAxMjI2MDA0NzOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8706, '2016-08-11 07:36:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:13.04458Z","gw_timestamp":3145391747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUwNDAxMjI2MDA0NzOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8707, '2016-08-11 07:36:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:27.41552Z","gw_timestamp":3159755395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUzMTAxMjI2MDA0NzOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8708, '2016-08-11 07:36:36', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1323,"f_cnt_down":2129,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:36:32.707828Z","gw_timestamp":1909409748,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":3,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AOIwMDU2MTAxMjE3MDA0NjcHEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8709, '2016-08-11 07:36:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:34.607495Z","gw_timestamp":3166937331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC0wMDU3ODAxMjI2MDA0NzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8710, '2016-08-11 07:36:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:41.776884Z","gw_timestamp":3174118947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDU2MjAxMjI2MDA0NzOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8711, '2016-08-11 07:36:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:48.978795Z","gw_timestamp":3181299939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUzMzAxMjI2MDA0NzSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8712, '2016-08-11 07:37:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:36:56.137389Z","gw_timestamp":3188481459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU0MjAxMjI2MDA0NzSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8713, '2016-08-11 07:37:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:03.308767Z","gw_timestamp":3195662555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDU1NzAxMjI2MDA0NzSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8745, '2016-08-11 07:40:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:45.93753Z","gw_timestamp":3418292923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0ODAxMjI1MDA0Nzax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8747, '2016-08-11 07:41:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7981,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:00.306786Z","gw_timestamp":3432656675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDU0MjAxMjI1MDA0Nzewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8749, '2016-08-11 07:41:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:14.671526Z","gw_timestamp":3447020227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzOTAxMjI1MDA0NzewOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8751, '2016-08-11 07:41:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:29.061674Z","gw_timestamp":3461384091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUxMzAxMjI1MDA0NzevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8753, '2016-08-11 07:41:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:43.397611Z","gw_timestamp":3475746699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUwNzAxMjI1MDA0NzexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8755, '2016-08-11 07:42:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:57.760279Z","gw_timestamp":3490110459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUzNTAxMjI1MDA0Nzewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8757, '2016-08-11 07:42:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:12.118142Z","gw_timestamp":3504474107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUzMTAxMjI1MDA0NzewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8759, '2016-08-11 07:42:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:33.663109Z","gw_timestamp":3526019483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUyNDAxMjI1MDA0Nzewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8761, '2016-08-11 07:42:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:48.029414Z","gw_timestamp":3540382307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUxNzAxMjI1MDA0Nzexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8763, '2016-08-11 07:43:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:02.391669Z","gw_timestamp":3554745963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUzMjAxMjI1MDA0Nziwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8765, '2016-08-11 07:43:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:16.761901Z","gw_timestamp":3569109715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzMzAxMjI1MDA0NziwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8767, '2016-08-11 07:43:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:31.122289Z","gw_timestamp":3583473371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU3NjAxMjI1MDA0Nzix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8769, '2016-08-11 07:43:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:45.492537Z","gw_timestamp":3597837123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUzMDAxMjI1MDA0NziuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8714, '2016-08-11 07:37:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:10.492345Z","gw_timestamp":3202843547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxMTAxMjI2MDA0NzSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8718, '2016-08-11 07:37:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:39.23336Z","gw_timestamp":3231569395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDUxOTAxMjI2MDA0NzSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8720, '2016-08-11 07:38:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:53.590271Z","gw_timestamp":3245932531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUxMzAxMjI1MDA0NzSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8722, '2016-08-11 07:38:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:07.955529Z","gw_timestamp":3260296283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDU2MDAxMjI1MDA0NzSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8724, '2016-08-11 07:38:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:22.313772Z","gw_timestamp":3274660035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUzNTAxMjI1MDA0NzSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8726, '2016-08-11 07:38:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:36.680236Z","gw_timestamp":3289023691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0MjAxMjI1MDA0NzWu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8728, '2016-08-11 07:39:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:51.032272Z","gw_timestamp":3303386403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC8wMDUxNzAxMjI1MDA0NzWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8730, '2016-08-11 07:39:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:05.401644Z","gw_timestamp":3317749955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU1MTAxMjI1MDA0NzWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8732, '2016-08-11 07:39:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:19.761907Z","gw_timestamp":3332112779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzMzAxMjI1MDA0NzWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8734, '2016-08-11 07:39:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:34.128153Z","gw_timestamp":3346476539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyODAxMjI1MDA0NzWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8736, '2016-08-11 07:39:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:48.509659Z","gw_timestamp":3360840187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUwNzAxMjI1MDA0NzWuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8738, '2016-08-11 07:40:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:02.853777Z","gw_timestamp":3375202795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDU0NjAxMjI1MDA0NzWvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8740, '2016-08-11 07:40:19', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":761,"f_cnt_down":1348,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:40:14.721605Z","gw_timestamp":2131423628,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:02:05.883977Z","gw_timestamp":767241364,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACgwMDUxOTAxMjE4MDA0OTAIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8715, '2016-08-11 07:37:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:17.69463Z","gw_timestamp":3210025371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUxNTAxMjI2MDA0NzSumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8717, '2016-08-11 07:37:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:32.038276Z","gw_timestamp":3224388083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUxMzAxMjI2MDA0NzSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8719, '2016-08-11 07:37:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:46.407654Z","gw_timestamp":3238750699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AC4wMDUzNzAxMjI1MDA0NzWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8721, '2016-08-11 07:38:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:00.76889Z","gw_timestamp":3253114355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUzOTAxMjI1MDA0NzSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8723, '2016-08-11 07:38:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:15.137147Z","gw_timestamp":3267478211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU0NDAxMjI1MDA0NzSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8725, '2016-08-11 07:38:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:29.496528Z","gw_timestamp":3281841763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADEwMDQ5NDAxMjI1MDA0NzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8727, '2016-08-11 07:38:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:43.86266Z","gw_timestamp":3296205419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU3MTAxMjI1MDA0NzWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8729, '2016-08-11 07:39:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:38:58.225012Z","gw_timestamp":3310568235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDUyODAxMjI1MDA0NzWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8731, '2016-08-11 07:39:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:12.598498Z","gw_timestamp":3324930947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU1NzAxMjI1MDA0NzWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8733, '2016-08-11 07:39:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:26.949536Z","gw_timestamp":3339294603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUxNzAxMjI1MDA0NzWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8735, '2016-08-11 07:39:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:41.309974Z","gw_timestamp":3353658363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDUyMjAxMjI1MDA0NzWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8737, '2016-08-11 07:40:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:39:55.67703Z","gw_timestamp":3368021699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDU0ODAxMjI1MDA0NzWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8739, '2016-08-11 07:40:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:10.04141Z","gw_timestamp":3382383891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUyODAxMjI1MDA0NzW0Ww==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8741, '2016-08-11 07:40:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:17.224017Z","gw_timestamp":3389565619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDU1NTAxMjI1MDA0NzWvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8716, '2016-08-11 07:37:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:37:24.858782Z","gw_timestamp":3217207099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADAwMDQ5NjAxMjI2MDA0NzSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8744, '2016-08-11 07:40:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:38.780174Z","gw_timestamp":3411111099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU0NDAxMjI1MDA0Nzawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8746, '2016-08-11 07:41:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:53.132657Z","gw_timestamp":3425474851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUxMzAxMjI1MDA0NzaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8748, '2016-08-11 07:41:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:07.492409Z","gw_timestamp":3439838611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADIwMDUzMTAxMjI1MDA0Nzeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8750, '2016-08-11 07:41:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:21.849782Z","gw_timestamp":3454202155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUxMzAxMjI1MDA0Nzeyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8752, '2016-08-11 07:41:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:36.222035Z","gw_timestamp":3468565499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDU1NTAxMjI1MDA0Nzexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8754, '2016-08-11 07:41:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:41:50.574279Z","gw_timestamp":3482928739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDU0NjAxMjI1MDA0NzeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8756, '2016-08-11 07:42:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:04.948534Z","gw_timestamp":3497292283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUxNzAxMjI1MDA0NzewGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8758, '2016-08-11 07:42:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:19.31592Z","gw_timestamp":3511655939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADMwMDU1MTAxMjI1MDA0Nzex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8760, '2016-08-11 07:42:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:40.851786Z","gw_timestamp":3533200483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUwMDAxMjI1MDA0NzevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8762, '2016-08-11 07:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:42:55.220035Z","gw_timestamp":3547564235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzMzAxMjI1MDA0NziyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8764, '2016-08-11 07:43:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:09.580834Z","gw_timestamp":3561927891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDU1MTAxMjI1MDA0Nziwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8766, '2016-08-11 07:43:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:23.945529Z","gw_timestamp":3576291643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDQ4MTAxMjI1MDA0Nzixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8768, '2016-08-11 07:43:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:38.298904Z","gw_timestamp":3590655299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDUyNjAxMjI1MDA0Nziw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8742, '2016-08-11 07:40:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:24.392654Z","gw_timestamp":3396747339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUyODAxMjI1MDA0Nzawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8800, '2016-08-11 07:47:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:28.120742Z","gw_timestamp":3820469259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU1MzAxMjI1MDA0ODGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8802, '2016-08-11 07:47:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:42.486531Z","gw_timestamp":3834831971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzNTAxMjI1MDA0ODKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8804, '2016-08-11 07:47:59', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":844,"f_cnt_down":1512,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:47:55.215685Z","gw_timestamp":2591917924,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:09:46.378074Z","gw_timestamp":1227735460,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AtswMDQ3NjAxMjI5MDA0NTEMcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8806, '2016-08-11 07:48:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:04.024006Z","gw_timestamp":3856377667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUxMDAxMjI1MDA0ODKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8808, '2016-08-11 07:48:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:18.384793Z","gw_timestamp":3870740587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxOTAxMjI1MDA0ODKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8810, '2016-08-11 07:48:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:39.936868Z","gw_timestamp":3892284819,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzMDAxMjI1MDA0ODKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8812, '2016-08-11 07:49:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:54.288926Z","gw_timestamp":3906648571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzMDAxMjI1MDA0ODKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8814, '2016-08-11 07:49:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:08.656553Z","gw_timestamp":3921011187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUxMjAxMjI1MDA0ODO0Ow==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8816, '2016-08-11 07:49:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:23.023804Z","gw_timestamp":3935374003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxNjAxMjI1MDA0ODOp6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8818, '2016-08-11 07:49:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:37.379809Z","gw_timestamp":3949737651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5MzAxMjI1MDA0ODOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8820, '2016-08-11 07:50:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:51.769971Z","gw_timestamp":3964101307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU0ODAxMjI1MDA0ODOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8822, '2016-08-11 07:50:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:06.115415Z","gw_timestamp":3978464123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzMDAxMjI1MDA0ODSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8743, '2016-08-11 07:40:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":7977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:40:31.583355Z","gw_timestamp":3403929171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADUwMDU3ODAxMjI1MDA0NzavWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8773, '2016-08-11 07:44:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:14.219477Z","gw_timestamp":3626563499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU0MTAxMjI1MDA0Nzmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8775, '2016-08-11 07:44:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:35.763177Z","gw_timestamp":3648108035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADQwMDUwMDAxMjI1MDA0ODCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8777, '2016-08-11 07:44:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:50.148677Z","gw_timestamp":3662471691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzNTAxMjI1MDA0ODCyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8779, '2016-08-11 07:45:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:04.488923Z","gw_timestamp":3676835027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0MTAxMjI1MDA0ODCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8781, '2016-08-11 07:45:21', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":845,"f_cnt_down":1551,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:45:16.127232Z","gw_timestamp":2432829396,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ASkwMDU2MjAxMjE4MDA0ODgJoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8783, '2016-08-11 07:45:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:26.034518Z","gw_timestamp":3698379987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU2MDAxMjI1MDA0ODCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8785, '2016-08-11 07:45:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:40.392982Z","gw_timestamp":3712743635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDU0NDAxMjI1MDA0ODCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8787, '2016-08-11 07:46:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:54.756034Z","gw_timestamp":3727107291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUyMTAxMjI1MDA0ODCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8817, '2016-08-11 07:49:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:30.208171Z","gw_timestamp":3942555723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzNTAxMjI1MDA0ODOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8819, '2016-08-11 07:49:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:44.566925Z","gw_timestamp":3956919483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUzNzAxMjI1MDA0ODOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8821, '2016-08-11 07:50:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:58.933672Z","gw_timestamp":3971282403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0NjAxMjI1MDA0ODOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8823, '2016-08-11 07:50:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:13.301431Z","gw_timestamp":3985645843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUzNzAxMjI1MDA0ODSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8825, '2016-08-11 07:50:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:27.670418Z","gw_timestamp":4000009499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU0MTAxMjI1MDA0ODSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8770, '2016-08-11 07:44:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:52.671168Z","gw_timestamp":3605018851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUxNDAxMjI1MDA0Nzixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8772, '2016-08-11 07:44:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:07.024494Z","gw_timestamp":3619381667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUxMDAxMjI1MDA0Nzmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8774, '2016-08-11 07:44:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:21.390663Z","gw_timestamp":3633745011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxNDAxMjI1MDA0Nzmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8776, '2016-08-11 07:44:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:42.933666Z","gw_timestamp":3655289971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDU0NjAxMjI1MDA0ODCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8778, '2016-08-11 07:45:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:44:57.30791Z","gw_timestamp":3669653619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUyODAxMjI1MDA0ODCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8780, '2016-08-11 07:45:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:11.669152Z","gw_timestamp":3684016227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUyODAxMjI1MDA0ODCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8782, '2016-08-11 07:45:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:18.849796Z","gw_timestamp":3691198051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUzMDAxMjI1MDA0ODCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8784, '2016-08-11 07:45:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:33.230056Z","gw_timestamp":3705561707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU0MTAxMjI1MDA0ODCyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8786, '2016-08-11 07:45:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:45:47.571831Z","gw_timestamp":3719925571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDU0NDAxMjI1MDA0ODC1iw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8788, '2016-08-11 07:46:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:01.937659Z","gw_timestamp":3734288283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUxOTAxMjI1MDA0ODCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8790, '2016-08-11 07:46:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:16.296924Z","gw_timestamp":3748651931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUyNTAxMjI1MDA0ODCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8792, '2016-08-11 07:46:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:30.668167Z","gw_timestamp":3763015483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDYwMDAxMjI1MDA0ODGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8794, '2016-08-11 07:46:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:45.033423Z","gw_timestamp":3777378299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU0ODAxMjI1MDA0ODGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8796, '2016-08-11 07:47:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:59.386808Z","gw_timestamp":3791741955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzNzAxMjI1MDA0ODGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8771, '2016-08-11 07:44:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:43:59.878156Z","gw_timestamp":3612199939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUxOTAxMjI1MDA0NzmxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8789, '2016-08-11 07:46:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:09.114288Z","gw_timestamp":3741470003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUzMDAxMjI1MDA0ODCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8791, '2016-08-11 07:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:23.484668Z","gw_timestamp":3755833763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUzOTAxMjI1MDA0ODGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8793, '2016-08-11 07:46:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:37.848063Z","gw_timestamp":3770197107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU2ODAxMjI1MDA0ODGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8795, '2016-08-11 07:47:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:46:52.211318Z","gw_timestamp":3784560027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDU0MTAxMjI1MDA0ODGyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8797, '2016-08-11 07:47:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:06.567423Z","gw_timestamp":3798923883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzNzAxMjI1MDA0ODGuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8799, '2016-08-11 07:47:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:20.934621Z","gw_timestamp":3813287539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzMDAxMjI1MDA0ODGuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8801, '2016-08-11 07:47:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:35.305308Z","gw_timestamp":3827650355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzMjAxMjI1MDA0ODGzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8803, '2016-08-11 07:47:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:49.675704Z","gw_timestamp":3842013907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUwODAxMjI1MDA0ODGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8805, '2016-08-11 07:48:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:56.836795Z","gw_timestamp":3849195843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUzMjAxMjI1MDA0ODKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8807, '2016-08-11 07:48:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:11.211104Z","gw_timestamp":3863559387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUwNjAxMjI1MDA0ODKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8809, '2016-08-11 07:48:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:25.586637Z","gw_timestamp":3877922203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU0MTAxMjI1MDA0ODKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8811, '2016-08-11 07:48:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:48:47.122309Z","gw_timestamp":3899466747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU1MzAxMjI1MDA0ODKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8813, '2016-08-11 07:49:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:01.492727Z","gw_timestamp":3913830187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxMjAxMjI1MDA0ODKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8798, '2016-08-11 07:47:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:47:13.75905Z","gw_timestamp":3806105611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUxMjAxMjI1MDA0ODGy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8826, '2016-08-11 07:50:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:42.019816Z","gw_timestamp":4014373251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzMjAxMjI1MDA0ODSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8828, '2016-08-11 07:51:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:56.376939Z","gw_timestamp":4028736907,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDQ5MTAxMjI1MDA0ODSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8830, '2016-08-11 07:51:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8066,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:10.751312Z","gw_timestamp":4043100659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU1NTAxMjI1MDA0ODSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8832, '2016-08-11 07:51:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:25.113306Z","gw_timestamp":4057464323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUxMjAxMjI1MDA0ODSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8834, '2016-08-11 07:51:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:39.472691Z","gw_timestamp":4071827027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwMjAxMjI0MDA0ODSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8836, '2016-08-11 07:51:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:46.649702Z","gw_timestamp":4079008227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUxNjAxMjI0MDA0ODSy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8838, '2016-08-11 07:52:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:01.017556Z","gw_timestamp":4093371467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUwMjAxMjI0MDA0ODSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8840, '2016-08-11 07:52:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:15.373786Z","gw_timestamp":4107735427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUyMzAxMjI0MDA0ODWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8842, '2016-08-11 07:52:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:29.7657Z","gw_timestamp":4122098147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUyODAxMjI0MDA0ODWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8844, '2016-08-11 07:52:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:44.106442Z","gw_timestamp":4136461595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxNjAxMjI0MDA0ODWuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8846, '2016-08-11 07:53:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:58.467553Z","gw_timestamp":4150825347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzNTAxMjI0MDA0ODWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8848, '2016-08-11 07:53:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:12.833069Z","gw_timestamp":4165189099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU1MzAxMjI0MDA0ODWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8850, '2016-08-11 07:53:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:27.213642Z","gw_timestamp":4179552755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyMzAxMjI0MDA0ODavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8815, '2016-08-11 07:49:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:49:15.844925Z","gw_timestamp":3928192379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUwODAxMjI1MDA0ODOvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8829, '2016-08-11 07:51:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:03.563792Z","gw_timestamp":4035918835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0MTAxMjI1MDA0ODSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8831, '2016-08-11 07:51:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:17.939956Z","gw_timestamp":4050282491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU1NzAxMjI1MDA0ODSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8833, '2016-08-11 07:51:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:32.305333Z","gw_timestamp":4064645515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyODAxMjI1MDA0ODSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8863, '2016-08-11 07:55:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:00.551516Z","gw_timestamp":4272913155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxOTAxMjI0MDA0ODezyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8865, '2016-08-11 07:55:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:14.925823Z","gw_timestamp":4287275563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUzNTAxMjI0MDA0ODevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8867, '2016-08-11 07:55:31', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":762,"f_cnt_down":1349,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:55:25.50221Z","gw_timestamp":3042204660,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADQwMDUyMTAxMjE4MDA0OTUIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8869, '2016-08-11 07:55:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:36.457683Z","gw_timestamp":13852699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU1MTAxMjI0MDA0ODexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8871, '2016-08-11 07:55:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:50.821947Z","gw_timestamp":28216355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUyMTAxMjI0MDA0ODexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8873, '2016-08-11 07:56:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:05.196312Z","gw_timestamp":42580115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0ODAxMjI0MDA0ODewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8875, '2016-08-11 07:56:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:19.559633Z","gw_timestamp":56943763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUyMzAxMjI0MDA0ODewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8877, '2016-08-11 07:56:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:33.946073Z","gw_timestamp":71307515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxNDAxMjI0MDA0ODex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8879, '2016-08-11 07:57:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:48.282274Z","gw_timestamp":85671171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUxOTAxMjI0MDA0ODiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8881, '2016-08-11 07:57:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:02.647836Z","gw_timestamp":100034923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDU1NTAxMjI0MDA0ODiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8824, '2016-08-11 07:50:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:20.479684Z","gw_timestamp":3992827779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDU0NjAxMjI1MDA0ODSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8854, '2016-08-11 07:54:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:55.943789Z","gw_timestamp":4208279123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzMjAxMjI0MDA0ODav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8856, '2016-08-11 07:54:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:10.292805Z","gw_timestamp":4222641731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU4NDAxMjI0MDA0ODawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8858, '2016-08-11 07:54:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:24.655573Z","gw_timestamp":4237005491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU1MzAxMjI0MDA0ODauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8860, '2016-08-11 07:54:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:39.010564Z","gw_timestamp":4251369139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyMTAxMjI0MDA0ODevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8862, '2016-08-11 07:55:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:53.371886Z","gw_timestamp":4265731963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDQ5NTAxMjI0MDA0ODevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8864, '2016-08-11 07:55:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:07.745199Z","gw_timestamp":4280094571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU1NTAxMjI0MDA0ODevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8866, '2016-08-11 07:55:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:22.099442Z","gw_timestamp":4294457283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxOTAxMjI0MDA0ODev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8868, '2016-08-11 07:55:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:29.279462Z","gw_timestamp":6671507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUxNDAxMjI0MDA0ODeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8870, '2016-08-11 07:55:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:43.646398Z","gw_timestamp":21034427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUyODAxMjI0MDA0ODeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8872, '2016-08-11 07:56:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:55:58.003554Z","gw_timestamp":35398179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADYwMDUzOTAxMjI0MDA0ODexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8874, '2016-08-11 07:56:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:12.378168Z","gw_timestamp":49761931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ5ODAxMjI0MDA0ODew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8876, '2016-08-11 07:56:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:26.741198Z","gw_timestamp":64125691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0NDAxMjI0MDA0ODexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8878, '2016-08-11 07:56:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:41.106439Z","gw_timestamp":78489347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUzNTAxMjI0MDA0ODiuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8827, '2016-08-11 07:50:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:50:49.196178Z","gw_timestamp":4021555187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDQ4NTAxMjI1MDA0ODSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8835, '2016-08-11 07:51:50', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1324,"f_cnt_down":2130,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T07:51:43.538402Z","gw_timestamp":2820240748,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ARUwMDUzMjAxMjE3MDA0NzAcEQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8837, '2016-08-11 07:52:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:51:53.84319Z","gw_timestamp":4086189747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyMzAxMjI0MDA0ODSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8839, '2016-08-11 07:52:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8074,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:08.205193Z","gw_timestamp":4100553395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzMjAxMjI0MDA0ODSu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8841, '2016-08-11 07:52:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:22.566429Z","gw_timestamp":4114917051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyMzAxMjI0MDA0ODWvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8843, '2016-08-11 07:52:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:36.920814Z","gw_timestamp":4129279867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUxMDAxMjI0MDA0ODWymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8845, '2016-08-11 07:52:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:52:51.286059Z","gw_timestamp":4143643523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUyNTAxMjI0MDA0ODWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8847, '2016-08-11 07:53:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:05.670836Z","gw_timestamp":4158007275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzNTAxMjI0MDA0ODWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8849, '2016-08-11 07:53:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:20.01151Z","gw_timestamp":4172370827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU1NzAxMjI0MDA0ODWzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8851, '2016-08-11 07:53:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:34.37479Z","gw_timestamp":4186734587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU0ODAxMjI0MDA0ODaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8853, '2016-08-11 07:53:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:48.75018Z","gw_timestamp":4201097299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUwODAxMjI0MDA0ODau2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8855, '2016-08-11 07:54:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:03.098443Z","gw_timestamp":4215460427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzNzAxMjI0MDA0ODayyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8857, '2016-08-11 07:54:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:17.473689Z","gw_timestamp":4229823563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzMjAxMjI0MDA0ODayGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8859, '2016-08-11 07:54:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:31.835193Z","gw_timestamp":4244187419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzMjAxMjI0MDA0ODew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8852, '2016-08-11 07:53:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:53:41.559821Z","gw_timestamp":4193916299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDUxNjAxMjI0MDA0ODauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8882, '2016-08-11 07:57:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:09.842219Z","gw_timestamp":107216755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUxNjAxMjI0MDA0ODivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8884, '2016-08-11 07:57:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:24.202837Z","gw_timestamp":121580299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzNzAxMjI0MDA0ODivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8886, '2016-08-11 07:57:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:38.558577Z","gw_timestamp":135944059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU1OTAxMjI0MDA0ODivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8888, '2016-08-11 07:58:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:52.915181Z","gw_timestamp":150307811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzMjAxMjI0MDA0ODivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8890, '2016-08-11 07:58:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:07.280077Z","gw_timestamp":164671363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU0MTAxMjI0MDA0ODmzaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8892, '2016-08-11 07:58:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:21.646833Z","gw_timestamp":179034179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0NzAxMjI0MDA0ODmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8894, '2016-08-11 07:58:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:36.008697Z","gw_timestamp":193397731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzOTAxMjI0MDA0ODmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8896, '2016-08-11 07:59:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:57.552564Z","gw_timestamp":214942163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU1MjAxMjI0MDA0ODmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8898, '2016-08-11 07:59:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:11.913823Z","gw_timestamp":229305083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDU1NDAxMjI0MDA0ODmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8900, '2016-08-11 07:59:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:26.282206Z","gw_timestamp":243668843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzNjAxMjIzMDA0ODmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8902, '2016-08-11 07:59:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:40.655665Z","gw_timestamp":258031763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxNjAxMjIzMDA0ODmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8904, '2016-08-11 08:00:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:55.004687Z","gw_timestamp":272395211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyMzAxMjIzMDA0ODmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8906, '2016-08-11 08:00:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:09.364552Z","gw_timestamp":286758859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzNjAxMjIzMDA0ODmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8861, '2016-08-11 07:54:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:54:46.206539Z","gw_timestamp":4258550443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUzNzAxMjI0MDA0ODewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8885, '2016-08-11 07:57:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:31.373947Z","gw_timestamp":128762235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADgwMDQ5NTAxMjI0MDA0ODivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8887, '2016-08-11 07:57:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:45.731204Z","gw_timestamp":143125987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzNjAxMjI0MDA0ODiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8889, '2016-08-11 07:58:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:00.108726Z","gw_timestamp":157489539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxODAxMjI0MDA0ODmuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8891, '2016-08-11 07:58:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:14.469163Z","gw_timestamp":171853187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADcwMDUyNzAxMjI0MDA0ODmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8893, '2016-08-11 07:58:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:28.829455Z","gw_timestamp":186215899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxOTAxMjI0MDA0ODmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8895, '2016-08-11 07:58:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:58:50.381265Z","gw_timestamp":207760443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0NTAxMjI0MDA0ODmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8897, '2016-08-11 07:59:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:04.732201Z","gw_timestamp":222123155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUyMTAxMjI0MDA0ODmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8899, '2016-08-11 07:59:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8134,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:19.089952Z","gw_timestamp":236486915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUxNDAxMjIzMDA0ODmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8901, '2016-08-11 07:59:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:33.461832Z","gw_timestamp":250850667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzOTAxMjIzMDA0ODmvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8903, '2016-08-11 07:59:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:59:47.827282Z","gw_timestamp":265213387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU1MDAxMjIzMDA0ODmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8905, '2016-08-11 08:00:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:02.212669Z","gw_timestamp":279576931,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUzMjAxMjIzMDA0ODmreg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8907, '2016-08-11 08:00:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:16.555573Z","gw_timestamp":293940691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzMDAxMjIzMDA0ODmvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8919, '2016-08-11 08:01:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:35.540586Z","gw_timestamp":372937955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDUyMzAxMjIzMDA0OTCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8880, '2016-08-11 07:57:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:56:55.456687Z","gw_timestamp":92852995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUyODAxMjI0MDA0ODexqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8910, '2016-08-11 08:00:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:30.924972Z","gw_timestamp":308303715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU3MDAxMjIzMDA0OTCwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8912, '2016-08-11 08:00:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:45.270194Z","gw_timestamp":322667163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDU1MjAxMjIzMDA0OTC0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8914, '2016-08-11 08:01:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:59.638708Z","gw_timestamp":337030811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDQ3NjAxMjIzMDA0OTCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8916, '2016-08-11 08:01:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:14.000702Z","gw_timestamp":351394043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU0NzAxMjIzMDA0OTCt6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8918, '2016-08-11 08:01:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:28.360949Z","gw_timestamp":365756755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyNzAxMjIzMDA0OTCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8920, '2016-08-11 08:01:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:49.90795Z","gw_timestamp":387301715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0NTAxMjIzMDA0OTGxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8922, '2016-08-11 08:02:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:04.274202Z","gw_timestamp":401665363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUzNDAxMjIzMDA0OTGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8924, '2016-08-11 08:02:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:18.628463Z","gw_timestamp":416027979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzMjAxMjIzMDA0OTGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8926, '2016-08-11 08:02:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:33.012963Z","gw_timestamp":430390795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU3MjAxMjIzMDA0OTGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8928, '2016-08-11 08:02:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:47.38931Z","gw_timestamp":444754555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDUyMTAxMjIzMDA0OTGsyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8930, '2016-08-11 08:03:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:01.742803Z","gw_timestamp":459117155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDUzMjAxMjIzMDA0OTGvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8932, '2016-08-11 08:03:10', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":846,"f_cnt_down":1514,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:03:06.063522Z","gw_timestamp":3502766188,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AykwMDQ4ODAxMjMwMDA0NTEM0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8934, '2016-08-11 08:03:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:16.081717Z","gw_timestamp":473480915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDU1NDAxMjIzMDA0OTGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8883, '2016-08-11 07:57:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T07:57:17.014691Z","gw_timestamp":114398475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDU0MTAxMjI0MDA0ODizew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8909, '2016-08-11 08:00:34', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":846,"f_cnt_down":1552,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:00:26.902555Z","gw_timestamp":3343605148,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A1EwMDU3NTAxMjE4MDA0OTIIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8911, '2016-08-11 08:00:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:38.087583Z","gw_timestamp":315485227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyNzAxMjIzMDA0OTCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8913, '2016-08-11 08:01:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:52.462092Z","gw_timestamp":329848987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU0MTAxMjIzMDA0OTCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8915, '2016-08-11 08:01:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:06.820424Z","gw_timestamp":344212531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyNTAxMjIzMDA0OTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8917, '2016-08-11 08:01:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:21.220587Z","gw_timestamp":358575347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU2NTAxMjIzMDA0OTCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8951, '2016-08-11 08:05:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:18.173566Z","gw_timestamp":595568315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU4NDAxMjIzMDA0OTOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8953, '2016-08-11 08:05:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:32.531877Z","gw_timestamp":609931027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDUxODAxMjIzMDA0OTOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8955, '2016-08-11 08:05:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:46.906102Z","gw_timestamp":624294675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDUyNTAxMjIzMDA0OTOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8957, '2016-08-11 08:06:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:01.263219Z","gw_timestamp":638658331,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU3NTAxMjIzMDA0OTOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8959, '2016-08-11 08:06:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:15.626464Z","gw_timestamp":653022083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDU0NzAxMjIzMDA0OTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8961, '2016-08-11 08:06:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:29.993841Z","gw_timestamp":667385739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUyNzAxMjIzMDA0OTOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8963, '2016-08-11 08:06:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:44.388374Z","gw_timestamp":681749491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyMzAxMjIzMDA0OTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8970, '2016-08-11 08:07:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:34.654641Z","gw_timestamp":732021227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU1MjAxMjIzMDA0OTSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8908, '2016-08-11 08:00:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:00:23.734195Z","gw_timestamp":301122515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUyNzAxMjIzMDA0OTCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8944, '2016-08-11 08:04:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:27.917181Z","gw_timestamp":545296779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUzODAxMjIzMDA0OTKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8946, '2016-08-11 08:04:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:42.262217Z","gw_timestamp":559659803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUyMTAxMjIzMDA0OTKzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8948, '2016-08-11 08:05:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:56.634616Z","gw_timestamp":574022731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDU3NzAxMjIzMDA0OTKu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8950, '2016-08-11 08:05:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:10.990985Z","gw_timestamp":588386379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDU2MTAxMjIzMDA0OTOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8952, '2016-08-11 08:05:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:25.362367Z","gw_timestamp":602749515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDUxMjAxMjIzMDA0OTOyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8954, '2016-08-11 08:05:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:39.725338Z","gw_timestamp":617112747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUzODAxMjIzMDA0OTOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8956, '2016-08-11 08:06:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:54.088855Z","gw_timestamp":631476499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDU3OTAxMjIzMDA0OTOu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8958, '2016-08-11 08:06:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:08.443242Z","gw_timestamp":645840259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDU2ODAxMjIzMDA0OTOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8960, '2016-08-11 08:06:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:22.810467Z","gw_timestamp":660203907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDUyMTAxMjIzMDA0OTOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8962, '2016-08-11 08:06:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:37.171468Z","gw_timestamp":674567563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU1MDAxMjIzMDA0OTOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8964, '2016-08-11 08:06:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:06:51.536992Z","gw_timestamp":688931315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUyMTAxMjIzMDA0OTOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8966, '2016-08-11 08:07:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:05.893953Z","gw_timestamp":703293931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1MjAxMjIzMDA0OTOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8968, '2016-08-11 08:07:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:20.258593Z","gw_timestamp":717657683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDU1NDAxMjIzMDA0OTOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8921, '2016-08-11 08:02:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:01:57.119845Z","gw_timestamp":394483547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDU0MTAxMjIzMDA0OTGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8923, '2016-08-11 08:02:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:11.457836Z","gw_timestamp":408846563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU1NjAxMjIzMDA0OTGu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8925, '2016-08-11 08:02:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:25.819085Z","gw_timestamp":423208971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUxMjAxMjIzMDA0OTGveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8927, '2016-08-11 08:02:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:40.18159Z","gw_timestamp":437572627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzODAxMjIzMDA0OTGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8929, '2016-08-11 08:03:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:02:54.548714Z","gw_timestamp":451935547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDUyMzAxMjIzMDA0OTGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8931, '2016-08-11 08:03:07', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":845,"f_cnt_down":1513,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:24:57.225946Z","gw_timestamp":2138583332,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AykwMDQ4ODAxMjMwMDA0NTEM0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8933, '2016-08-11 08:03:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:08.90096Z","gw_timestamp":466299091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDUzNDAxMjIzMDA0OTGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8935, '2016-08-11 08:03:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:23.267492Z","gw_timestamp":480662739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDU1MDAxMjIzMDA0OTG0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8937, '2016-08-11 08:03:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:37.659733Z","gw_timestamp":495026395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzODAxMjIzMDA0OTGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8939, '2016-08-11 08:04:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:52.002712Z","gw_timestamp":509389107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADowMDU4NjAxMjIzMDA0OTKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8941, '2016-08-11 08:04:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:06.355341Z","gw_timestamp":523751931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDU0NzAxMjIzMDA0OTKu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8943, '2016-08-11 08:04:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:20.724287Z","gw_timestamp":538115371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUwODAxMjIzMDA0OTKuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8945, '2016-08-11 08:04:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:35.081589Z","gw_timestamp":552478187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD0wMDUxMjAxMjIzMDA0OTKy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8947, '2016-08-11 08:04:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:49.446823Z","gw_timestamp":566840899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDU1NjAxMjIzMDA0OTKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8936, '2016-08-11 08:03:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:30.446463Z","gw_timestamp":487844467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADwwMDUzODAxMjIzMDA0OTGu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8938, '2016-08-11 08:03:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:44.810091Z","gw_timestamp":502207803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0MzAxMjIzMDA0OTKzqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8940, '2016-08-11 08:04:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:03:59.171262Z","gw_timestamp":516570835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADkwMDQ5OTAxMjIzMDA0OTKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8942, '2016-08-11 08:04:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:04:13.588985Z","gw_timestamp":530933651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD4wMDU0MzAxMjIzMDA0OTKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8972, '2016-08-11 08:07:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:48.993834Z","gw_timestamp":746384051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU1MjAxMjIzMDA0OTSyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8974, '2016-08-11 08:08:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:03.346452Z","gw_timestamp":760747803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyMzAxMjIzMDA0OTSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8976, '2016-08-11 08:08:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:17.721297Z","gw_timestamp":775111355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUxNjAxMjIzMDA0OTSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8978, '2016-08-11 08:08:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:32.081595Z","gw_timestamp":789475003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDUyMTAxMjIzMDA0OTOyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8980, '2016-08-11 08:08:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:46.447977Z","gw_timestamp":803837715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUyMTAxMjIzMDA0OTSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8982, '2016-08-11 08:09:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:00.804268Z","gw_timestamp":818200635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1NDAxMjIzMDA0OTSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8984, '2016-08-11 08:09:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:15.168483Z","gw_timestamp":832564187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU0MTAxMjIyMDA0OTSu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8986, '2016-08-11 08:09:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:29.531726Z","gw_timestamp":846926899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyMTAxMjIzMDA0OTSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8988, '2016-08-11 08:09:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:43.898981Z","gw_timestamp":861290659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1NjAxMjIyMDA0OTSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8990, '2016-08-11 08:10:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:58.263347Z","gw_timestamp":875654307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1NjAxMjIyMDA0OTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8949, '2016-08-11 08:05:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:05:03.81209Z","gw_timestamp":581204555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ADswMDUxMjAxMjIzMDA0OTOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8967, '2016-08-11 08:07:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:13.076732Z","gw_timestamp":710475859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU3MjAxMjIzMDA0OTOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8969, '2016-08-11 08:07:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8202,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:27.445842Z","gw_timestamp":724839507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1MDAxMjIzMDA0OTSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8971, '2016-08-11 08:07:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:41.809233Z","gw_timestamp":739202955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUzODAxMjIzMDA0OTOvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8973, '2016-08-11 08:07:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:07:56.175404Z","gw_timestamp":753565875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0NTAxMjIzMDA0OTSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8975, '2016-08-11 08:08:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:10.535722Z","gw_timestamp":767929523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU2ODAxMjIzMDA0OTOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8977, '2016-08-11 08:08:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:24.923475Z","gw_timestamp":782293283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU0NzAxMjIzMDA0OTSx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8979, '2016-08-11 08:08:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:39.259225Z","gw_timestamp":796656723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MTAxMjIzMDA0OTSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8981, '2016-08-11 08:09:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:08:53.640853Z","gw_timestamp":811019643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDQ4MjAxMjIzMDA0OTSyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8983, '2016-08-11 08:09:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:07.983978Z","gw_timestamp":825382363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUwODAxMjIzMDA0OTSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8985, '2016-08-11 08:09:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:22.354088Z","gw_timestamp":839745699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU3NzAxMjIyMDA0OTSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8987, '2016-08-11 08:09:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:36.727621Z","gw_timestamp":854108731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU3NzAxMjIzMDA0OTSxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8989, '2016-08-11 08:10:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:09:51.075721Z","gw_timestamp":868472483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUxMjAxMjIyMDA0OTWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8991, '2016-08-11 08:10:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:05.43998Z","gw_timestamp":882836027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1NjAxMjIyMDA0OTWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8965, '2016-08-11 08:07:07', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1325,"f_cnt_down":2131,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:06:54.366581Z","gw_timestamp":3731069356,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:28:45.52901Z","gw_timestamp":2366886396,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AaQwMDU2MTAxMjE3MDA0NzIJwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8995, '2016-08-11 08:10:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:34.18191Z","gw_timestamp":911562499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUzNDAxMjIyMDA0OTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8997, '2016-08-11 08:10:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:41.347487Z","gw_timestamp":918744323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDU3NjAxMjIyMDA0OTWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8999, '2016-08-11 08:11:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:55.708353Z","gw_timestamp":933108083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUzMjAxMjIyMDA0OTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9001, '2016-08-11 08:11:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:17.258362Z","gw_timestamp":954652515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU0MTAxMjIyMDA0OTWx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9003, '2016-08-11 08:11:32', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":764,"f_cnt_down":1351,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:11:25.647446Z","gw_timestamp":4002350348,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AW4wMDYzOTAxMjE5MDA1MDYHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9005, '2016-08-11 08:11:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:38.802239Z","gw_timestamp":976197259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUzNDAxMjIyMDA0OTayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9007, '2016-08-11 08:12:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:53.157475Z","gw_timestamp":990560699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUyMTAxMjIyMDA0OTaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9009, '2016-08-11 08:12:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:07.56596Z","gw_timestamp":1004924563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU1MDAxMjIyMDA0OTav+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9011, '2016-08-11 08:12:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:21.894668Z","gw_timestamp":1019288115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU1MjAxMjIyMDA0OTawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9013, '2016-08-11 08:12:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:36.258359Z","gw_timestamp":1033651867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU2NzAxMjIyMDA0OTawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9041, '2016-08-11 08:15:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:50.166239Z","gw_timestamp":1227557827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU3NjAxMjIyMDA0OTixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9043, '2016-08-11 08:16:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:04.516851Z","gw_timestamp":1241921475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUxODAxMjIyMDA0OTivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8992, '2016-08-11 08:10:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:12.642996Z","gw_timestamp":890017963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUyNzAxMjIyMDA0OTWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8996, '2016-08-11 08:10:42', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":763,"f_cnt_down":1350,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:10:36.282797Z","gw_timestamp":3952985676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AW4wMDYzOTAxMjE5MDA1MDYHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8998, '2016-08-11 08:10:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:48.529731Z","gw_timestamp":925926251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDQ4OTAxMjIyMDA0OTWvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9000, '2016-08-11 08:11:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:10.081792Z","gw_timestamp":947471515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU2MzAxMjIyMDA0OTWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9002, '2016-08-11 08:11:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:24.439982Z","gw_timestamp":961834443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1OTAxMjIyMDA0OTaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9004, '2016-08-11 08:11:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:31.617872Z","gw_timestamp":969016267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUzMjAxMjIyMDA0OTauag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9006, '2016-08-11 08:11:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:11:45.992261Z","gw_timestamp":983378987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU0NTAxMjIyMDA0OTawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9008, '2016-08-11 08:12:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:00.351102Z","gw_timestamp":997742635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUwNjAxMjIyMDA0OTawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9010, '2016-08-11 08:12:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:14.712486Z","gw_timestamp":1012106387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUxMjAxMjIyMDA0OTayyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9012, '2016-08-11 08:12:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:29.073727Z","gw_timestamp":1026470043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyMzAxMjIyMDA0OTavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9014, '2016-08-11 08:12:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:43.431986Z","gw_timestamp":1040832859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU1NDAxMjIyMDA0OTax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9016, '2016-08-11 08:13:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:57.807478Z","gw_timestamp":1055196515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU3MjAxMjIyMDA0OTaxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9018, '2016-08-11 08:13:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:12.169251Z","gw_timestamp":1069560259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1NDAxMjIyMDA0OTayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9020, '2016-08-11 08:13:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:26.518858Z","gw_timestamp":1083923083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU0NzAxMjIyMDA0OTawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8993, '2016-08-11 08:10:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:19.803226Z","gw_timestamp":897199779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU0NzAxMjIyMDA0OTWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9015, '2016-08-11 08:12:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:12:50.610869Z","gw_timestamp":1048014579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0NTAxMjIyMDA0OTaxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9017, '2016-08-11 08:13:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:04.978862Z","gw_timestamp":1062378331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1NjAxMjIyMDA0OTav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9019, '2016-08-11 08:13:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:19.342235Z","gw_timestamp":1076741987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDQ3NDAxMjIyMDA0OTav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9021, '2016-08-11 08:13:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8253,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:33.708486Z","gw_timestamp":1091104595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyMTAxMjIyMDA0OTewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9023, '2016-08-11 08:13:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:48.095863Z","gw_timestamp":1105468355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDQ5NzAxMjIyMDA0OTevKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9025, '2016-08-11 08:14:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:02.443356Z","gw_timestamp":1119832107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUxNDAxMjIyMDA0OTewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9027, '2016-08-11 08:14:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:16.790242Z","gw_timestamp":1134194715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUyMzAxMjIyMDA0OTeySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9029, '2016-08-11 08:14:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:31.153606Z","gw_timestamp":1148557427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU0MTAxMjIyMDA0OTe1Gw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9031, '2016-08-11 08:14:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:45.521861Z","gw_timestamp":1162921187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU1NDAxMjIyMDA0OTixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9033, '2016-08-11 08:15:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:59.91443Z","gw_timestamp":1177284835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU2MzAxMjIyMDA0OTiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9035, '2016-08-11 08:15:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:14.244604Z","gw_timestamp":1191648483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUzNjAxMjIyMDA0OTixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9037, '2016-08-11 08:15:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:28.610608Z","gw_timestamp":1206012243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzNDAxMjIyMDA0OTixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9054, '2016-08-11 08:17:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:23.519135Z","gw_timestamp":1320918955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU2MzAxMjIyMDA0OTmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (8994, '2016-08-11 08:10:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:10:26.981853Z","gw_timestamp":904380779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUzNDAxMjIyMDA0OTWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9028, '2016-08-11 08:14:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:23.993196Z","gw_timestamp":1141375923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUyMzAxMjIyMDA0OTe0Sw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9030, '2016-08-11 08:14:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:38.343241Z","gw_timestamp":1155739363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU0NTAxMjIyMDA0OTiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9032, '2016-08-11 08:15:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:52.703757Z","gw_timestamp":1170103011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU0MTAxMjIyMDA0OTixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9034, '2016-08-11 08:15:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:07.068725Z","gw_timestamp":1184466659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUxNDAxMjIyMDA0OTiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9036, '2016-08-11 08:15:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:21.436992Z","gw_timestamp":1198830419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDQ4NDAxMjIyMDA0OTiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9038, '2016-08-11 08:15:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:35.802372Z","gw_timestamp":1213194179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU1MDAxMjIyMDA0OTiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9040, '2016-08-11 08:15:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:42.970986Z","gw_timestamp":1220375899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUzMDAxMjIyMDA0OTiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9042, '2016-08-11 08:16:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:15:57.345246Z","gw_timestamp":1234739651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUyNzAxMjIyMDA0OTivWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9044, '2016-08-11 08:16:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:11.710487Z","gw_timestamp":1249103195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU4NzAxMjIyMDA0OTivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9046, '2016-08-11 08:16:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:26.073738Z","gw_timestamp":1263467059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyMTAxMjIyMDA0OTixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9048, '2016-08-11 08:16:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:40.442265Z","gw_timestamp":1277829979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUzNDAxMjIyMDA0OTiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9050, '2016-08-11 08:17:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:54.811631Z","gw_timestamp":1292193315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU0NTAxMjIyMDA0OTixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9052, '2016-08-11 08:17:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:09.150619Z","gw_timestamp":1306556131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU2NzAxMjIyMDA0OTmvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9022, '2016-08-11 08:13:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:40.907385Z","gw_timestamp":1098286523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU0NzAxMjIyMDA0OTex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9024, '2016-08-11 08:14:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:13:55.248309Z","gw_timestamp":1112650283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUwMzAxMjIyMDA0OTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9026, '2016-08-11 08:14:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:14:09.615604Z","gw_timestamp":1127013099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0MTAxMjIyMDA0OTew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9070, '2016-08-11 08:19:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:18.423467Z","gw_timestamp":1435824307,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU0NzAxMjIyMDA1MDCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9072, '2016-08-11 08:19:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:32.799562Z","gw_timestamp":1450187963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUxMTAxMjIyMDA1MDCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9074, '2016-08-11 08:19:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:47.149629Z","gw_timestamp":1464551715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU1NDAxMjIxMDA1MDCuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9076, '2016-08-11 08:20:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:01.514125Z","gw_timestamp":1478914323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU1ODAxMjIxMDA1MDCuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9078, '2016-08-11 08:20:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:15.879244Z","gw_timestamp":1493278083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU1MDAxMjIxMDA1MDCu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9080, '2016-08-11 08:20:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:30.248772Z","gw_timestamp":1507641731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzNDAxMjIxMDA1MDCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9096, '2016-08-11 08:22:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:17.964271Z","gw_timestamp":1615365779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyNDAxMjIxMDA1MDKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9098, '2016-08-11 08:22:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:32.328267Z","gw_timestamp":1629729227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzNjAxMjIxMDA1MDKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9100, '2016-08-11 08:22:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:46.691635Z","gw_timestamp":1644092875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUwMTAxMjIxMDA1MDKyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9102, '2016-08-11 08:23:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:01.060888Z","gw_timestamp":1658456523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU1MDAxMjIxMDA1MDKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9104, '2016-08-11 08:23:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:15.420349Z","gw_timestamp":1672819139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUxMTAxMjIxMDA1MDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9039, '2016-08-11 08:15:44', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":847,"f_cnt_down":1553,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:15:37.678056Z","gw_timestamp":4254381076,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:53.87321Z","gw_timestamp":2890197892,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNIwMDY3NjAxMjE5MDA1MDIGcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9045, '2016-08-11 08:16:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:18.88112Z","gw_timestamp":1256285131,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU1MDAxMjIyMDA0OTiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9047, '2016-08-11 08:16:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:33.259496Z","gw_timestamp":1270648779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU0MTAxMjIyMDA0OTiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9049, '2016-08-11 08:16:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:16:47.618128Z","gw_timestamp":1285011491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUxODAxMjIyMDA0OTiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9051, '2016-08-11 08:17:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:01.990263Z","gw_timestamp":1299374315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU1NjAxMjIyMDA0OTmuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9053, '2016-08-11 08:17:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:16.33623Z","gw_timestamp":1313737859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUwNzAxMjIyMDA0OTmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9055, '2016-08-11 08:17:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:30.706369Z","gw_timestamp":1328100675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU3ODAxMjIyMDA0OTmzOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9057, '2016-08-11 08:17:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:45.060749Z","gw_timestamp":1342463291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyMDAxMjIyMDA0OTmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9059, '2016-08-11 08:18:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:59.420125Z","gw_timestamp":1356827035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU2MTAxMjIyMDA0OTmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9061, '2016-08-11 08:18:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:13.78637Z","gw_timestamp":1371189643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU2NTAxMjIyMDA0OTmv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9063, '2016-08-11 08:18:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:20.968997Z","gw_timestamp":1378371579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU0MDAxMjIyMDA0OTmvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9065, '2016-08-11 08:18:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:35.341251Z","gw_timestamp":1392735123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUxNTAxMjIyMDA1MDCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9067, '2016-08-11 08:18:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:49.703495Z","gw_timestamp":1407097947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUzNjAxMjIyMDA1MDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9056, '2016-08-11 08:17:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8287,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:37.886355Z","gw_timestamp":1335282291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzNDAxMjIyMDA0OTmzOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9058, '2016-08-11 08:18:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:17:52.239376Z","gw_timestamp":1349645219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUyMDAxMjIyMDA0OTmzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9060, '2016-08-11 08:18:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:06.613741Z","gw_timestamp":1364008651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU1MjAxMjIyMDA0OTmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9062, '2016-08-11 08:18:22', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":846,"f_cnt_down":1515,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:18:16.926383Z","gw_timestamp":118662180,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BcQwMDUyNDAxMjMyMDA0NTQMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9064, '2016-08-11 08:18:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:28.148633Z","gw_timestamp":1385553403,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUyNzAxMjIyMDA0OTmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9066, '2016-08-11 08:18:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:42.520092Z","gw_timestamp":1399916947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0MDAxMjIyMDA1MDCzmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9068, '2016-08-11 08:19:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:18:56.874111Z","gw_timestamp":1414279771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE0wMDU0MzAxMjIyMDA1MDCu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9082, '2016-08-11 08:20:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:44.609745Z","gw_timestamp":1522005483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU1MDAxMjIxMDA1MDCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9084, '2016-08-11 08:21:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:59.001521Z","gw_timestamp":1536368099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUzODAxMjIxMDA1MDCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9086, '2016-08-11 08:21:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:13.342384Z","gw_timestamp":1550731851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU1MjAxMjIxMDA1MDCuOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9088, '2016-08-11 08:21:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:27.693499Z","gw_timestamp":1565095499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU2MTAxMjIxMDA1MDGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9090, '2016-08-11 08:21:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8321,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:42.062882Z","gw_timestamp":1579458219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyMDAxMjIxMDA1MDGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9092, '2016-08-11 08:22:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:56.413131Z","gw_timestamp":1593821867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUzODAxMjIxMDA1MDGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9094, '2016-08-11 08:22:12', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1326,"f_cnt_down":2132,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:22:05.19646Z","gw_timestamp":346932364,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AeowMDU1MTAxMjE4MDA0NzYMoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9069, '2016-08-11 08:19:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:04.054572Z","gw_timestamp":1421461283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU1MjAxMjIyMDA1MDCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9111, '2016-08-11 08:24:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:05.682639Z","gw_timestamp":1723090147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU1MjAxMjIxMDA1MDOyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9113, '2016-08-11 08:24:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:20.057889Z","gw_timestamp":1737453899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MzAxMjIxMDA1MDOy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9115, '2016-08-11 08:24:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:34.422136Z","gw_timestamp":1751817027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU4NzAxMjIxMDA1MDOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9117, '2016-08-11 08:24:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:48.778387Z","gw_timestamp":1766179531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1MDAxMjIxMDA1MDOvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9119, '2016-08-11 08:25:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:03.133743Z","gw_timestamp":1780542971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU1MjAxMjIxMDA1MDOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9121, '2016-08-11 08:25:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:24.683765Z","gw_timestamp":1802088459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUwNzAxMjIxMDA1MDOvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9123, '2016-08-11 08:25:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:39.049891Z","gw_timestamp":1816452211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU1MjAxMjIxMDA1MDOvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9125, '2016-08-11 08:26:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:53.406139Z","gw_timestamp":1830815859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU1MjAxMjIxMDA1MDOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9127, '2016-08-11 08:26:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:07.788597Z","gw_timestamp":1845179507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU1MjAxMjIxMDA1MDOsWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9131, '2016-08-11 08:26:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:36.505944Z","gw_timestamp":1873906915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MDAxMjIxMDA1MDOyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9133, '2016-08-11 08:26:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:43.69091Z","gw_timestamp":1881088843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0NzAxMjIxMDA1MDSziw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9135, '2016-08-11 08:27:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:05.235473Z","gw_timestamp":1902634003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUxNTAxMjIxMDA1MDSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9137, '2016-08-11 08:27:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:19.594758Z","gw_timestamp":1916997035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU3NjAxMjIxMDA1MDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9071, '2016-08-11 08:19:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:25.612685Z","gw_timestamp":1443006131,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUxMTAxMjIyMDA1MDCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9073, '2016-08-11 08:19:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:39.973133Z","gw_timestamp":1457369787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUzNDAxMjIxMDA1MDCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9075, '2016-08-11 08:20:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:19:54.330878Z","gw_timestamp":1471732811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDQ5NDAxMjIxMDA1MDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9077, '2016-08-11 08:20:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:08.709752Z","gw_timestamp":1486096259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUwMzAxMjIxMDA1MDCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9079, '2016-08-11 08:20:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:23.075589Z","gw_timestamp":1500459907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU2MTAxMjIxMDA1MDCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9081, '2016-08-11 08:20:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:37.427131Z","gw_timestamp":1514823659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUzNDAxMjIxMDA1MDCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9083, '2016-08-11 08:21:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:20:51.778381Z","gw_timestamp":1529186787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUyOTAxMjIxMDA1MDCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9085, '2016-08-11 08:21:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:06.142632Z","gw_timestamp":1543550027,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzMTAxMjIxMDA1MDCyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9087, '2016-08-11 08:21:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:20.521637Z","gw_timestamp":1557913675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU0MDAxMjIxMDA1MDCxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9089, '2016-08-11 08:21:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:34.877249Z","gw_timestamp":1572277123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU0NTAxMjIxMDA1MDGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9091, '2016-08-11 08:21:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:21:49.231706Z","gw_timestamp":1586640147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU1MDAxMjIxMDA1MDGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9093, '2016-08-11 08:22:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:03.610009Z","gw_timestamp":1601002859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU0MzAxMjIxMDA1MDKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9095, '2016-08-11 08:22:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:10.787382Z","gw_timestamp":1608184683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU2NTAxMjIxMDA1MDKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9097, '2016-08-11 08:22:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:25.145638Z","gw_timestamp":1622547299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzNDAxMjIxMDA1MDKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9099, '2016-08-11 08:22:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:39.523146Z","gw_timestamp":1636911051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyOTAxMjIxMDA1MDKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9101, '2016-08-11 08:23:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:22:53.876896Z","gw_timestamp":1651274699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUxNTAxMjIxMDA1MDKuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9103, '2016-08-11 08:23:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:08.241508Z","gw_timestamp":1665637939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUwOTAxMjIxMDA1MDKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9105, '2016-08-11 08:23:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:22.594746Z","gw_timestamp":1680001067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzMTAxMjIxMDA1MDKu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9107, '2016-08-11 08:23:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8337,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:36.969125Z","gw_timestamp":1694363779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDQ5OTAxMjIxMDA1MDKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9109, '2016-08-11 08:23:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:51.333509Z","gw_timestamp":1708726699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU1MDAxMjIxMDA1MDKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9129, '2016-08-11 08:26:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:22.139758Z","gw_timestamp":1859543363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0NTAxMjIxMDA1MDOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9141, '2016-08-11 08:27:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8372,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:48.335529Z","gw_timestamp":1945724339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyNzAxMjIxMDA1MDSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9143, '2016-08-11 08:28:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:02.690293Z","gw_timestamp":1960087779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDQ5NzAxMjIxMDA1MDSuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9145, '2016-08-11 08:28:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:17.040893Z","gw_timestamp":1974450699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUwMTAxMjIxMDA1MDSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9147, '2016-08-11 08:28:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:31.404146Z","gw_timestamp":1988813515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUxMTAxMjIxMDA1MDSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9149, '2016-08-11 08:28:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:45.769519Z","gw_timestamp":2003176955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUxMzAxMjIxMDA1MDSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9151, '2016-08-11 08:29:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:00.137776Z","gw_timestamp":2017539883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUzODAxMjIxMDA1MDSxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9153, '2016-08-11 08:29:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:14.508294Z","gw_timestamp":2031903427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUxMTAxMjIxMDA1MDSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9106, '2016-08-11 08:23:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:29.774744Z","gw_timestamp":1687182051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUxNTAxMjIxMDA1MDKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9112, '2016-08-11 08:24:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:12.863258Z","gw_timestamp":1730272075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU4NzAxMjIxMDA1MDOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9114, '2016-08-11 08:24:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:27.236495Z","gw_timestamp":1744635619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1MDAxMjIxMDA1MDOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9132, '2016-08-11 08:26:45', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":764,"f_cnt_down":1352,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:26:36.428886Z","gw_timestamp":618164916,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AYQwMDY5NTAxMjIxMDA1MTQIYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9140, '2016-08-11 08:27:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:41.138702Z","gw_timestamp":1938542507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyMjAxMjIxMDA1MDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9142, '2016-08-11 08:28:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:55.504018Z","gw_timestamp":1952906163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU2MzAxMjIxMDA1MDSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9176, '2016-08-11 08:32:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:06.854272Z","gw_timestamp":2204266819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUxMzAxMjIxMDA1MDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9178, '2016-08-11 08:32:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:21.238926Z","gw_timestamp":2218630579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AD8wMDU0MzAxMjIxMDA1MDaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9180, '2016-08-11 08:32:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:35.605291Z","gw_timestamp":2232994123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU2NzAxMjIxMDA1MDaxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9182, '2016-08-11 08:32:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:49.945131Z","gw_timestamp":2247357147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUzNDAxMjIwMDA1MDax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9184, '2016-08-11 08:33:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:04.310403Z","gw_timestamp":2261719651,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU1MjAxMjIxMDA1MDaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9186, '2016-08-11 08:33:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:18.680279Z","gw_timestamp":2276083307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUzODAxMjIwMDA1MDayaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9206, '2016-08-11 08:35:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:20.768538Z","gw_timestamp":2398170691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDQ5OTAxMjIwMDA1MDayGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9208, '2016-08-11 08:35:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:42.309415Z","gw_timestamp":2419716267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUyNDAxMjIwMDA1MDevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9108, '2016-08-11 08:23:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:44.14863Z","gw_timestamp":1701545499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0NzAxMjIxMDA1MDKxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9110, '2016-08-11 08:24:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:23:58.502997Z","gw_timestamp":1715908315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyMDAxMjIxMDA1MDOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9116, '2016-08-11 08:24:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:41.602111Z","gw_timestamp":1758998227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzNjAxMjIxMDA1MDOxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9118, '2016-08-11 08:25:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:24:55.975903Z","gw_timestamp":1773361043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU3NjAxMjIxMDA1MDOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9120, '2016-08-11 08:25:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:10.317495Z","gw_timestamp":1787724803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDQ4ODAxMjIxMDA1MDOyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9122, '2016-08-11 08:25:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:31.883798Z","gw_timestamp":1809270275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUxNTAxMjIxMDA1MDOv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9124, '2016-08-11 08:25:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:25:46.229184Z","gw_timestamp":1823634027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyOTAxMjIxMDA1MDOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9126, '2016-08-11 08:26:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:00.589765Z","gw_timestamp":1837997579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzMTAxMjIxMDA1MDOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9128, '2016-08-11 08:26:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:14.957147Z","gw_timestamp":1852361435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU2NTAxMjIxMDA1MDOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9130, '2016-08-11 08:26:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:29.324436Z","gw_timestamp":1866724987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUzMTAxMjIxMDA1MDOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9134, '2016-08-11 08:27:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:26:58.073164Z","gw_timestamp":1895452395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzNjAxMjIxMDA1MDSvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9136, '2016-08-11 08:27:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:12.414146Z","gw_timestamp":1909815107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzODAxMjIxMDA1MDSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9138, '2016-08-11 08:27:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:26.77351Z","gw_timestamp":1924178859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzNjAxMjIxMDA1MDSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9144, '2016-08-11 08:28:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:09.860254Z","gw_timestamp":1967268875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUwNTAxMjIxMDA1MDSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9139, '2016-08-11 08:27:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:27:33.952401Z","gw_timestamp":1931360579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyNzAxMjIxMDA1MDSy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9157, '2016-08-11 08:29:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:43.230744Z","gw_timestamp":2060630835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyOTAxMjIxMDA1MDSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9159, '2016-08-11 08:30:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:57.582887Z","gw_timestamp":2074994691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1ODAxMjIxMDA1MDWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9161, '2016-08-11 08:30:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:19.134298Z","gw_timestamp":2096539963,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU0NTAxMjIxMDA1MDWyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9191, '2016-08-11 08:33:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:47.396665Z","gw_timestamp":2304810499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUxNTAxMjIwMDA1MDazyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9193, '2016-08-11 08:33:55', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":849,"f_cnt_down":1519,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:44:08.651978Z","gw_timestamp":3984976660,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-111,"snr":-13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0EwMDU0ODAxMjMzMDA0NTMj0g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9195, '2016-08-11 08:34:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:01.827304Z","gw_timestamp":2319173419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0NDAxMjIwMDA1MDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9197, '2016-08-11 08:34:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:16.129783Z","gw_timestamp":2333536859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyNzAxMjIwMDA1MDay+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9199, '2016-08-11 08:34:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:30.493025Z","gw_timestamp":2347899051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDQ5MDAxMjIwMDA1MDawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9201, '2016-08-11 08:34:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:44.849411Z","gw_timestamp":2362262395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUyMjAxMjIwMDA1MDayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9207, '2016-08-11 08:35:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:35.119787Z","gw_timestamp":2412534339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUwMzAxMjIwMDA1MDau2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9209, '2016-08-11 08:35:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:49.484159Z","gw_timestamp":2426898091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU4MDAxMjIwMDA1MDewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9211, '2016-08-11 08:36:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:03.875673Z","gw_timestamp":2441260803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUxNTAxMjIwMDA1MDex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9213, '2016-08-11 08:36:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:18.22305Z","gw_timestamp":2455624451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyNjAxMjIwMDA1MDewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9146, '2016-08-11 08:28:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:24.220519Z","gw_timestamp":1981632523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU0NTAxMjIxMDA1MDSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9148, '2016-08-11 08:28:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:38.615648Z","gw_timestamp":1995995339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyOTAxMjIxMDA1MDSyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9150, '2016-08-11 08:29:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:28:52.954485Z","gw_timestamp":2010357955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUzODAxMjIxMDA1MDSuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9152, '2016-08-11 08:29:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:07.321393Z","gw_timestamp":2024721707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDQ3ODAxMjIxMDA1MDSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9154, '2016-08-11 08:29:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:21.675643Z","gw_timestamp":2039085355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU2NzAxMjIxMDA1MDSyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9156, '2016-08-11 08:29:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:36.041897Z","gw_timestamp":2053449219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDQ4NjAxMjIxMDA1MDSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9158, '2016-08-11 08:29:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:50.402146Z","gw_timestamp":2067812763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDQ5NzAxMjIxMDA1MDSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9160, '2016-08-11 08:30:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:11.946154Z","gw_timestamp":2089358339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU0MzAxMjIxMDA1MDWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9162, '2016-08-11 08:30:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:26.313391Z","gw_timestamp":2103721891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUyMDAxMjIxMDA1MDWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9164, '2016-08-11 08:30:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:40.676643Z","gw_timestamp":2118084707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUxNTAxMjIxMDA1MDWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9166, '2016-08-11 08:30:57', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":848,"f_cnt_down":1554,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:30:48.453353Z","gw_timestamp":870189500,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BRcwMDcxMjAxMjIyMDA1MDcI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9168, '2016-08-11 08:31:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:02.227653Z","gw_timestamp":2139630187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU1MDAxMjIxMDA1MDWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9170, '2016-08-11 08:31:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:16.592907Z","gw_timestamp":2153994035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU0MzAxMjIxMDA1MDWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9172, '2016-08-11 08:31:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:38.130776Z","gw_timestamp":2175539523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDQ5NDAxMjIxMDA1MDWzSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9155, '2016-08-11 08:29:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:29:28.868639Z","gw_timestamp":2046267291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU2MTAxMjIxMDA1MDSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9163, '2016-08-11 08:30:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:33.493019Z","gw_timestamp":2110903195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1NjAxMjIxMDA1MDWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9165, '2016-08-11 08:30:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:47.855655Z","gw_timestamp":2125266531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUzNjAxMjIxMDA1MDWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9167, '2016-08-11 08:31:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:30:55.053364Z","gw_timestamp":2132448459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUyNDAxMjIxMDA1MDWu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9169, '2016-08-11 08:31:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:09.407263Z","gw_timestamp":2146812115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDUwOTAxMjIxMDA1MDWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9171, '2016-08-11 08:31:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:30.97642Z","gw_timestamp":2168357587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyNzAxMjIxMDA1MDWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9173, '2016-08-11 08:31:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:45.316396Z","gw_timestamp":2182721243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyNzAxMjIxMDA1MDWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9175, '2016-08-11 08:32:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:59.675654Z","gw_timestamp":2197084995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU0MzAxMjIxMDA1MDawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9177, '2016-08-11 08:32:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:14.035152Z","gw_timestamp":2211448755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MDAxMjIwMDA1MDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9179, '2016-08-11 08:32:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:28.398281Z","gw_timestamp":2225812291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MzAxMjIxMDA1MDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9181, '2016-08-11 08:32:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:42.761912Z","gw_timestamp":2240175115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUxMzAxMjIxMDA1MDatmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9183, '2016-08-11 08:33:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:32:57.132775Z","gw_timestamp":2254538659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUxMTAxMjIxMDA1MDaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9185, '2016-08-11 08:33:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:11.501281Z","gw_timestamp":2268901579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU0NzAxMjIwMDA1MDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9187, '2016-08-11 08:33:30', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":847,"f_cnt_down":1516,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:43:43.970201Z","gw_timestamp":3960294884,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0EwMDU0ODAxMjMzMDA0NTMj0g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9174, '2016-08-11 08:32:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8406,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:31:52.502029Z","gw_timestamp":2189903163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MzAxMjIxMDA1MDavOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9188, '2016-08-11 08:33:34', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":848,"f_cnt_down":1517,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:33:27.775015Z","gw_timestamp":1029511236,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0EwMDU0ODAxMjMzMDA0NTMj0g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9190, '2016-08-11 08:33:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:40.217655Z","gw_timestamp":2297628875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MzAxMjIwMDA1MDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9192, '2016-08-11 08:33:54', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":848,"f_cnt_down":1518,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:33:52.456786Z","gw_timestamp":1054193020,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":-0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A0EwMDU0ODAxMjMzMDA0NTMj0g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9194, '2016-08-11 08:34:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:54.578892Z","gw_timestamp":2311991491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU0NzAxMjIwMDA1MDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9196, '2016-08-11 08:34:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:08.943105Z","gw_timestamp":2326355251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0MjAxMjIwMDA1MDawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9198, '2016-08-11 08:34:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:23.316845Z","gw_timestamp":2340717963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUzMTAxMjIwMDA1MDaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9200, '2016-08-11 08:34:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:37.673975Z","gw_timestamp":2355080675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU1MjAxMjIwMDA1MDaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9202, '2016-08-11 08:35:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:52.050307Z","gw_timestamp":2369444219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU4NTAxMjIwMDA1MDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9204, '2016-08-11 08:35:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:06.403283Z","gw_timestamp":2383808075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU1MjAxMjIwMDA1MDaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9212, '2016-08-11 08:36:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:11.038044Z","gw_timestamp":2448442523,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUxNzAxMjIwMDA1MDeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9214, '2016-08-11 08:36:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:25.399289Z","gw_timestamp":2462806387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUxNTAxMjIwMDA1MDevCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9216, '2016-08-11 08:36:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:39.768314Z","gw_timestamp":2477170035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUxMzAxMjIwMDA1MDevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9218, '2016-08-11 08:37:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:54.140267Z","gw_timestamp":2491532539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDU1MTAxMjIwMDA1MDewqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9189, '2016-08-11 08:33:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:33:33.036517Z","gw_timestamp":2290446955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEAwMDU1NjAxMjIwMDA1MDavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9203, '2016-08-11 08:35:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:34:59.217784Z","gw_timestamp":2376626147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU2MzAxMjIwMDA1MDaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9205, '2016-08-11 08:35:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:13.586998Z","gw_timestamp":2390989275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUxODAxMjIwMDA1MDav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9217, '2016-08-11 08:36:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:46.94317Z","gw_timestamp":2484351555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUwOTAxMjIwMDA1MDew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9223, '2016-08-11 08:37:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:22.848421Z","gw_timestamp":2520259003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUzNzAxMjIwMDA1MDeuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9229, '2016-08-11 08:38:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:05.942175Z","gw_timestamp":2563347147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUxNzAxMjIwMDA1MDeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9231, '2016-08-11 08:38:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:20.307548Z","gw_timestamp":2577710899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU2MDAxMjIwMDA1MDev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9239, '2016-08-11 08:39:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:17.750548Z","gw_timestamp":2635163523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUwOTAxMjIwMDA1MDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9245, '2016-08-11 08:40:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8474,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:00.835639Z","gw_timestamp":2678253643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUyNjAxMjIwMDA1MDiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9247, '2016-08-11 08:40:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:15.20668Z","gw_timestamp":2692617395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUwOTAxMjIwMDA1MDiyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9249, '2016-08-11 08:40:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:29.575934Z","gw_timestamp":2706981051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":12,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyMjAxMjIwMDA1MDiu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9251, '2016-08-11 08:40:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:43.943573Z","gw_timestamp":2721344491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU2NzAxMjIwMDA1MDix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9253, '2016-08-11 08:41:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:58.302548Z","gw_timestamp":2735707411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUxMzAxMjIwMDA1MDmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9255, '2016-08-11 08:41:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:12.65581Z","gw_timestamp":2750071171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyNDAxMjIwMDA1MDmx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9210, '2016-08-11 08:36:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8440,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:35:56.66781Z","gw_timestamp":2434079811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU0NDAxMjIwMDA1MDeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9232, '2016-08-11 08:38:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:27.488162Z","gw_timestamp":2584892411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUwOTAxMjIwMDA1MDexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9234, '2016-08-11 08:38:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:41.843527Z","gw_timestamp":2599254403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0OTAxMjIwMDA1MDexGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9236, '2016-08-11 08:39:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:56.209675Z","gw_timestamp":2613618155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU2MDAxMjIwMDA1MDiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9238, '2016-08-11 08:39:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:10.576295Z","gw_timestamp":2627981803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDU0MjAxMjIwMDA1MDiySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9240, '2016-08-11 08:39:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:24.934119Z","gw_timestamp":2642345347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyNjAxMjIwMDA1MDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9242, '2016-08-11 08:39:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:39.297547Z","gw_timestamp":2656708275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUyNjAxMjIwMDA1MDiumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9244, '2016-08-11 08:40:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:53.658791Z","gw_timestamp":2671071923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUwOTAxMjIwMDA1MDiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9246, '2016-08-11 08:40:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:08.024266Z","gw_timestamp":2685435467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUzNzAxMjIwMDA1MDivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9248, '2016-08-11 08:40:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:22.381301Z","gw_timestamp":2699799227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0MDAxMjIwMDA1MDivig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9250, '2016-08-11 08:40:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:36.75782Z","gw_timestamp":2714162875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU0MDAxMjIwMDA1MDiwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9252, '2016-08-11 08:40:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:40:51.122927Z","gw_timestamp":2728525483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzNTAxMjIwMDA1MDmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9254, '2016-08-11 08:41:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:05.475168Z","gw_timestamp":2742889235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUxMzAxMjIwMDA1MDmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9258, '2016-08-11 08:41:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:41.386296Z","gw_timestamp":2778797947,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0NDAxMjIwMDA1MDmyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9215, '2016-08-11 08:36:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:36:32.573914Z","gw_timestamp":2469988107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU2MjAxMjIwMDA1MDewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9219, '2016-08-11 08:37:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:01.306632Z","gw_timestamp":2498714363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUwNTAxMjIwMDA1MDeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9221, '2016-08-11 08:37:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:15.668045Z","gw_timestamp":2513077179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU1MzAxMjIwMDA1MDevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9225, '2016-08-11 08:37:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:37.206672Z","gw_timestamp":2534621611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUwOTAxMjIwMDA1MDeyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9227, '2016-08-11 08:38:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:51.598032Z","gw_timestamp":2548984331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU2NzAxMjIwMDA1MDey6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9233, '2016-08-11 08:38:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:34.669063Z","gw_timestamp":2592073403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzMTAxMjIwMDA1MDewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9235, '2016-08-11 08:38:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:49.02704Z","gw_timestamp":2606436227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUxNzAxMjIwMDA1MDeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9237, '2016-08-11 08:39:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:03.398686Z","gw_timestamp":2620799979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUwNzAxMjIwMDA1MDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9241, '2016-08-11 08:39:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:32.122923Z","gw_timestamp":2649527283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU1MzAxMjIwMDA1MDiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9243, '2016-08-11 08:39:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8472,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:39:46.47417Z","gw_timestamp":2663889995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUzMTAxMjIwMDA1MDiwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9257, '2016-08-11 08:41:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:27.024249Z","gw_timestamp":2764434923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDQ5NDAxMjIwMDA1MDmvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9259, '2016-08-11 08:41:49', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":765,"f_cnt_down":1353,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:41:47.209432Z","gw_timestamp":1528945884,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AYAwMDcyNzAxMjIyMDA1MDMLoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9261, '2016-08-11 08:41:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:48.567929Z","gw_timestamp":2785979459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUyOTAxMjIwMDA1MDmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9263, '2016-08-11 08:42:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8491,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:02.933301Z","gw_timestamp":2800343003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUzMzAxMjIwMDA1MDmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9220, '2016-08-11 08:37:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:08.484724Z","gw_timestamp":2505895355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU1ODAxMjIwMDA1MDevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9222, '2016-08-11 08:37:25', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1327,"f_cnt_down":2133,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:37:16.025299Z","gw_timestamp":1257761628,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Aa4wMDU5NDAxMjE5MDA0NzkJ8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9224, '2016-08-11 08:37:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:30.026037Z","gw_timestamp":2527440523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUzNTAxMjIwMDA1MDey2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9226, '2016-08-11 08:37:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:44.410546Z","gw_timestamp":2541803235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0MjAxMjIwMDA1MDevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9228, '2016-08-11 08:38:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:37:58.750928Z","gw_timestamp":2556165323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDUyMDAxMjIwMDA1MDewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9230, '2016-08-11 08:38:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:38:13.117913Z","gw_timestamp":2570529083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyMDAxMjIwMDA1MDex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9256, '2016-08-11 08:41:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:19.875905Z","gw_timestamp":2757252995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzNzAxMjIwMDA1MDmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9262, '2016-08-11 08:42:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:41:55.757827Z","gw_timestamp":2793161283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUyMDAxMjIwMDA1MDmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9264, '2016-08-11 08:42:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:10.122642Z","gw_timestamp":2807524003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU1MzAxMjIwMDA1MDmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9266, '2016-08-11 08:42:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:24.48218Z","gw_timestamp":2821887547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDQ5NzAxMjIwMDA1MDmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9268, '2016-08-11 08:42:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:38.835415Z","gw_timestamp":2836250259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0MDAxMjIwMDA1MDmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9270, '2016-08-11 08:42:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:53.19868Z","gw_timestamp":2850614011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU0NjAxMjIwMDA1MDmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9272, '2016-08-11 08:43:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:07.568049Z","gw_timestamp":2864976723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUzMTAxMjIwMDA1MDmx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9274, '2016-08-11 08:43:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:21.934792Z","gw_timestamp":2879340379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU0MDAxMjIwMDA1MDmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9260, '2016-08-11 08:41:50', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":766,"f_cnt_down":1354,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:52:03.404442Z","gw_timestamp":164761828,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-115,"snr":-14.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AYAwMDcyNzAxMjIyMDA1MDMLoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9284, '2016-08-11 08:44:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:33.75005Z","gw_timestamp":2951157795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUxMzAxMjIwMDA1MTCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9286, '2016-08-11 08:44:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:48.115816Z","gw_timestamp":2965521555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUwNTAxMjIwMDA1MTCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9288, '2016-08-11 08:45:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:02.519452Z","gw_timestamp":2979885307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDU0MjAxMjIwMDA1MTCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9290, '2016-08-11 08:45:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:16.830572Z","gw_timestamp":2994248955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFAwMDU1MzAxMjIwMDA1MTCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9292, '2016-08-11 08:45:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:31.20269Z","gw_timestamp":3008612603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDUyMjAxMjIwMDA1MTCxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9294, '2016-08-11 08:45:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:45.567063Z","gw_timestamp":3022976155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDU2NDAxMjIwMDA1MTGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9302, '2016-08-11 08:46:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:35.829569Z","gw_timestamp":3073246219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUxMTAxMjIwMDA1MTGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9304, '2016-08-11 08:46:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:50.202121Z","gw_timestamp":3087608931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUzNzAxMjIwMDA1MTGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9306, '2016-08-11 08:47:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:04.574677Z","gw_timestamp":3101972587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUyNDAxMjIwMDA1MTGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9308, '2016-08-11 08:47:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:18.919318Z","gw_timestamp":3116336235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDU0NjAxMjIwMDA1MTGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9310, '2016-08-11 08:47:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:33.289562Z","gw_timestamp":3130699987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUwMTAxMjIwMDA1MTGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9312, '2016-08-11 08:48:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:54.836435Z","gw_timestamp":3152245563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU1MzAxMjIwMDA1MTGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9314, '2016-08-11 08:48:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8542,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:09.188211Z","gw_timestamp":3166609219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUyMDAxMjE5MDA1MTGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9265, '2016-08-11 08:42:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:17.292553Z","gw_timestamp":2814705827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU1NTAxMjIwMDA1MDmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9269, '2016-08-11 08:42:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:46.019055Z","gw_timestamp":2843432187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0MDAxMjIwMDA1MDmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9271, '2016-08-11 08:43:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:00.394303Z","gw_timestamp":2857795731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0MDAxMjIwMDA1MDmvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9273, '2016-08-11 08:43:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:14.750819Z","gw_timestamp":2872158651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU2NzAxMjIwMDA1MDmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9275, '2016-08-11 08:43:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:29.103871Z","gw_timestamp":2886521891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUzNTAxMjIwMDA1MTCyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9277, '2016-08-11 08:43:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:43.478177Z","gw_timestamp":2900884811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUxMTAxMjIwMDA1MTCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9279, '2016-08-11 08:44:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:57.838435Z","gw_timestamp":2915248667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE0wMDUzMzAxMjIwMDA1MTCwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9281, '2016-08-11 08:44:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:12.213949Z","gw_timestamp":2929612219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU1NTAxMjIwMDA1MTCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9283, '2016-08-11 08:44:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:26.568058Z","gw_timestamp":2943975963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUyMjAxMjIwMDA1MTCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9285, '2016-08-11 08:44:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:40.923297Z","gw_timestamp":2958339723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDU1MTAxMjIwMDA1MTCtug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9287, '2016-08-11 08:45:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:55.289561Z","gw_timestamp":2972703483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUzNzAxMjIwMDA1MTCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9289, '2016-08-11 08:45:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:09.660749Z","gw_timestamp":2987067131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDUzMTAxMjIwMDA1MTCwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9291, '2016-08-11 08:45:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:24.045798Z","gw_timestamp":3001430675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDU2NzAxMjIwMDA1MTCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9293, '2016-08-11 08:45:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:38.388668Z","gw_timestamp":3015794539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDUyNjAxMjIwMDA1MTGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9267, '2016-08-11 08:42:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:42:31.659812Z","gw_timestamp":2829068739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUyMjAxMjIwMDA1MDmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9297, '2016-08-11 08:46:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:59.930312Z","gw_timestamp":3037338971,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDUxNTAxMjIwMDA1MTGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9299, '2016-08-11 08:46:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:14.285553Z","gw_timestamp":3051701683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDQ4ODAxMjIwMDA1MTGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9301, '2016-08-11 08:46:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:28.670221Z","gw_timestamp":3066064603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU0NjAxMjIwMDA1MTGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9303, '2016-08-11 08:46:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:43.011063Z","gw_timestamp":3080427939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUzMTAxMjIwMDA1MTGzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9305, '2016-08-11 08:47:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:57.382427Z","gw_timestamp":3094790651,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDQ4ODAxMjIwMDA1MTGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9307, '2016-08-11 08:47:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:11.741693Z","gw_timestamp":3109154619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU1NTAxMjIwMDA1MTGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9309, '2016-08-11 08:47:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:26.122375Z","gw_timestamp":3123518059,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU0NDAxMjIwMDA1MTGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9311, '2016-08-11 08:47:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:47:47.646802Z","gw_timestamp":3145063635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUzMTAxMjIwMDA1MTGy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9313, '2016-08-11 08:48:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:02.035914Z","gw_timestamp":3159427395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUyOTAxMjIwMDA1MTGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9315, '2016-08-11 08:48:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:16.377676Z","gw_timestamp":3173791147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDQ5NzAxMjIwMDA1MTGxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9317, '2016-08-11 08:48:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:30.740694Z","gw_timestamp":3188154795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUzNTAxMjIwMDA1MTGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9319, '2016-08-11 08:48:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:45.108937Z","gw_timestamp":3202518451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU2MjAxMjIwMDA1MTKuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9321, '2016-08-11 08:49:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:59.463198Z","gw_timestamp":3216881579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU0MjAxMjIwMDA1MTKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9276, '2016-08-11 08:43:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:36.311829Z","gw_timestamp":2893703083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUyMjAxMjIwMDA1MTCvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9278, '2016-08-11 08:43:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:43:50.657811Z","gw_timestamp":2908066739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUxMzAxMjIwMDA1MTCuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9280, '2016-08-11 08:44:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:05.016055Z","gw_timestamp":2922430387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUzNzAxMjIwMDA1MTCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9282, '2016-08-11 08:44:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:44:19.380308Z","gw_timestamp":2936794147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUxNzAxMjIwMDA1MTCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9296, '2016-08-11 08:46:02', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":849,"f_cnt_down":1555,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:45:59.228794Z","gw_timestamp":1780965364,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BSEwMDgxNTAxMjIzMDA0OTMIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9298, '2016-08-11 08:46:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8525,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:07.101942Z","gw_timestamp":3044519955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUxMzAxMjIwMDA1MTGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9300, '2016-08-11 08:46:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:46:21.466185Z","gw_timestamp":3058883611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDU0NjAxMjIwMDA1MTGuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9318, '2016-08-11 08:48:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:37.920319Z","gw_timestamp":3195336523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUyNjAxMjIwMDA1MTKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9320, '2016-08-11 08:49:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:52.282571Z","gw_timestamp":3209700379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDU2MDAxMjE5MDA1MTKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9322, '2016-08-11 08:49:05', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":849,"f_cnt_down":1520,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:59:19.509186Z","gw_timestamp":600866572,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BXkwMDUzNDAxMjM1MDA0NTIQ0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9324, '2016-08-11 08:49:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:06.648825Z","gw_timestamp":3224062883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUzMTAxMjE5MDA1MTKzWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9326, '2016-08-11 08:49:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:21.0082Z","gw_timestamp":3238426739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDU0MDAxMjE5MDA1MTKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9328, '2016-08-11 08:49:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:35.375959Z","gw_timestamp":3252790291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUwMTAxMjE5MDA1MTKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9330, '2016-08-11 08:50:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:56.912319Z","gw_timestamp":3274335035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDUxNzAxMjE5MDA1MTKzyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9295, '2016-08-11 08:46:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:45:52.73867Z","gw_timestamp":3030157139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDU0MDAxMjIwMDA1MTGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9325, '2016-08-11 08:49:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:13.8437Z","gw_timestamp":3231244811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDUyOTAxMjIwMDA1MTKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9327, '2016-08-11 08:49:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:28.192813Z","gw_timestamp":3245608563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDU2NzAxMjE5MDA1MTKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9329, '2016-08-11 08:49:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:49:49.751042Z","gw_timestamp":3267153099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDU0MjAxMjE5MDA1MTKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9331, '2016-08-11 08:50:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:04.108218Z","gw_timestamp":3281516755,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDUxNzAxMjE5MDA1MTKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9333, '2016-08-11 08:50:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:18.468201Z","gw_timestamp":3295880403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDUyNDAxMjE5MDA1MTKvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9335, '2016-08-11 08:50:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:32.820444Z","gw_timestamp":3310243227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUxNzAxMjE5MDA1MTKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9351, '2016-08-11 08:52:32', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1328,"f_cnt_down":2134,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:52:26.854626Z","gw_timestamp":2168591372,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ak8wMDY1NzAxMjIwMDA0ODIKwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9353, '2016-08-11 08:52:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:34.919469Z","gw_timestamp":3432332587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDU3NDAxMjE5MDA1MTOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9355, '2016-08-11 08:52:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:49.277564Z","gw_timestamp":3446696131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDU1MTAxMjE5MDA1MTOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9357, '2016-08-11 08:53:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:03.647969Z","gw_timestamp":3461059051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUyOTAxMjE5MDA1MTOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9359, '2016-08-11 08:53:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8585,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:18.002203Z","gw_timestamp":3475421659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUwNTAxMjE5MDA1MTOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9361, '2016-08-11 08:53:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:32.366454Z","gw_timestamp":3489785307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU0NjAxMjE5MDA1MTOvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9363, '2016-08-11 08:53:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:53.913321Z","gw_timestamp":3511329435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUxNzAxMjE5MDA1MTOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9316, '2016-08-11 08:48:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:48:23.563071Z","gw_timestamp":3180972971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDU0MjAxMjE5MDA1MTKu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9334, '2016-08-11 08:50:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:25.651828Z","gw_timestamp":3303061707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDU0MDAxMjE5MDA1MTKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9336, '2016-08-11 08:50:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:40.005197Z","gw_timestamp":3317424947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUxMTAxMjE5MDA1MTKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9338, '2016-08-11 08:51:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:54.386414Z","gw_timestamp":3331788699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUxNzAxMjE5MDA1MTKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9352, '2016-08-11 08:52:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:27.736956Z","gw_timestamp":3425150659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUxNTAxMjE5MDA1MTOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9354, '2016-08-11 08:52:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:42.092955Z","gw_timestamp":3439514411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUxMzAxMjE5MDA1MTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9356, '2016-08-11 08:53:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:56.463415Z","gw_timestamp":3453877955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUwNzAxMjE5MDA1MTOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9374, '2016-08-11 08:55:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:12.912349Z","gw_timestamp":3590328147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUzNTAxMjE5MDA1MTSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9376, '2016-08-11 08:55:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:27.271704Z","gw_timestamp":3604691283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDU0NDAxMjE5MDA1MTWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9378, '2016-08-11 08:55:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:41.637959Z","gw_timestamp":3619054515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUyOTAxMjE5MDA1MTWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9380, '2016-08-11 08:56:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:56.005264Z","gw_timestamp":3633418267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDUyNjAxMjE5MDA1MTWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9382, '2016-08-11 08:56:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:10.361464Z","gw_timestamp":3647781611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUxMTAxMjE5MDA1MTWuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9384, '2016-08-11 08:56:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8611,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:24.723093Z","gw_timestamp":3662143699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDU0MjAxMjE5MDA1MTWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9386, '2016-08-11 08:56:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:39.084941Z","gw_timestamp":3676507347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUzMzAxMjE5MDA1MTWyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9323, '2016-08-11 08:49:08', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":850,"f_cnt_down":1521,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:49:03.313975Z","gw_timestamp":1965050628,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BXkwMDUzNDAxMjM1MDA0NTIQ0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9337, '2016-08-11 08:50:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:47.18981Z","gw_timestamp":3324606875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDU1NTAxMjE5MDA1MTKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9339, '2016-08-11 08:51:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:01.57236Z","gw_timestamp":3338970523,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUzNzAxMjE5MDA1MTKqWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9341, '2016-08-11 08:51:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:15.924388Z","gw_timestamp":3353334275,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUyMjAxMjE5MDA1MTOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9343, '2016-08-11 08:51:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:30.2919Z","gw_timestamp":3367696883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDUyMjAxMjE5MDA1MTOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9345, '2016-08-11 08:51:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:44.662099Z","gw_timestamp":3382060635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUyOTAxMjE5MDA1MTOyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9347, '2016-08-11 08:52:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:59.009149Z","gw_timestamp":3396424291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUyNDAxMjE5MDA1MTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9349, '2016-08-11 08:52:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8576,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:13.375476Z","gw_timestamp":3410787627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDU2MDAxMjE5MDA1MTOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9367, '2016-08-11 08:54:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8594,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:22.647946Z","gw_timestamp":3540056211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUzMTAxMjE5MDA1MTSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9369, '2016-08-11 08:54:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:36.999204Z","gw_timestamp":3554419859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUzNTAxMjE5MDA1MTSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9371, '2016-08-11 08:54:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:51.364599Z","gw_timestamp":3568783611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU0NjAxMjE5MDA1MTSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9373, '2016-08-11 08:55:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:05.727706Z","gw_timestamp":3583146331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDUyNjAxMjE5MDA1MTSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9375, '2016-08-11 08:55:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:20.119237Z","gw_timestamp":3597509875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU5NDAxMjE5MDA1MTSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9377, '2016-08-11 08:55:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:34.449368Z","gw_timestamp":3611872587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDU0NDAxMjE5MDA1MTWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9332, '2016-08-11 08:50:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:50:11.281575Z","gw_timestamp":3288698683,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDU0OTAxMjE5MDA1MTKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9340, '2016-08-11 08:51:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:08.729696Z","gw_timestamp":3346152451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDU1MTAxMjE5MDA1MTOySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9342, '2016-08-11 08:51:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:23.101945Z","gw_timestamp":3360515683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUzNzAxMjE5MDA1MTOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9344, '2016-08-11 08:51:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:37.45518Z","gw_timestamp":3374878811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUxNzAxMjE5MDA1MTOuKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9346, '2016-08-11 08:52:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:51:51.818585Z","gw_timestamp":3389242363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUzMzAxMjE5MDA1MTOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9348, '2016-08-11 08:52:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:06.190071Z","gw_timestamp":3403606219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDU0NjAxMjE5MDA1MTOxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9350, '2016-08-11 08:52:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8577,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:52:20.563323Z","gw_timestamp":3417968723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUyOTAxMjE5MDA1MTOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9358, '2016-08-11 08:53:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:10.830835Z","gw_timestamp":3468240355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDU0NjAxMjE5MDA1MTOzaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9360, '2016-08-11 08:53:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:25.181834Z","gw_timestamp":3482603483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDU0MDAxMjE5MDA1MTOyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9362, '2016-08-11 08:53:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:53:39.546068Z","gw_timestamp":3496966819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUzNTAxMjE5MDA1MTOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9364, '2016-08-11 08:54:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:01.100332Z","gw_timestamp":3518510627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU2MDAxMjE5MDA1MTOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9366, '2016-08-11 08:54:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:15.453143Z","gw_timestamp":3532874283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUyMDAxMjE5MDA1MTSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9368, '2016-08-11 08:54:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:29.8146Z","gw_timestamp":3547238139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUyOTAxMjE5MDA1MTSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9370, '2016-08-11 08:54:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:44.189838Z","gw_timestamp":3561601787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUxMTAxMjE5MDA1MTSxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9365, '2016-08-11 08:54:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:08.270576Z","gw_timestamp":3525692555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDU1MzAxMjE5MDA1MTOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9381, '2016-08-11 08:56:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8608,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:03.183832Z","gw_timestamp":3640599987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUzNTAxMjE5MDA1MTWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9383, '2016-08-11 08:56:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:17.538032Z","gw_timestamp":3654962707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDUyMjAxMjE5MDA1MTWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9385, '2016-08-11 08:56:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:31.925549Z","gw_timestamp":3669325523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUzMTAxMjE5MDA1MTWyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9387, '2016-08-11 08:56:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:46.273586Z","gw_timestamp":3683689171,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUxNzAxMjE5MDA1MTWvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9389, '2016-08-11 08:57:02', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":766,"f_cnt_down":1355,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T08:56:57.98995Z","gw_timestamp":2439726820,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXwwMDgwMTAxMjE4MDA1MDgHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9391, '2016-08-11 08:57:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:07.810798Z","gw_timestamp":3705233395,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUyNjAxMjE5MDA1MTWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9393, '2016-08-11 08:57:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:22.186858Z","gw_timestamp":3719596315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDU0NjAxMjE5MDA1MTWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9395, '2016-08-11 08:57:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:36.536083Z","gw_timestamp":3733960075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDUzMTAxMjE5MDA1MTWyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9397, '2016-08-11 08:58:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:58.099073Z","gw_timestamp":3755504507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDU1NzAxMjE5MDA1MTWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9399, '2016-08-11 08:58:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:12.450415Z","gw_timestamp":3769867323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDUzMTAxMjE5MDA1MTaxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9401, '2016-08-11 08:58:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8628,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:26.818726Z","gw_timestamp":3784230971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDU1MTAxMjE5MDA1MTav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9403, '2016-08-11 08:58:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:41.181841Z","gw_timestamp":3798594515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFAwMDUxMTAxMjE5MDA1MTax2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9405, '2016-08-11 08:59:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:02.72847Z","gw_timestamp":3820140203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDUxNzAxMjE5MDA1MTavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9372, '2016-08-11 08:55:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:54:58.551405Z","gw_timestamp":3575965339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUwMjAxMjE5MDA1MTSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9388, '2016-08-11 08:56:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:56:53.451219Z","gw_timestamp":3690870787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDU0MjAxMjE5MDA1MTWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9390, '2016-08-11 08:57:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:00.638824Z","gw_timestamp":3698051779,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUyMDAxMjE5MDA1MTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9394, '2016-08-11 08:57:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:29.354543Z","gw_timestamp":3726778243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUzMTAxMjE5MDA1MTWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9396, '2016-08-11 08:57:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:43.71622Z","gw_timestamp":3741141899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUzNzAxMjE5MDA1MTWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9398, '2016-08-11 08:58:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:05.261812Z","gw_timestamp":3762686331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDU1NzAxMjE5MDA1MTauig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9400, '2016-08-11 08:58:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:19.623965Z","gw_timestamp":3777049043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDUzMzAxMjE5MDA1MTay6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9402, '2016-08-11 08:58:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:33.992203Z","gw_timestamp":3791412899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUyMDAxMjE5MDA1MTawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9422, '2016-08-11 09:01:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:04.804727Z","gw_timestamp":3942228411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU0NDAxMjE5MDA1MTeyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9424, '2016-08-11 09:01:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:11.981222Z","gw_timestamp":3949409411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUxNzAxMjE5MDA1MTeyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9426, '2016-08-11 09:01:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:26.35455Z","gw_timestamp":3963773163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUyNjAxMjE5MDA1MTexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9438, '2016-08-11 09:03:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:59.709742Z","gw_timestamp":4057136155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUxMzAxMjE5MDA1MTix+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9446, '2016-08-11 09:04:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:57.165846Z","gw_timestamp":4114590867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzNTAxMjE5MDA1MTixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9452, '2016-08-11 09:04:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:25.905418Z","gw_timestamp":4143316291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU4OTAxMjE5MDA1MTivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9379, '2016-08-11 08:55:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:55:48.81858Z","gw_timestamp":3626236443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDU0OTAxMjE5MDA1MTWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9409, '2016-08-11 08:59:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:31.448347Z","gw_timestamp":3848866667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDU0NDAxMjE5MDA1MTax6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9411, '2016-08-11 08:59:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:45.806602Z","gw_timestamp":3863229275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDU5MTAxMjE5MDA1MTavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9413, '2016-08-11 09:00:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:00.183237Z","gw_timestamp":3877592923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE0wMDUzNzAxMjE5MDA1MTaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9415, '2016-08-11 09:00:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:14.537084Z","gw_timestamp":3891955531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDUxMzAxMjE5MDA1MTaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9417, '2016-08-11 09:00:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8645,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:28.899557Z","gw_timestamp":3906319291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDU2NDAxMjE5MDA1MTexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9419, '2016-08-11 09:00:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:43.278709Z","gw_timestamp":3920683051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU1MTAxMjE5MDA1MTevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9421, '2016-08-11 09:01:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:57.630445Z","gw_timestamp":3935046803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUwMjAxMjE5MDA1MTet+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9423, '2016-08-11 09:01:13', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":850,"f_cnt_down":1556,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:11:26.200018Z","gw_timestamp":1327557404,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BaEwMDg0NTAxMjIxMDA0OTgh8g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9425, '2016-08-11 09:01:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:19.190124Z","gw_timestamp":3956591339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU1NTAxMjE5MDA1MTewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9427, '2016-08-11 09:01:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:33.531634Z","gw_timestamp":3970954883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUyNjAxMjE5MDA1MTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9429, '2016-08-11 09:02:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:47.901338Z","gw_timestamp":3985318739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzNTAxMjE5MDA1MTewWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9431, '2016-08-11 09:02:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:09.439565Z","gw_timestamp":4006864219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUzMTAxMjE5MDA1MTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9433, '2016-08-11 09:02:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:23.813866Z","gw_timestamp":4021227867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUyMjAxMjE5MDA1MTiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9392, '2016-08-11 08:57:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:57:15.001219Z","gw_timestamp":3712414491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUxNTAxMjE5MDA1MTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9404, '2016-08-11 08:59:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:58:55.533096Z","gw_timestamp":3812958379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUyMjAxMjE5MDA1MTavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9406, '2016-08-11 08:59:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:09.896873Z","gw_timestamp":3827322027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDUwNzAxMjE5MDA1MTa0Ww==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9408, '2016-08-11 08:59:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:24.266974Z","gw_timestamp":3841684947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFAwMDU0NDAxMjE5MDA1MTavGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9410, '2016-08-11 08:59:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:38.642244Z","gw_timestamp":3856047763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDUzMTAxMjE5MDA1MTazKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9412, '2016-08-11 09:00:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:53.017364Z","gw_timestamp":3870411107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDU0NDAxMjE5MDA1MTawew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9414, '2016-08-11 09:00:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:07.361471Z","gw_timestamp":3884774339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDU0NDAxMjE5MDA1MTaxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9416, '2016-08-11 09:00:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:21.715715Z","gw_timestamp":3899137363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDU0MjAxMjE5MDA1MTawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9418, '2016-08-11 09:00:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:36.08598Z","gw_timestamp":3913501219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDU0MjAxMjE5MDA1MTex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9420, '2016-08-11 09:01:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:00:50.450344Z","gw_timestamp":3927864875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU0NDAxMjE5MDA1MTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9428, '2016-08-11 09:01:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:01:40.717723Z","gw_timestamp":3978136811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU0NDAxMjE5MDA1MTew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9430, '2016-08-11 09:02:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:02.260606Z","gw_timestamp":3999682395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU1MzAxMjE5MDA1MTewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9432, '2016-08-11 09:02:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:16.631982Z","gw_timestamp":4014046043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU0NDAxMjE5MDA1MTiuCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9434, '2016-08-11 09:02:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:30.991226Z","gw_timestamp":4028409795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDU1MTAxMjE5MDA1MTivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9407, '2016-08-11 08:59:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T08:59:17.083915Z","gw_timestamp":3834503955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDUwNTAxMjE5MDA1MTaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9437, '2016-08-11 09:03:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:52.539095Z","gw_timestamp":4049954747,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzMTAxMjE5MDA1MTiyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9439, '2016-08-11 09:03:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:06.891677Z","gw_timestamp":4064317883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU0NDAxMjE5MDA1MTiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9441, '2016-08-11 09:03:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:21.252596Z","gw_timestamp":4078681635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU2MDAxMjE5MDA1MTiv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9443, '2016-08-11 09:03:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:35.625982Z","gw_timestamp":4093045387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU1MzAxMjE5MDA1MTixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9449, '2016-08-11 09:04:17', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":850,"f_cnt_down":1522,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:04:14.164396Z","gw_timestamp":2875901468,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbIwMDU1NjAxMjM3MDA0NTMJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9457, '2016-08-11 09:05:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:01.819877Z","gw_timestamp":4179223539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUyMjAxMjE5MDA1MTiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9459, '2016-08-11 09:05:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:16.162861Z","gw_timestamp":4193586147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDUxMzAxMjE5MDA1MTmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9461, '2016-08-11 09:05:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:30.521099Z","gw_timestamp":4207949907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEIwMDU2MDAxMjE5MDA1MTmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9463, '2016-08-11 09:05:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:44.885365Z","gw_timestamp":4222312611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU0NDAxMjE5MDA1MTmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9465, '2016-08-11 09:06:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:06.433357Z","gw_timestamp":4243857363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUyNDAxMjE5MDA1MTmzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9473, '2016-08-11 09:07:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:03.883767Z","gw_timestamp":6342483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUzNzAxMjE5MDA1MjCxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9475, '2016-08-11 09:07:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:18.241563Z","gw_timestamp":20706339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEswMDU0MDAxMjE5MDA1MjCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9477, '2016-08-11 09:07:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:32.618994Z","gw_timestamp":35069467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDU3MzAxMjE5MDA1MjCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9435, '2016-08-11 09:02:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:38.1661Z","gw_timestamp":4035591411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUxMzAxMjE5MDA1MTiy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9445, '2016-08-11 09:03:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:50.007475Z","gw_timestamp":4107409043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUxMTAxMjE5MDA1MTivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9447, '2016-08-11 09:04:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:04.352487Z","gw_timestamp":4121771851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDU2MDAxMjE5MDA1MTiv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9451, '2016-08-11 09:04:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:18.708734Z","gw_timestamp":4136134987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyMjAxMjE5MDA1MTiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9453, '2016-08-11 09:04:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:33.076982Z","gw_timestamp":4150498011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUzMzAxMjE5MDA1MTivOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9455, '2016-08-11 09:04:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:47.435295Z","gw_timestamp":4164860723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUyOTAxMjE5MDA1MTiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9467, '2016-08-11 09:06:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:20.809014Z","gw_timestamp":4258220699,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEUwMDUxNzAxMjE5MDA1MjCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9469, '2016-08-11 09:06:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8696,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:35.156857Z","gw_timestamp":4272583931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU1NTAxMjE5MDA1MjCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9471, '2016-08-11 09:06:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:49.526113Z","gw_timestamp":4286946643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU1NzAxMjE5MDA1MjCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9481, '2016-08-11 09:08:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:54.162869Z","gw_timestamp":56614419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUzMzAxMjE5MDA1MjCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9483, '2016-08-11 09:08:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:15.701744Z","gw_timestamp":78159995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDU0MDAxMjE5MDA1MjCwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9485, '2016-08-11 09:08:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8712,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:30.062992Z","gw_timestamp":92523651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDUxNTAxMjE5MDA1MjCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9487, '2016-08-11 09:08:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8714,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:44.431371Z","gw_timestamp":106887507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUxNTAxMjE5MDA1MjCt6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9489, '2016-08-11 09:09:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8716,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:58.794637Z","gw_timestamp":121251051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDUxNzAxMjE5MDA1MjCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9436, '2016-08-11 09:02:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:02:45.352479Z","gw_timestamp":4042773339,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDU0NDAxMjE5MDA1MTiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9440, '2016-08-11 09:03:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:14.09548Z","gw_timestamp":4071499707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDUwOTAxMjE5MDA1MTiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9442, '2016-08-11 09:03:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:28.436368Z","gw_timestamp":4085863459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDU0MjAxMjE5MDA1MTiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9444, '2016-08-11 09:03:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:03:42.798606Z","gw_timestamp":4100227211,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUxNTAxMjE5MDA1MTiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9448, '2016-08-11 09:04:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:11.548389Z","gw_timestamp":4128953579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUyNjAxMjE5MDA1MTixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9450, '2016-08-11 09:04:20', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":851,"f_cnt_down":1523,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:14:30.359633Z","gw_timestamp":1511717020,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-12.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbIwMDU1NjAxMjM3MDA0NTMJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9460, '2016-08-11 09:05:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:23.342487Z","gw_timestamp":4200768075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEEwMDU2NjAxMjE5MDA1MTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9462, '2016-08-11 09:05:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:37.722041Z","gw_timestamp":4215131619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUyMDAxMjE5MDA1MTmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9466, '2016-08-11 09:06:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:13.619987Z","gw_timestamp":4251038979,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUyMjAxMjE5MDA1MTmwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9472, '2016-08-11 09:07:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:56.707738Z","gw_timestamp":4294128051,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEgwMDU0NDAxMjE5MDA1MjCvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9508, '2016-08-11 09:11:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8737,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:29.601992Z","gw_timestamp":272066779,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU2NDAxMjE4MDA1MjGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9510, '2016-08-11 09:11:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8739,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:43.976186Z","gw_timestamp":286430531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU0NDAxMjE4MDA1MjGw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9524, '2016-08-11 09:13:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8752,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:17.328506Z","gw_timestamp":379790499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDU3MTAxMjE4MDA1MjGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9526, '2016-08-11 09:13:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8754,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:31.687747Z","gw_timestamp":394154155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU3MzAxMjE4MDA1MjGvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9454, '2016-08-11 09:04:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:40.254747Z","gw_timestamp":4157679003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDQ5NjAxMjE5MDA1MTiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9456, '2016-08-11 09:05:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:04:54.619994Z","gw_timestamp":4172042547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDUzMTAxMjE5MDA1MTiv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9458, '2016-08-11 09:05:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:08.982234Z","gw_timestamp":4186404843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEcwMDUxNTAxMjE5MDA1MTixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9464, '2016-08-11 09:06:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:05:52.075977Z","gw_timestamp":4229494339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEQwMDU3NTAxMjE5MDA1MTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9468, '2016-08-11 09:06:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:27.993598Z","gw_timestamp":4265402627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEMwMDU1NTAxMjE5MDA1MjCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9470, '2016-08-11 09:06:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:06:42.34649Z","gw_timestamp":4279765235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEYwMDUzNzAxMjE5MDA1MjCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9474, '2016-08-11 09:07:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:11.065991Z","gw_timestamp":13524411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEowMDUyMjAxMjE5MDA1MjCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9476, '2016-08-11 09:07:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:25.436217Z","gw_timestamp":27888155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE0wMDU0MjAxMjE5MDA1MjCyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9478, '2016-08-11 09:07:40', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1329,"f_cnt_down":2135,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:07:37.68428Z","gw_timestamp":3079421444,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AegwMDg0NjAxMjIxMDA0ODgIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9480, '2016-08-11 09:07:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:46.96824Z","gw_timestamp":49432699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEwwMDUxMzAxMjE5MDA1MjCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9482, '2016-08-11 09:08:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:08.522107Z","gw_timestamp":70978275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDUxMTAxMjE5MDA1MjCuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9484, '2016-08-11 09:08:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8711,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:22.879317Z","gw_timestamp":85341723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFAwMDUzMzAxMjE5MDA1MjCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9486, '2016-08-11 09:08:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8713,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:37.255876Z","gw_timestamp":99705579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE8wMDUxMzAxMjE5MDA1MjCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9488, '2016-08-11 09:08:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8715,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:08:51.609997Z","gw_timestamp":114069331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDUzNTAxMjE5MDA1MjCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9479, '2016-08-11 09:07:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:07:39.817975Z","gw_timestamp":42250771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AEkwMDUzMzAxMjE5MDA1MjCxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9493, '2016-08-11 09:09:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8720,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:34.71427Z","gw_timestamp":157158403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDU0OTAxMjE5MDA1MjGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9495, '2016-08-11 09:09:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8723,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:49.065095Z","gw_timestamp":171522163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFAwMDU0OTAxMjE5MDA1MjGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9497, '2016-08-11 09:10:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8725,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:10.613208Z","gw_timestamp":193066595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDU0MjAxMjE5MDA1MjGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9507, '2016-08-11 09:11:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8736,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:22.425504Z","gw_timestamp":264885051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUzNTAxMjE4MDA1MjGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9509, '2016-08-11 09:11:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8738,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:36.786753Z","gw_timestamp":279248595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU0NjAxMjE4MDA1MjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9511, '2016-08-11 09:11:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8740,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:51.159805Z","gw_timestamp":293612459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUyNjAxMjE4MDA1MjGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9513, '2016-08-11 09:12:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8742,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:05.513514Z","gw_timestamp":307976003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUyMDAxMjE4MDA1MjGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9515, '2016-08-11 09:12:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8743,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:12.700748Z","gw_timestamp":315156995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUxNTAxMjE4MDA1MjGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9517, '2016-08-11 09:12:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8745,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:27.059001Z","gw_timestamp":329520539,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU1NzAxMjE4MDA1MjGvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9519, '2016-08-11 09:12:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8747,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:41.416374Z","gw_timestamp":343883251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUzNTAxMjE4MDA1MjGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9521, '2016-08-11 09:13:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8749,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:55.787152Z","gw_timestamp":358246075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU0OTAxMjE4MDA1MjGu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9523, '2016-08-11 09:13:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8751,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:10.141879Z","gw_timestamp":372608779,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDU1NTAxMjE4MDA1MjGvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9525, '2016-08-11 09:13:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8753,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:24.516127Z","gw_timestamp":386972435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUxNzAxMjE4MDA1MjGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9490, '2016-08-11 09:09:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8717,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:05.97225Z","gw_timestamp":128432355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFIwMDU0MjAxMjE5MDA1MjCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9492, '2016-08-11 09:09:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8719,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:20.332493Z","gw_timestamp":142794963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUxNzAxMjE5MDA1MjGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9494, '2016-08-11 09:09:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8722,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:41.885309Z","gw_timestamp":164340235,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDU1MTAxMjE5MDA1MjCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9496, '2016-08-11 09:10:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8724,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:56.24861Z","gw_timestamp":178703987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDUyMjAxMjE5MDA1MjGzqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9498, '2016-08-11 09:10:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8727,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:17.788621Z","gw_timestamp":200248315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDUwMjAxMjE5MDA1MjGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9500, '2016-08-11 09:10:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8729,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:32.157863Z","gw_timestamp":214612179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUzNzAxMjE4MDA1MjGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9502, '2016-08-11 09:10:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8731,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:46.554638Z","gw_timestamp":228975923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUwNzAxMjE5MDA1MjGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9504, '2016-08-11 09:11:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8733,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:00.874454Z","gw_timestamp":243339579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDU1MzAxMjE4MDA1MjGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9506, '2016-08-11 09:11:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8735,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:15.247625Z","gw_timestamp":257703227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUzNTAxMjE4MDA1MjGy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9512, '2016-08-11 09:12:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8741,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:58.330169Z","gw_timestamp":300794283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUzNzAxMjE4MDA1MjGv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9514, '2016-08-11 09:12:14', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":767,"f_cnt_down":1356,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:22:24.966922Z","gw_timestamp":1986324308,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXAwMDgyNDAxMjE4MDA1MzIRsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9516, '2016-08-11 09:12:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8744,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:19.883362Z","gw_timestamp":322338715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDU1MzAxMjE4MDA1MjGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9518, '2016-08-11 09:12:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8746,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:34.264254Z","gw_timestamp":336701843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU0MDAxMjE4MDA1MjGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9520, '2016-08-11 09:12:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8748,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:12:48.616466Z","gw_timestamp":351064243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU0MjAxMjE4MDA1MjGxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9491, '2016-08-11 09:09:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8718,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:09:13.17538Z","gw_timestamp":135613867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-82,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFEwMDUxNTAxMjE5MDA1MjCvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9499, '2016-08-11 09:10:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8728,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:24.964245Z","gw_timestamp":207430243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDU0NjAxMjE5MDA1MjGymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9501, '2016-08-11 09:10:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8730,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:39.33458Z","gw_timestamp":221794003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUzMTAxMjE4MDA1MjCu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9503, '2016-08-11 09:11:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8732,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:10:53.693744Z","gw_timestamp":236157651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUxNzAxMjE4MDA1MjGu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9505, '2016-08-11 09:11:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8734,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:11:08.080268Z","gw_timestamp":250521299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDU0NDAxMjE4MDA1MjGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9529, '2016-08-11 09:14:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8757,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:53.241643Z","gw_timestamp":415699835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDU2NDAxMjE4MDA1MjGuag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9531, '2016-08-11 09:14:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8759,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:07.608996Z","gw_timestamp":430063387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDU0NDAxMjE4MDA1MjGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9533, '2016-08-11 09:14:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8761,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:21.969261Z","gw_timestamp":444427243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUzNTAxMjE4MDA1MjKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9535, '2016-08-11 09:14:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8763,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:36.37588Z","gw_timestamp":458790995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDU2NjAxMjE4MDA1MjKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9537, '2016-08-11 09:14:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8765,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:50.696686Z","gw_timestamp":473153707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDQ5NjAxMjE4MDA1MjKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9539, '2016-08-11 09:15:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8767,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:05.057002Z","gw_timestamp":487517251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUyMjAxMjE4MDA1MjKvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9541, '2016-08-11 09:15:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8769,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:19.426382Z","gw_timestamp":501880907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDU2NDAxMjE4MDA1MjKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9545, '2016-08-11 09:15:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8773,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:48.167154Z","gw_timestamp":530606851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUxMzAxMjE4MDA1MjKzew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9557, '2016-08-11 09:17:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8784,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:07.184592Z","gw_timestamp":609605675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUxNzAxMjE4MDA1MjOvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9522, '2016-08-11 09:13:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8750,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:02.971187Z","gw_timestamp":365427587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUyMjAxMjE4MDA1MjGy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9530, '2016-08-11 09:14:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8758,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:00.418374Z","gw_timestamp":422881451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDQ5ODAxMjE4MDA1MjKzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9536, '2016-08-11 09:14:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8764,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:43.513128Z","gw_timestamp":465972715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU0OTAxMjE4MDA1MjKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9538, '2016-08-11 09:15:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8766,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:57.880499Z","gw_timestamp":480335331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUwOTAxMjE4MDA1MjKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9540, '2016-08-11 09:15:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8768,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:12.255247Z","gw_timestamp":494699187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDU1NTAxMjE4MDA1MjKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9542, '2016-08-11 09:15:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8770,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:26.599012Z","gw_timestamp":509062835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFQwMDUwNTAxMjE4MDA1MjKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9544, '2016-08-11 09:15:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8772,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:40.964261Z","gw_timestamp":523425339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDU2MjAxMjE4MDA1MjKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9546, '2016-08-11 09:16:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8774,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:55.327447Z","gw_timestamp":537788155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUzMTAxMjE4MDA1MjKyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9548, '2016-08-11 09:16:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8776,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:09.694984Z","gw_timestamp":552151811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUxNTAxMjE4MDA1MjOwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9550, '2016-08-11 09:16:26', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":851,"f_cnt_down":1557,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:16:20.780843Z","gw_timestamp":3602518244,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BTAwMDgxNzAxMjIyMDA1MTIUwQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9552, '2016-08-11 09:16:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8779,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:31.248249Z","gw_timestamp":573696763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUzMTAxMjE4MDA1MjKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9554, '2016-08-11 09:16:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8781,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:45.622936Z","gw_timestamp":588060099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUzNTAxMjE4MDA1MjOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9556, '2016-08-11 09:17:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8783,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:59.989368Z","gw_timestamp":602423851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUyNjAxMjE4MDA1MjOyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9558, '2016-08-11 09:17:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8785,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:14.362672Z","gw_timestamp":616787603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUzNTAxMjE4MDA1MjOw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9527, '2016-08-11 09:13:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8755,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:38.880479Z","gw_timestamp":401336083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU0NDAxMjE4MDA1MjGxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9543, '2016-08-11 09:15:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8771,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:15:33.787636Z","gw_timestamp":516244139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AE4wMDU0MjAxMjE4MDA1MjKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9547, '2016-08-11 09:16:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8775,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:02.52888Z","gw_timestamp":544969979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFgwMDUyMDAxMjE4MDA1MjKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9549, '2016-08-11 09:16:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8777,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:16.880817Z","gw_timestamp":559333731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUzNzAxMjE4MDA1MjKwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9551, '2016-08-11 09:16:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8778,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:24.072019Z","gw_timestamp":566515459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUxMzAxMjE4MDA1MjKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9553, '2016-08-11 09:16:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8780,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:38.432463Z","gw_timestamp":580878163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUyNDAxMjE4MDA1MjOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9555, '2016-08-11 09:17:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8782,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:16:52.838404Z","gw_timestamp":595242027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUyMjAxMjE4MDA1MjOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9559, '2016-08-11 09:17:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8786,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:21.555882Z","gw_timestamp":623969331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUzMTAxMjE4MDA1MjOyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9563, '2016-08-11 09:17:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8790,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:50.292885Z","gw_timestamp":652696731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUxNzAxMjE4MDA1MjOxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9573, '2016-08-11 09:19:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8800,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:02.170045Z","gw_timestamp":724513107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AoMwMDUzNTAxMjE4MDA1MjOzqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9575, '2016-08-11 09:19:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8802,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:16.5068Z","gw_timestamp":738876859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiowMDUwMDAxMjE4MDA1MjOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9577, '2016-08-11 09:19:32', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":851,"f_cnt_down":1524,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:19:25.013279Z","gw_timestamp":3786750764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:29:41.208537Z","gw_timestamp":2422565924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A2EwMDU0ODAxMjM4MDA0NTcRcQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9579, '2016-08-11 09:19:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8805,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:38.059759Z","gw_timestamp":760422443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnIwMDUyMDAxMjE4MDA1MjSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9528, '2016-08-11 09:13:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8756,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:13:46.062001Z","gw_timestamp":408518011,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDU0MDAxMjE4MDA1MjGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9532, '2016-08-11 09:14:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8760,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:14.781999Z","gw_timestamp":437245315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU1MzAxMjE4MDA1MjGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9534, '2016-08-11 09:14:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8762,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:14:29.155247Z","gw_timestamp":451609067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUzMzAxMjE4MDA1MjKxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9560, '2016-08-11 09:17:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8787,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:28.758507Z","gw_timestamp":631151259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUyNjAxMjE4MDA1MjOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9562, '2016-08-11 09:17:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8789,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:43.113811Z","gw_timestamp":645514899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUxMzAxMjE4MDA1MjOx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9564, '2016-08-11 09:18:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8791,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:57.476963Z","gw_timestamp":659878451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGIwMDUxMTAxMjE4MDA1MjOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9566, '2016-08-11 09:18:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8793,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:11.848524Z","gw_timestamp":674241163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGIwMDUzMzAxMjE4MDA1MjOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9568, '2016-08-11 09:18:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8795,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:26.21996Z","gw_timestamp":688604083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGQwMDUyMDAxMjE4MDA1MjOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9572, '2016-08-11 09:19:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8799,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:54.951765Z","gw_timestamp":717331387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDQ4MTAxMjE4MDA1MjOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9574, '2016-08-11 09:19:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8801,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:09.325199Z","gw_timestamp":731695139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AoEwMDU0MDAxMjE4MDA1MjOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9576, '2016-08-11 09:19:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8803,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:23.697837Z","gw_timestamp":746058787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnkwMDUyMDAxMjE4MDA1MjSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9578, '2016-08-11 09:19:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8804,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:30.87719Z","gw_timestamp":753240507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDUzNzAxMjE4MDA1MjSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9580, '2016-08-11 09:19:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8806,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:45.232436Z","gw_timestamp":767603643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AoMwMDU1NTAxMjE4MDA1MjSxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9582, '2016-08-11 09:20:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8808,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:59.605896Z","gw_timestamp":781966971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDUxNzAxMjE4MDA1MjSvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9561, '2016-08-11 09:17:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8788,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:17:35.919328Z","gw_timestamp":638332979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF8wMDUwOTAxMjE4MDA1MjOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9565, '2016-08-11 09:18:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8792,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:04.665443Z","gw_timestamp":667060067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDUxNzAxMjE4MDA1MjOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9567, '2016-08-11 09:18:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8794,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:19.060022Z","gw_timestamp":681423091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDUyMjAxMjE4MDA1MjOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9569, '2016-08-11 09:18:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8796,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:33.401507Z","gw_timestamp":695785803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDUxNzAxMjE4MDA1MjOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9571, '2016-08-11 09:18:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8798,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:47.768607Z","gw_timestamp":710149563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGQwMDU1NzAxMjE4MDA1MjOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9581, '2016-08-11 09:20:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8807,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:19:52.421065Z","gw_timestamp":774785147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AZAwMDUxMTAxMjE4MDA1MjSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9583, '2016-08-11 09:20:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8809,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:06.774306Z","gw_timestamp":789148699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjgwMDUyNjAxMjE4MDA1MjSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9585, '2016-08-11 09:20:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8811,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:21.151638Z","gw_timestamp":803512555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjUwMDUxMzAxMjE4MDA1MjSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9587, '2016-08-11 09:20:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8813,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:35.520955Z","gw_timestamp":817876203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU1MzAxMjE4MDA1MjSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9611, '2016-08-11 09:23:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8836,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:20.678455Z","gw_timestamp":983052659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjowMDU2NjAxMjE4MDA1MjWumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9613, '2016-08-11 09:23:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8838,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:35.043816Z","gw_timestamp":997415683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AfswMDU2ODAxMjE4MDA1MjWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9615, '2016-08-11 09:23:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8840,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:49.410536Z","gw_timestamp":1011779027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjgwMDU3MzAxMjE4MDA1MjWySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9617, '2016-08-11 09:24:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8842,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:03.806213Z","gw_timestamp":1026142675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkswMDU3NzAxMjE4MDA1MjWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9570, '2016-08-11 09:18:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8797,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:18:40.584468Z","gw_timestamp":702967635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGMwMDUxNTAxMjE4MDA1MjOv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9586, '2016-08-11 09:20:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8812,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:28.332491Z","gw_timestamp":810694275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU0OTAxMjE4MDA1MjSyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9588, '2016-08-11 09:20:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8814,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:42.691444Z","gw_timestamp":825058035,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU1MTAxMjE4MDA1MjSyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9590, '2016-08-11 09:21:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8816,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:57.052814Z","gw_timestamp":839421787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkEwMDUxMTAxMjE4MDA1MjSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9592, '2016-08-11 09:21:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8818,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:11.424421Z","gw_timestamp":853784395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgowMDU1NTAxMjE4MDA1MjSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9594, '2016-08-11 09:21:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8820,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:25.780315Z","gw_timestamp":868147003,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkEwMDU3NTAxMjE4MDA1MjSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9584, '2016-08-11 09:20:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8810,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:13.96894Z","gw_timestamp":796330627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU0NjAxMjE4MDA1MjSwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9596, '2016-08-11 09:21:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8822,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:40.135695Z","gw_timestamp":882509923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDU2MjAxMjE4MDA1MjSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9598, '2016-08-11 09:22:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8824,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:54.501938Z","gw_timestamp":896872531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkEwMDU1NTAxMjE4MDA1MjSwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9600, '2016-08-11 09:22:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8826,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:08.864195Z","gw_timestamp":911235243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkMwMDU0MDAxMjE4MDA1MjWuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9602, '2016-08-11 09:22:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8828,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:23.237443Z","gw_timestamp":925598891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhEwMDU5NjAxMjE4MDA1MjWx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9604, '2016-08-11 09:22:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8830,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:37.599933Z","gw_timestamp":939962547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgswMDU1MTAxMjE4MDA1MjWvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9606, '2016-08-11 09:22:54', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1330,"f_cnt_down":2136,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:22:48.522981Z","gw_timestamp":3990260556,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":3.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AiEwMDgwMTAxMjIyMDA0OTEIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9608, '2016-08-11 09:23:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8833,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:59.141571Z","gw_timestamp":961507083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Af8wMDU3NTAxMjE4MDA1MjWtug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9610, '2016-08-11 09:23:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8835,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:13.501822Z","gw_timestamp":975870835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhMwMDU0MjAxMjE4MDA1MjWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9612, '2016-08-11 09:23:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8837,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:27.876917Z","gw_timestamp":990234379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiwwMDU3NzAxMjE4MDA1MjWyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9614, '2016-08-11 09:23:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8839,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:42.224605Z","gw_timestamp":1004597091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjcwMDU5NjAxMjE4MDA1MjWvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9616, '2016-08-11 09:24:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8841,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:56.587692Z","gw_timestamp":1018960851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjgwMDU3MzAxMjE4MDA1MjWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9618, '2016-08-11 09:24:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8843,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:10.959953Z","gw_timestamp":1033324603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak4wMDU1NTAxMjE4MDA1MjaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9589, '2016-08-11 09:21:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8815,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:20:49.876188Z","gw_timestamp":832239859,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak4wMDU3NTAxMjE4MDA1MjSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9591, '2016-08-11 09:21:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8817,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:04.240691Z","gw_timestamp":846603091,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgswMDU3NTAxMjE4MDA1MjSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9593, '2016-08-11 09:21:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8819,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:18.604671Z","gw_timestamp":860965699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkYwMDU2MDAxMjE4MDA1MjS0qw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9595, '2016-08-11 09:21:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8821,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:32.979905Z","gw_timestamp":875328931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU2NjAxMjE4MDA1MjSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9597, '2016-08-11 09:21:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8823,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:21:47.33045Z","gw_timestamp":889691019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU1MzAxMjE4MDA1MjSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9599, '2016-08-11 09:22:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8825,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:01.721715Z","gw_timestamp":904053627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkQwMDU0MDAxMjE4MDA1MjWvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9601, '2016-08-11 09:22:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8827,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:16.046817Z","gw_timestamp":918417067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjswMDU2MjAxMjE4MDA1MjWteg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9603, '2016-08-11 09:22:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8829,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:30.409071Z","gw_timestamp":932780723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah4wMDU0NDAxMjE4MDA1MjWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9605, '2016-08-11 09:22:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8831,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:44.778323Z","gw_timestamp":947143955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah8wMDU3MTAxMjE4MDA1MjWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9607, '2016-08-11 09:23:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8832,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:22:51.964924Z","gw_timestamp":954325147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhUwMDU2NjAxMjE4MDA1MjWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9609, '2016-08-11 09:23:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8834,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:23:06.323145Z","gw_timestamp":968688907,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Af0wMDU0MDAxMjE4MDA1MjWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9619, '2016-08-11 09:24:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8844,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:18.133522Z","gw_timestamp":1040506531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkswMDU2NDAxMjE4MDA1Mjaxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9620, '2016-08-11 09:24:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8845,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:25.323198Z","gw_timestamp":1047688251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkwwMDU3MzAxMjE4MDA1Mjaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9621, '2016-08-11 09:24:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8846,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:32.504818Z","gw_timestamp":1054869771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkswMDU1MzAxMjE4MDA1Mjayqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9622, '2016-08-11 09:24:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8847,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:39.697728Z","gw_timestamp":1062050859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkgwMDU4NDAxMjE4MDA1MjaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9626, '2016-08-11 09:25:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8851,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:08.409074Z","gw_timestamp":1090777331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkswMDU2ODAxMjE4MDA1Mjayyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9642, '2016-08-11 09:27:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8867,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:03.310199Z","gw_timestamp":1205682787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Af4wMDU1MTAxMjE4MDA1MjWvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9644, '2016-08-11 09:27:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8869,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:17.674532Z","gw_timestamp":1220046539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AfkwMDU1MTAxMjE4MDA1MjWyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9646, '2016-08-11 09:27:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8870,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:24.863291Z","gw_timestamp":1227228363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhMwMDU4MjAxMjE4MDA1MjWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9648, '2016-08-11 09:27:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8872,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:39.21733Z","gw_timestamp":1241591075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgwwMDU1MTAxMjE4MDA1MjaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9650, '2016-08-11 09:28:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8874,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:53.588711Z","gw_timestamp":1255953683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiUwMDU1MzAxMjE4MDA1MjWx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9652, '2016-08-11 09:28:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8876,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:07.946957Z","gw_timestamp":1270317547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjwwMDU0OTAxMjE4MDA1MjWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9654, '2016-08-11 09:28:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8878,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:22.309341Z","gw_timestamp":1284681291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkIwMDU2NDAxMjE4MDA1MjWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9656, '2016-08-11 09:28:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8880,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:36.671832Z","gw_timestamp":1299043803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjswMDU4MDAxMjE4MDA1MjWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9658, '2016-08-11 09:28:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8882,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:51.0499Z","gw_timestamp":1313407555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgkwMDUzNzAxMjE5MDA1MjWy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9660, '2016-08-11 09:29:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8884,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:05.398964Z","gw_timestamp":1327771315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjwwMDU2NDAxMjE5MDA1MjSs6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9662, '2016-08-11 09:29:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8886,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:19.755286Z","gw_timestamp":1342133923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhwwMDYwMzAxMjE5MDA1MjWy6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9664, '2016-08-11 09:29:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8888,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:34.121587Z","gw_timestamp":1356497571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeowMDU3NzAxMjE5MDA1MjWvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9623, '2016-08-11 09:24:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8848,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:46.86208Z","gw_timestamp":1069232787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak4wMDYwNTAxMjE4MDA1MjawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9627, '2016-08-11 09:25:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8852,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:15.592702Z","gw_timestamp":1097959051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak0wMDUzMTAxMjE4MDA1MjaxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9629, '2016-08-11 09:25:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8854,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:29.947815Z","gw_timestamp":1112321867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkwwMDU0MjAxMjE4MDA1Mjav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9631, '2016-08-11 09:25:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8856,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:44.338472Z","gw_timestamp":1126684579,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDU2NjAxMjE4MDA1Mjavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9633, '2016-08-11 09:26:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8858,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:58.681468Z","gw_timestamp":1141047707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkgwMDU1MTAxMjE4MDA1MjawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9635, '2016-08-11 09:26:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8860,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:13.035707Z","gw_timestamp":1155410939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkwwMDU0MjAxMjE4MDA1Mjawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9661, '2016-08-11 09:29:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8885,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:12.581588Z","gw_timestamp":1334952515,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Af0wMDU2MjAxMjE5MDA1MjWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9667, '2016-08-11 09:30:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8891,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:55.665463Z","gw_timestamp":1378043051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgQwMDUwOTAxMjE5MDA1MjWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9683, '2016-08-11 09:32:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8907,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:50.578597Z","gw_timestamp":1492948715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhQwMDU1ODAxMjE5MDA1MjSvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9685, '2016-08-11 09:32:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8909,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:04.934094Z","gw_timestamp":1507312467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah4wMDU0OTAxMjE5MDA1MjSxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9687, '2016-08-11 09:32:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8911,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:19.310284Z","gw_timestamp":1521676123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgowMDUzMTAxMjE5MDA1MjOwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9689, '2016-08-11 09:32:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8914,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:40.849098Z","gw_timestamp":1543220659,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiswMDU3NjAxMjE5MDA1MjOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9705, '2016-08-11 09:34:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8930,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:35.752225Z","gw_timestamp":1658125187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjAwMDUzNTAxMjIwMDA1MjKveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9707, '2016-08-11 09:34:44', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":853,"f_cnt_down":1526,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:34:35.871449Z","gw_timestamp":402642044,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BcIwMDU5OTAxMjM4MDA0NTkN4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9624, '2016-08-11 09:24:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8849,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:24:54.062983Z","gw_timestamp":1076414619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkwwMDU4NDAxMjE4MDA1Mjawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9628, '2016-08-11 09:25:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8853,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:22.766323Z","gw_timestamp":1105140043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak0wMDUxNzAxMjE4MDA1Mjav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9630, '2016-08-11 09:25:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8855,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:37.130833Z","gw_timestamp":1119503587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDUxNzAxMjE4MDA1Mjav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9632, '2016-08-11 09:25:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8857,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:51.49983Z","gw_timestamp":1133866299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU4OTAxMjE4MDA1MjawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9634, '2016-08-11 09:26:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8859,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:05.866064Z","gw_timestamp":1148229115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlEwMDU4NjAxMjE4MDA1Mjay6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9636, '2016-08-11 09:26:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8861,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:20.231592Z","gw_timestamp":1162592771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhowMDU2MjAxMjE4MDA1MjWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9638, '2016-08-11 09:26:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8863,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:34.58997Z","gw_timestamp":1176956523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeowMDU2ODAxMjE4MDA1MjWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9640, '2016-08-11 09:26:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8865,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:48.95395Z","gw_timestamp":1191319763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AXowMDU2MjAxMjE4MDA1MjWyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9668, '2016-08-11 09:30:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8892,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:02.869361Z","gw_timestamp":1385224243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgowMDU2NDAxMjE5MDA1MjWyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9712, '2016-08-11 09:35:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8935,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:11.662469Z","gw_timestamp":1694032443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiYwMDU1MjAxMjIwMDA1MjKxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9714, '2016-08-11 09:35:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8937,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:26.01872Z","gw_timestamp":1708396091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiIwMDUyMDAxMjIwMDA1MjKxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9716, '2016-08-11 09:35:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8939,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:40.395711Z","gw_timestamp":1722759323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDU3ODAxMjIwMDA1MjKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9718, '2016-08-11 09:36:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8941,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:54.757436Z","gw_timestamp":1737122555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDU1NDAxMjIwMDA1MjKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9720, '2016-08-11 09:36:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8943,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:09.121986Z","gw_timestamp":1751486211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlEwMDU2NzAxMjIwMDA1MjKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9625, '2016-08-11 09:25:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8850,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:25:01.239667Z","gw_timestamp":1083595915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak0wMDU2NDAxMjE4MDA1Mjayiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9637, '2016-08-11 09:26:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8862,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:27.398081Z","gw_timestamp":1169774699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeYwMDUyOTAxMjE4MDA1MjWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9639, '2016-08-11 09:26:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8864,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:41.769333Z","gw_timestamp":1184138243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AdMwMDU4MDAxMjE4MDA1MjWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9641, '2016-08-11 09:27:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8866,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:26:56.140853Z","gw_timestamp":1198500955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aj0wMDUzNzAxMjE4MDA1MjWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9643, '2016-08-11 09:27:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8868,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:10.493622Z","gw_timestamp":1212864603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AicwMDU1NzAxMjE4MDA1MjWvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9645, '2016-08-11 09:27:26', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":768,"f_cnt_down":1357,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:27:19.55138Z","gw_timestamp":4261289076,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXUwMDg0MjAxMjIwMDA1MzIHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9647, '2016-08-11 09:27:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8871,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:32.03383Z","gw_timestamp":1234409979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgIwMDU1NzAxMjE4MDA1MjWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9649, '2016-08-11 09:27:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8873,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:27:46.407949Z","gw_timestamp":1248772379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AggwMDU1MzAxMjE4MDA1MjWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9651, '2016-08-11 09:28:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8875,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:00.761115Z","gw_timestamp":1263135611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiQwMDU2MjAxMjE4MDA1MjaxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9653, '2016-08-11 09:28:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8877,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:15.130178Z","gw_timestamp":1277499467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkgwMDU2ODAxMjE4MDA1MjWvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9655, '2016-08-11 09:28:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8879,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:29.491965Z","gw_timestamp":1291862499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhwwMDUxNTAxMjE4MDA1MjWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9657, '2016-08-11 09:28:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8881,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:43.855064Z","gw_timestamp":1306225731,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aj8wMDU2NjAxMjE5MDA1MjWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9659, '2016-08-11 09:29:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8883,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:28:58.219329Z","gw_timestamp":1320589387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhAwMDU0MDAxMjE5MDA1MjWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9663, '2016-08-11 09:29:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8887,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:26.945218Z","gw_timestamp":1349315851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgYwMDUyOTAxMjE5MDA1MjWwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9665, '2016-08-11 09:29:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8889,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:41.313322Z","gw_timestamp":1363679499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag0wMDUzNzAxMjE5MDA1MjWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9669, '2016-08-11 09:30:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8893,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:10.033704Z","gw_timestamp":1392405867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AikwMDU0OTAxMjE5MDA1MjWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9671, '2016-08-11 09:30:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8895,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:31.584606Z","gw_timestamp":1413951451,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag0wMDU1NTAxMjE5MDA1MjSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9673, '2016-08-11 09:30:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8898,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:45.943965Z","gw_timestamp":1428314891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgswMDUzNzAxMjE5MDA1MjSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9675, '2016-08-11 09:31:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8900,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:00.299199Z","gw_timestamp":1442678331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AigwMDU0OTAxMjE5MDA1MjSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9677, '2016-08-11 09:31:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8902,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:14.664534Z","gw_timestamp":1457041467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiQwMDU5MjAxMjE5MDA1MjSwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9679, '2016-08-11 09:31:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8904,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:29.032717Z","gw_timestamp":1471404803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgwwMDU2OTAxMjE5MDA1MjSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9681, '2016-08-11 09:31:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8905,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:36.217328Z","gw_timestamp":1478585891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhIwMDU3NjAxMjE5MDA1MjSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9691, '2016-08-11 09:33:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8916,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:55.206344Z","gw_timestamp":1557584203,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AecwMDU5OTAxMjE5MDA1MjOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9693, '2016-08-11 09:33:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8918,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:09.592792Z","gw_timestamp":1571947027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah0wMDU3ODAxMjE5MDA1MjOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9695, '2016-08-11 09:33:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8920,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:23.952244Z","gw_timestamp":1586309739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiMwMDU3NjAxMjE5MDA1MjOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9697, '2016-08-11 09:33:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8922,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:38.301209Z","gw_timestamp":1600673283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhAwMDU0MDAxMjE5MDA1MjOvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9699, '2016-08-11 09:34:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8924,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:52.668459Z","gw_timestamp":1615037043,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhQwMDU2OTAxMjE5MDA1MjOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9701, '2016-08-11 09:34:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8926,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:07.023701Z","gw_timestamp":1629399859,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag8wMDU3NjAxMjIwMDA1MjKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9666, '2016-08-11 09:29:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8890,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:29:48.495823Z","gw_timestamp":1370861331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiMwMDQ5MDAxMjE5MDA1MjWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9670, '2016-08-11 09:30:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8894,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:17.225169Z","gw_timestamp":1399587587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-85,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiQwMDU3NjAxMjE5MDA1MjWveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9672, '2016-08-11 09:30:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8897,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:38.761213Z","gw_timestamp":1421133163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgowMDU0MDAxMjE5MDA1MjSxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9674, '2016-08-11 09:31:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8899,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:30:53.121536Z","gw_timestamp":1435496923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgkwMDU0NjAxMjE5MDA1MjSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9676, '2016-08-11 09:31:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8901,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:07.505849Z","gw_timestamp":1449859531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiUwMDUyMDAxMjE5MDA1MjSyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9678, '2016-08-11 09:31:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8903,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:21.854101Z","gw_timestamp":1464223395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiUwMDU3NjAxMjE5MDA1MjSvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9680, '2016-08-11 09:31:37', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":852,"f_cnt_down":1558,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:31:31.567723Z","gw_timestamp":218338236,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BUUwMDgyMTAxMjI0MDA1MTYHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9682, '2016-08-11 09:31:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8906,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:43.409237Z","gw_timestamp":1485767099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhUwMDU1MTAxMjE5MDA1MjSvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9684, '2016-08-11 09:32:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8908,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:31:57.754217Z","gw_timestamp":1500130539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhIwMDUxNTAxMjE5MDA1MjSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9686, '2016-08-11 09:32:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8910,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:12.114624Z","gw_timestamp":1514494299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkEwMDUzNTAxMjE5MDA1MjSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9688, '2016-08-11 09:32:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8912,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:33.68Z","gw_timestamp":1536038835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhUwMDU1NTAxMjE5MDA1MjOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9690, '2016-08-11 09:32:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8915,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:32:48.02572Z","gw_timestamp":1550402483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ai4wMDU2MjAxMjE5MDA1MjOxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9692, '2016-08-11 09:33:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8917,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:02.39597Z","gw_timestamp":1564765195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhQwMDU2MjAxMjE5MDA1MjOveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9694, '2016-08-11 09:33:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8919,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:16.771476Z","gw_timestamp":1579128643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah4wMDUyOTAxMjE5MDA1MjOxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9696, '2016-08-11 09:33:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8921,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:31.116472Z","gw_timestamp":1593491459,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag8wMDUyOTAxMjE5MDA1MjOuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9698, '2016-08-11 09:33:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8923,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:45.476843Z","gw_timestamp":1607855315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag4wMDU2MjAxMjIwMDA1MjOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9700, '2016-08-11 09:34:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8925,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:33:59.878613Z","gw_timestamp":1622218139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag8wMDU2MDAxMjIwMDA1MjOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9702, '2016-08-11 09:34:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8927,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:14.225745Z","gw_timestamp":1636581059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AecwMDU1ODAxMjIwMDA1MjKwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9704, '2016-08-11 09:34:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8929,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:28.5716Z","gw_timestamp":1650943363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjowMDU1MzAxMjIwMDA1MjKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9706, '2016-08-11 09:34:38', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":852,"f_cnt_down":1525,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:33:17.099425Z","gw_timestamp":3333424108,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-2.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BcIwMDU5OTAxMjM4MDA0NTkN4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9708, '2016-08-11 09:34:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8931,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:42.933843Z","gw_timestamp":1665306387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjAwMDU2NzAxMjIwMDA1MjKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9710, '2016-08-11 09:35:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8933,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:57.300108Z","gw_timestamp":1679668891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiYwMDYwMzAxMjIwMDA1MjKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9724, '2016-08-11 09:36:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8947,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:37.844227Z","gw_timestamp":1780213515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AigwMDU2NTAxMjIwMDA1MjKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9726, '2016-08-11 09:37:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8949,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:52.199349Z","gw_timestamp":1794577267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak0wMDU0NTAxMjIwMDA1MjKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9754, '2016-08-11 09:40:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8976,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:06.120755Z","gw_timestamp":1988481155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag4wMDU3NDAxMjIxMDA1MjKuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9756, '2016-08-11 09:40:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8978,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:20.46574Z","gw_timestamp":2002844715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgYwMDU2NTAxMjIxMDA1MjKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9758, '2016-08-11 09:40:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8980,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:42.02462Z","gw_timestamp":2024388827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkwwMDU2NzAxMjIxMDA1MjK0Kw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9760, '2016-08-11 09:41:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8983,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:56.400351Z","gw_timestamp":2038752075,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AggwMDU3MjAxMjIxMDA1MjKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9703, '2016-08-11 09:34:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8928,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:21.381976Z","gw_timestamp":1643762363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ad8wMDUzNTAxMjIwMDA1MjKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9711, '2016-08-11 09:35:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8934,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:04.49099Z","gw_timestamp":1686850611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiYwMDU2NTAxMjIwMDA1MjKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9743, '2016-08-11 09:38:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8965,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:47.112484Z","gw_timestamp":1909482843,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDU2MTAxMjIxMDA1MjKvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9745, '2016-08-11 09:39:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8967,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:01.463945Z","gw_timestamp":1923845459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDU3NjAxMjIxMDA1MjKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9747, '2016-08-11 09:39:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8969,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:15.84605Z","gw_timestamp":1938208275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDU0MzAxMjIxMDA1MjKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9749, '2016-08-11 09:39:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8971,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:30.189219Z","gw_timestamp":1952571819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDU5NTAxMjIxMDA1MjKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9751, '2016-08-11 09:39:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8973,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:44.553477Z","gw_timestamp":1966935475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU2MzAxMjIxMDA1MjKxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9753, '2016-08-11 09:40:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8975,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:58.920841Z","gw_timestamp":1981299339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiQwMDU2OTAxMjIxMDA1MjKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9755, '2016-08-11 09:40:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8977,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:13.282103Z","gw_timestamp":1995662883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgIwMDU0NzAxMjIxMDA1MjKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9757, '2016-08-11 09:40:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8979,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:27.647352Z","gw_timestamp":2010025811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgUwMDU4MTAxMjIxMDA1MjKymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9759, '2016-08-11 09:40:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8982,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:40:49.190237Z","gw_timestamp":2031570243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah4wMDU2MTAxMjIxMDA1MjKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9761, '2016-08-11 09:41:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8984,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:03.560617Z","gw_timestamp":2045933899,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlEwMDUzNDAxMjIyMDA1MjKuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9763, '2016-08-11 09:41:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8986,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:17.913859Z","gw_timestamp":2060296715,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjMwMDU2NTAxMjIxMDA1MjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9765, '2016-08-11 09:41:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8988,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:32.298584Z","gw_timestamp":2074659427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgQwMDU4MTAxMjIyMDA1MjGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9709, '2016-08-11 09:34:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8932,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:34:50.119742Z","gw_timestamp":1672487899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiwwMDU2NzAxMjIwMDA1MjKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9713, '2016-08-11 09:35:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8936,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:18.840102Z","gw_timestamp":1701214259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AicwMDU2OTAxMjIwMDA1MjKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9715, '2016-08-11 09:35:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8938,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:33.202349Z","gw_timestamp":1715578019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjIwMDU3MjAxMjIwMDA1MjKxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9717, '2016-08-11 09:35:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8940,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:35:47.567984Z","gw_timestamp":1729940635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak4wMDU2NzAxMjIwMDA1MjKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9719, '2016-08-11 09:36:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8942,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:01.923106Z","gw_timestamp":1744304283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aj4wMDU5NDAxMjIwMDA1MjKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9721, '2016-08-11 09:36:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8944,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:16.286105Z","gw_timestamp":1758668043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak0wMDU3NjAxMjIwMDA1MjKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9723, '2016-08-11 09:36:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8946,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:30.659123Z","gw_timestamp":1773031587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ai0wMDYxMTAxMjIwMDA1MjKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9725, '2016-08-11 09:36:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8948,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:45.045476Z","gw_timestamp":1787395443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkkwMDU1NDAxMjIwMDA1MjKwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9727, '2016-08-11 09:37:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8950,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:59.378982Z","gw_timestamp":1801759099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDU3NDAxMjIwMDA1MjKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9729, '2016-08-11 09:37:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8952,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:13.742237Z","gw_timestamp":1816122547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDU5MjAxMjIwMDA1MjKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9731, '2016-08-11 09:37:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8954,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:28.108081Z","gw_timestamp":1830484843,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU4NTAxMjIwMDA1MjKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9733, '2016-08-11 09:37:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8956,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:42.475731Z","gw_timestamp":1844848179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDU2NzAxMjIxMDA1MjKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9735, '2016-08-11 09:38:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8958,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:56.836979Z","gw_timestamp":1859211627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU4MTAxMjIxMDA1MjKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9737, '2016-08-11 09:38:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8959,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:04.018733Z","gw_timestamp":1866392619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlAwMDU2MTAxMjIxMDA1MjKyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9722, '2016-08-11 09:36:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8945,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:36:23.472724Z","gw_timestamp":1765849763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkwwMDU4MzAxMjIwMDA1MjKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9728, '2016-08-11 09:37:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8951,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:06.567595Z","gw_timestamp":1808940923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDU1NjAxMjIwMDA1MjKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9730, '2016-08-11 09:37:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8953,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:20.946121Z","gw_timestamp":1823303643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDU0NTAxMjIwMDA1MjKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9732, '2016-08-11 09:37:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8955,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:35.299356Z","gw_timestamp":1837666251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDU2MzAxMjIwMDA1MjKx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9734, '2016-08-11 09:37:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8957,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:37:49.653306Z","gw_timestamp":1852030115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDU0MDAxMjIxMDA1MjKxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9736, '2016-08-11 09:38:07', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1331,"f_cnt_down":2137,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:37:59.350654Z","gw_timestamp":606121340,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Aa8wMDkxOTAxMjI0MDA0OTYIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9738, '2016-08-11 09:38:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8960,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:11.21786Z","gw_timestamp":1873574339,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDU2NTAxMjIxMDA1MjKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9740, '2016-08-11 09:38:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8962,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:25.567859Z","gw_timestamp":1887937267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDU3ODAxMjIxMDA1MjKw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9742, '2016-08-11 09:38:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8964,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:39.922313Z","gw_timestamp":1902301019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU3MjAxMjIxMDA1MjKvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9744, '2016-08-11 09:39:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8966,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:54.282111Z","gw_timestamp":1916664155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU0NTAxMjIxMDA1MjKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9746, '2016-08-11 09:39:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8968,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:08.65634Z","gw_timestamp":1931027283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU0NTAxMjIxMDA1MjKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9748, '2016-08-11 09:39:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8970,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:23.015614Z","gw_timestamp":1945389995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDU4MzAxMjIxMDA1MjKuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9750, '2016-08-11 09:39:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8972,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:37.390257Z","gw_timestamp":1959753755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlAwMDU1NDAxMjIxMDA1MjKymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9752, '2016-08-11 09:40:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8974,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:39:51.749505Z","gw_timestamp":1974117403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ag0wMDU4MTAxMjIxMDA1MjKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9739, '2016-08-11 09:38:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8961,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:18.373983Z","gw_timestamp":1880755331,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkUwMDU4MzAxMjIxMDA1MjKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9741, '2016-08-11 09:38:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8963,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:38:32.739423Z","gw_timestamp":1895119195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDU0NTAxMjIxMDA1MjKyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9769, '2016-08-11 09:42:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8992,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:01.006616Z","gw_timestamp":2103386627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ah8wMDU4NjAxMjIyMDA1MjGvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9771, '2016-08-11 09:42:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8994,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:15.37386Z","gw_timestamp":2117749347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDUyNzAxMjIyMDA1MjGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9773, '2016-08-11 09:42:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8996,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:29.735253Z","gw_timestamp":2132113107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUyNzAxMjIyMDA1MjGySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9775, '2016-08-11 09:42:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8997,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:36.911869Z","gw_timestamp":2139294827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU3MDAxMjIyMDA1MjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9787, '2016-08-11 09:44:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9009,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:03.145249Z","gw_timestamp":2225475075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjIwMDU3MjAxMjIyMDA1MjCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9789, '2016-08-11 09:44:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9011,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:17.461736Z","gw_timestamp":2239838835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkcwMDU2MTAxMjIyMDA1MjCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9791, '2016-08-11 09:44:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9013,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:31.824001Z","gw_timestamp":2254202491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkIwMDU2NTAxMjIyMDA1MTmySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9793, '2016-08-11 09:44:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9015,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:46.190249Z","gw_timestamp":2268565203,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjgwMDU4MTAxMjIyMDA1MTmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9795, '2016-08-11 09:45:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9017,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:00.549504Z","gw_timestamp":2282928755,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjcwMDU5MTAxMjIzMDA1MTmy2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9797, '2016-08-11 09:45:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9019,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:14.924191Z","gw_timestamp":2297292507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjQwMDU2MzAxMjIzMDA1MTmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9799, '2016-08-11 09:45:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9021,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:29.297398Z","gw_timestamp":2311655227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjkwMDU2ODAxMjIzMDA1MTmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9801, '2016-08-11 09:45:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9023,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:43.636376Z","gw_timestamp":2326018979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjMwMDU3OTAxMjIzMDA1MTmxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9762, '2016-08-11 09:41:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8985,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:10.745608Z","gw_timestamp":2053115723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDYwOTAxMjIxMDA1MjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9764, '2016-08-11 09:41:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8987,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:25.106616Z","gw_timestamp":2067477811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkEwMDU0NTAxMjIyMDA1MjGu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9766, '2016-08-11 09:41:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8989,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:39.462735Z","gw_timestamp":2081841043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Af4wMDU5MzAxMjIyMDA1MjGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9768, '2016-08-11 09:42:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8991,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:53.83086Z","gw_timestamp":2096204803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiYwMDU2ODAxMjIyMDA1MjGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9770, '2016-08-11 09:42:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8993,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:08.19545Z","gw_timestamp":2110568251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgUwMDU4NjAxMjIyMDA1MjGxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9772, '2016-08-11 09:42:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8995,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:22.559763Z","gw_timestamp":2124931179,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU4MTAxMjIyMDA1MjGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9774, '2016-08-11 09:42:39', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":769,"f_cnt_down":1358,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:42:30.3321Z","gw_timestamp":877102908,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:41:11.560081Z","gw_timestamp":3807884764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-14,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AZkwMDg5MjAxMjI0MDA1MzEIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9776, '2016-08-11 09:42:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8998,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:44.09456Z","gw_timestamp":2146476763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU3OTAxMjIyMDA1MjGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9778, '2016-08-11 09:43:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9000,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:58.477853Z","gw_timestamp":2160839995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU3MjAxMjIyMDA1MjCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9780, '2016-08-11 09:43:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9002,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:12.841262Z","gw_timestamp":2175203123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU1OTAxMjIyMDA1MjCyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9782, '2016-08-11 09:43:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9004,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:27.191235Z","gw_timestamp":2189566883,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU2NTAxMjIyMDA1MjCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9784, '2016-08-11 09:43:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9006,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:41.547429Z","gw_timestamp":2203929811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjQwMDU2ODAxMjIyMDA1MjCvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9786, '2016-08-11 09:44:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9008,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:55.919244Z","gw_timestamp":2218293355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjcwMDUzNjAxMjIyMDA1MjCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9767, '2016-08-11 09:41:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8990,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:41:46.643311Z","gw_timestamp":2089022979,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AegwMDU0MzAxMjIyMDA1MjGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9777, '2016-08-11 09:43:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":8999,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:42:51.282116Z","gw_timestamp":2153658691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDU3MjAxMjIyMDA1MjCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9779, '2016-08-11 09:43:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9001,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:05.642819Z","gw_timestamp":2168021299,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU3OTAxMjIyMDA1MjCwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9781, '2016-08-11 09:43:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9003,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:20.005619Z","gw_timestamp":2182384955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU0MzAxMjIyMDA1MjCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9783, '2016-08-11 09:43:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9005,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:34.373867Z","gw_timestamp":2196748603,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkAwMDU4MTAxMjIyMDA1MjCzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9785, '2016-08-11 09:43:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9007,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:43:48.732244Z","gw_timestamp":2211111427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjswMDU3MDAxMjIyMDA1MjCyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9805, '2016-08-11 09:46:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9027,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:12.36288Z","gw_timestamp":2354744723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AR8wMDU4NDAxMjIzMDA1MTmxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9807, '2016-08-11 09:46:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9029,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:26.725121Z","gw_timestamp":2369107963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDYwMDAxMjIzMDA1MTmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9809, '2016-08-11 09:46:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9031,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:41.097378Z","gw_timestamp":2383471723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjAwMDU4NDAxMjIzMDA1MTmyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9811, '2016-08-11 09:46:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9032,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:48.2916Z","gw_timestamp":2390653547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjIwMDU1OTAxMjIzMDA1MTmwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9813, '2016-08-11 09:47:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9034,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:02.639379Z","gw_timestamp":2405017307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDU2MjAxMjIzMDA1MTmw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9815, '2016-08-11 09:47:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9036,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:16.997633Z","gw_timestamp":2419379923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjQwMDU1OTAxMjIzMDA1MTmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9817, '2016-08-11 09:47:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9038,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:31.357881Z","gw_timestamp":2433743675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjIwMDU4MjAxMjIzMDA1MTixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9819, '2016-08-11 09:47:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9040,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:45.738399Z","gw_timestamp":2448106387,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjQwMDU3NTAxMjIzMDA1MTiwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9788, '2016-08-11 09:44:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9010,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:10.274114Z","gw_timestamp":2232657011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkUwMDU4NjAxMjIyMDA1MjCzSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9790, '2016-08-11 09:44:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9012,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:24.657647Z","gw_timestamp":2247020555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkAwMDUzNDAxMjIyMDA1MTmxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9792, '2016-08-11 09:44:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9014,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:39.013906Z","gw_timestamp":2261383587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkEwMDUzMDAxMjIyMDA1MTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9794, '2016-08-11 09:45:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9016,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:44:53.361816Z","gw_timestamp":2275746931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDU4NDAxMjIzMDA1MjCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9796, '2016-08-11 09:45:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9018,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:07.729128Z","gw_timestamp":2290110683,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjswMDU2MTAxMjIzMDA1MTmxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9802, '2016-08-11 09:46:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9024,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:50.821002Z","gw_timestamp":2333200811,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjgwMDU0MTAxMjIzMDA1MTmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9804, '2016-08-11 09:46:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9026,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:05.182247Z","gw_timestamp":2347563523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aj8wMDU4NDAxMjIzMDA1MTmwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9806, '2016-08-11 09:46:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9028,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:19.560026Z","gw_timestamp":2361926243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiYwMDU4ODAxMjIzMDA1MTmyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9808, '2016-08-11 09:46:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9030,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:33.915736Z","gw_timestamp":2376289787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlAwMDU3MDAxMjIzMDA1MTmt6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9810, '2016-08-11 09:46:50', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":853,"f_cnt_down":1559,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:46:42.347228Z","gw_timestamp":1129118148,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BrAwMDg0MzAxMjI2MDA1MTYI8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9816, '2016-08-11 09:47:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9037,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:24.183201Z","gw_timestamp":2426561851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjMwMDU4NjAxMjIzMDA1MTiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9818, '2016-08-11 09:47:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9039,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:38.544521Z","gw_timestamp":2440925403,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeUwMDU3MDAxMjIzMDA1MTixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9820, '2016-08-11 09:48:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9041,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:52.906754Z","gw_timestamp":2455288115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDU4NjAxMjIzMDA1MTiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9822, '2016-08-11 09:48:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9043,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:07.271259Z","gw_timestamp":2469651563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AeMwMDYwMDAxMjIzMDA1MTix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9798, '2016-08-11 09:45:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9020,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:22.091375Z","gw_timestamp":2304474027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjkwMDU1OTAxMjIzMDA1MTmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9800, '2016-08-11 09:45:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9022,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:36.452973Z","gw_timestamp":2318837155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjIwMDU0NzAxMjIzMDA1MTmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9812, '2016-08-11 09:47:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9033,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:46:55.454213Z","gw_timestamp":2397835483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhEwMDU5MTAxMjIzMDA1MTmwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9814, '2016-08-11 09:47:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9035,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:47:09.815997Z","gw_timestamp":2412198923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhIwMDU5MzAxMjIzMDA1MTmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9826, '2016-08-11 09:48:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9047,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:35.99384Z","gw_timestamp":2498378243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjAwMDU4ODAxMjI0MDA1MTmxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9828, '2016-08-11 09:48:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9049,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:50.357881Z","gw_timestamp":2512742107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ai0wMDU1MzAxMjI0MDA1MTmu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9830, '2016-08-11 09:49:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9051,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:04.729117Z","gw_timestamp":2527105659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjUwMDU3OTAxMjI0MDA1MTmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9832, '2016-08-11 09:49:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9053,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:19.091505Z","gw_timestamp":2541469411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDU0ODAxMjI0MDA1MTmv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9834, '2016-08-11 09:49:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9055,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:33.446628Z","gw_timestamp":2555832547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjAwMDU5ODAxMjI0MDA1MTmyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9836, '2016-08-11 09:49:50', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":853,"f_cnt_down":1527,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:49:46.722674Z","gw_timestamp":1313493676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A7wwMDU4NTAxMjM4MDA0NjELQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9838, '2016-08-11 09:50:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9058,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:54.99563Z","gw_timestamp":2577377507,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDU5MTAxMjI0MDA1MTmxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9840, '2016-08-11 09:50:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9060,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:09.356167Z","gw_timestamp":2591740323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhgwMDU4MjAxMjI0MDA1MTmvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9852, '2016-08-11 09:51:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9073,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:49.902758Z","gw_timestamp":2692283195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU4MjAxMjI1MDA1MTmwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9854, '2016-08-11 09:52:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9076,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:04.264989Z","gw_timestamp":2706646123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYyNDAxMjI1MDA1MTmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9803, '2016-08-11 09:46:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9025,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:45:58.005387Z","gw_timestamp":2340382531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiswMDU4MjAxMjIzMDA1MTmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9823, '2016-08-11 09:48:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9044,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:14.456616Z","gw_timestamp":2476832763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiowMDU4MjAxMjIzMDA1MTiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9825, '2016-08-11 09:48:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9046,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:28.820005Z","gw_timestamp":2491196419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiEwMDU3NzAxMjI0MDA1MTmwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9827, '2016-08-11 09:48:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9048,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:43.183186Z","gw_timestamp":2505560171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiwwMDU5NjAxMjI0MDA1MTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9829, '2016-08-11 09:49:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9050,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:57.547132Z","gw_timestamp":2519923827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AikwMDU0NDAxMjI0MDA1MTmwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9831, '2016-08-11 09:49:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9052,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:11.907745Z","gw_timestamp":2534287483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjQwMDU3MDAxMjI0MDA1MTmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9833, '2016-08-11 09:49:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9054,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:26.29129Z","gw_timestamp":2548651243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjEwMDYwMDAxMjI0MDA1MTmvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9835, '2016-08-11 09:49:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9056,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:40.631258Z","gw_timestamp":2563013851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ai4wMDU4MjAxMjI0MDA1MTmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9837, '2016-08-11 09:49:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9057,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:49:47.823511Z","gw_timestamp":2570195787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AhowMDU0NjAxMjI0MDA1MTmwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9839, '2016-08-11 09:50:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9059,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:02.205208Z","gw_timestamp":2584558603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AdAwMDU1OTAxMjI0MDA1MTmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9841, '2016-08-11 09:50:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9061,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:16.538517Z","gw_timestamp":2598922051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AZIwMDU0ODAxMjI0MDA1MTmvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9843, '2016-08-11 09:50:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9063,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:30.905889Z","gw_timestamp":2613284867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATkwMDU2MjAxMjI0MDA1MjCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9845, '2016-08-11 09:51:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9065,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:52.449649Z","gw_timestamp":2634829419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ATMwMDU3NTAxMjI0MDA1MjCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9847, '2016-08-11 09:51:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9068,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:06.808881Z","gw_timestamp":2649193067,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2ODAxMjI0MDA1MjCw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9821, '2016-08-11 09:48:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9042,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:00.087381Z","gw_timestamp":2462469947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjAwMDYwMDAxMjIzMDA1MTmwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9849, '2016-08-11 09:51:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9070,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:21.192405Z","gw_timestamp":2663556619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU3MzAxMjI0MDA1MTmwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9851, '2016-08-11 09:51:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9072,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:35.543652Z","gw_timestamp":2677919539,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU3ODAxMjI1MDA1MTmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9853, '2016-08-11 09:52:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9075,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:57.085393Z","gw_timestamp":2699465027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU3ODAxMjI1MDA1MTmwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9857, '2016-08-11 09:52:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9079,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:25.804902Z","gw_timestamp":2728190459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU1MzAxMjI1MDA1MTivSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9859, '2016-08-11 09:52:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9081,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:40.175063Z","gw_timestamp":2742554115,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDYwMzAxMjI1MDA1MTivGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9861, '2016-08-11 09:53:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9083,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:54.539391Z","gw_timestamp":2756916827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU4MDAxMjI1MDA1MTexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9863, '2016-08-11 09:53:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9085,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:08.892515Z","gw_timestamp":2771279547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU3MzAxMjI1MDA1MTewew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9865, '2016-08-11 09:53:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9086,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:16.073387Z","gw_timestamp":2778461371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU3NjAxMjI1MDA1MTew2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9867, '2016-08-11 09:53:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9088,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:30.447643Z","gw_timestamp":2792825027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AfUwMDU4OTAxMjI1MDA1MTeuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9869, '2016-08-11 09:53:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9089,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:37.63948Z","gw_timestamp":2800006851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU3ODAxMjI1MDA1MTewCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9871, '2016-08-11 09:54:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9091,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:51.981522Z","gw_timestamp":2814370611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU2NDAxMjI1MDA1MTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9873, '2016-08-11 09:54:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9093,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:06.349773Z","gw_timestamp":2828733323,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYxNTAxMjI1MDA1MTexuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9875, '2016-08-11 09:54:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9095,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:20.716026Z","gw_timestamp":2843096987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU4MDAxMjI1MDA1MTevOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9824, '2016-08-11 09:48:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9045,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:48:21.637254Z","gw_timestamp":2484014483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AikwMDU1NTAxMjIzMDA1MTiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9842, '2016-08-11 09:50:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9062,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:23.722137Z","gw_timestamp":2606103147,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"ASkwMDU3MzAxMjI0MDA1MTmxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9844, '2016-08-11 09:50:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9064,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:38.089255Z","gw_timestamp":2620466587,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AYowMDU5MzAxMjI0MDA1MjCvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9846, '2016-08-11 09:51:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9067,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:50:59.63226Z","gw_timestamp":2642011243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU5ODAxMjI0MDA1MjCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9848, '2016-08-11 09:51:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9069,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:13.998507Z","gw_timestamp":2656374995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU5ODAxMjI0MDA1MjCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9850, '2016-08-11 09:51:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9071,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:51:28.359765Z","gw_timestamp":2670737611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2MjAxMjI0MDA1MTmu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9858, '2016-08-11 09:52:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9080,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:32.986785Z","gw_timestamp":2735372283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU2MDAxMjI1MDA1MTiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9860, '2016-08-11 09:52:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9082,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:47.355754Z","gw_timestamp":2749735523,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU4NzAxMjI1MDA1MTexKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9862, '2016-08-11 09:53:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9084,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:01.740267Z","gw_timestamp":2764097923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak4wMDU4MDAxMjI1MDA1MTev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9864, '2016-08-11 09:53:19', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1332,"f_cnt_down":2138,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:53:10.179881Z","gw_timestamp":1516950972,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkQwMTA1MjAxMjI2MDA0OTgHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9866, '2016-08-11 09:53:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9087,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:23.255998Z","gw_timestamp":2785643099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDYxMDAxMjI1MDA1MTeu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9920, '2016-08-11 09:59:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9140,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:43.894662Z","gw_timestamp":3166275051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDYxMzAxMjI2MDA1MTexmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9926, '2016-08-11 10:00:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9146,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:26.974797Z","gw_timestamp":3209364251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU5MjAxMjI2MDA1MTevag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9928, '2016-08-11 10:00:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9148,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:41.332663Z","gw_timestamp":3223727483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkUwMDU4OTAxMjI2MDA1MTay+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9855, '2016-08-11 09:52:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9077,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:11.460034Z","gw_timestamp":2713827739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU0NDAxMjI1MDA1MTmvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9879, '2016-08-11 09:54:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9099,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:49.439039Z","gw_timestamp":2871824395,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDU3MzAxMjI1MDA1MTev+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9881, '2016-08-11 09:55:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9101,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:03.809891Z","gw_timestamp":2886188155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU4OTAxMjI1MDA1MTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9883, '2016-08-11 09:55:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9103,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:18.166163Z","gw_timestamp":2900551811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDYxNTAxMjI1MDA1MTexSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9885, '2016-08-11 09:55:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9105,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:32.526401Z","gw_timestamp":2914915051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU4MDAxMjI1MDA1MTeymw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9887, '2016-08-11 09:55:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9107,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:46.891635Z","gw_timestamp":2929278179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU0ODAxMjI1MDA1MTeueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9889, '2016-08-11 09:56:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9109,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:01.257304Z","gw_timestamp":2943641939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDYxNzAxMjI1MDA1MTev2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9891, '2016-08-11 09:56:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9111,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:15.650417Z","gw_timestamp":2958005075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU5NDAxMjI1MDA1MTeu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9893, '2016-08-11 09:56:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9113,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:29.993539Z","gw_timestamp":2972368315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU2OTAxMjI1MDA1MTexaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9895, '2016-08-11 09:56:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9115,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:44.3454Z","gw_timestamp":2986731867,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDU3NjAxMjI1MDA1MTewaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9897, '2016-08-11 09:57:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9117,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:58.716021Z","gw_timestamp":3001095619,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU0ODAxMjI1MDA1MTewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9899, '2016-08-11 09:57:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9119,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:13.067269Z","gw_timestamp":3015459171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDYwODAxMjI1MDA1MTezCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9901, '2016-08-11 09:57:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9121,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:27.442525Z","gw_timestamp":3029822827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDYwODAxMjI1MDA1MTezKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9903, '2016-08-11 09:57:44', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":770,"f_cnt_down":1359,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:57:41.118265Z","gw_timestamp":1787889476,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AZ8wMDg0ODAxMjI2MDA1MjgQgQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9856, '2016-08-11 09:52:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9078,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:52:18.629437Z","gw_timestamp":2721009459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU0NDAxMjI1MDA1MTizuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9868, '2016-08-11 09:53:39', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1333,"f_cnt_down":2139,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T09:53:34.861709Z","gw_timestamp":1541632812,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkQwMTA1MjAxMjI2MDA0OTgHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9870, '2016-08-11 09:53:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9090,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:44.806898Z","gw_timestamp":2807188787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU1NzAxMjI1MDA1MTewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9872, '2016-08-11 09:54:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9092,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:53:59.162138Z","gw_timestamp":2821552339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDYxMDAxMjI1MDA1MTevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9874, '2016-08-11 09:54:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9094,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:13.533858Z","gw_timestamp":2835915059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AiswMDU1MzAxMjI1MDA1MTevSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9876, '2016-08-11 09:54:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9096,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:27.898631Z","gw_timestamp":2850278915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak4wMDYxMjAxMjI1MDA1MTev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9878, '2016-08-11 09:54:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9098,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:42.2569Z","gw_timestamp":2864642571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU3NjAxMjI1MDA1MTevyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9880, '2016-08-11 09:55:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9100,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:56.625275Z","gw_timestamp":2879006123,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU5MjAxMjI1MDA1MTevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9882, '2016-08-11 09:55:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9102,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:10.988646Z","gw_timestamp":2893369883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU5NDAxMjI1MDA1MTewSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9884, '2016-08-11 09:55:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9104,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:25.370041Z","gw_timestamp":2907733635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU2MjAxMjI1MDA1MTex6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9886, '2016-08-11 09:55:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9106,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:39.712013Z","gw_timestamp":2922096355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYwMTAxMjI1MDA1MTeyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9888, '2016-08-11 09:56:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9108,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:55:54.078256Z","gw_timestamp":2936460011,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU3NjAxMjI1MDA1MTeteg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9890, '2016-08-11 09:56:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9110,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:08.435517Z","gw_timestamp":2950823771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU4NzAxMjI1MDA1MTeyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9892, '2016-08-11 09:56:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9112,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:22.806898Z","gw_timestamp":2965186379,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU4MDAxMjI1MDA1MTevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9877, '2016-08-11 09:54:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9097,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:54:35.075524Z","gw_timestamp":2857460747,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU4MjAxMjI1MDA1MTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9907, '2016-08-11 09:58:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9126,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:03.349649Z","gw_timestamp":3065730299,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDYzMTAxMjI1MDA1MTevug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9909, '2016-08-11 09:58:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9128,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:17.71104Z","gw_timestamp":3080093955,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU4NTAxMjI1MDA1MTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9911, '2016-08-11 09:58:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9130,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:32.076274Z","gw_timestamp":3094457715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2OTAxMjI1MDA1MTew+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9913, '2016-08-11 09:59:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9132,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:46.442997Z","gw_timestamp":3108821371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU3ODAxMjI1MDA1MTeu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9915, '2016-08-11 09:59:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9135,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:07.980408Z","gw_timestamp":3130365915,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU3ODAxMjI1MDA1MTex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9927, '2016-08-11 10:00:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9147,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:34.164238Z","gw_timestamp":3216546179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDYxMTAxMjI2MDA1MTeyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9935, '2016-08-11 10:01:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9155,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:31.611163Z","gw_timestamp":3273999027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDUzODAxMjI2MDA1MTawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9937, '2016-08-11 10:01:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9158,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:38.792786Z","gw_timestamp":3281180123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjwwMDU2NTAxMjI2MDA1MTaxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9939, '2016-08-11 10:02:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9157,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:53.171304Z","gw_timestamp":3295543467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU3MTAxMjI2MDA1MTaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9945, '2016-08-11 10:02:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9164,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:36.238789Z","gw_timestamp":3338633499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU5NzAxMjI2MDA1MTazWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9947, '2016-08-11 10:02:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9166,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:50.612166Z","gw_timestamp":3352997155,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Aj8wMDU4NTAxMjI2MDA1MTWwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9949, '2016-08-11 10:03:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9168,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:04.977694Z","gw_timestamp":3367360915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU5NzAxMjI2MDA1MTWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9951, '2016-08-11 10:03:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9170,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:19.340919Z","gw_timestamp":3381724467,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDYxMTAxMjI2MDA1MTWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9894, '2016-08-11 09:56:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9114,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:37.160153Z","gw_timestamp":2979550139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDY1MzAxMjI1MDA1MTexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9896, '2016-08-11 09:57:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9116,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:56:51.523396Z","gw_timestamp":2993913691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDYzMTAxMjI1MDA1MTevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9898, '2016-08-11 09:57:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9118,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:05.919929Z","gw_timestamp":3008277555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDYxMDAxMjI1MDA1MTew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9900, '2016-08-11 09:57:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9120,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:20.263114Z","gw_timestamp":3022641107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDYwNDAxMjI1MDA1MTewKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9902, '2016-08-11 09:57:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9122,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:34.613158Z","gw_timestamp":3037003923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU5NzAxMjI1MDA1MTevig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9904, '2016-08-11 09:57:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9123,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:41.803727Z","gw_timestamp":3044185755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDU0NDAxMjI1MDA1MTexCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9906, '2016-08-11 09:58:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9125,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:56.168293Z","gw_timestamp":3058548995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU4NTAxMjI1MDA1MTex2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9908, '2016-08-11 09:58:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9127,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:10.528355Z","gw_timestamp":3072911915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU4NTAxMjI1MDA1MTewiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9910, '2016-08-11 09:58:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9129,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:24.895634Z","gw_timestamp":3087275891,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1MTAxMjI1MDA1MTewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9912, '2016-08-11 09:58:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9131,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:58:39.255147Z","gw_timestamp":3101639539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDYxMzAxMjI1MDA1MTewmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9914, '2016-08-11 09:59:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9133,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:00.800913Z","gw_timestamp":3123184083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU4MzAxMjI1MDA1MTewuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9916, '2016-08-11 09:59:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9136,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:15.166283Z","gw_timestamp":3137547739,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDYxMzAxMjI2MDA1MTevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9918, '2016-08-11 09:59:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9138,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:29.524282Z","gw_timestamp":3151911499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDYwMTAxMjI1MDA1MTau+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9922, '2016-08-11 10:00:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9142,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:58.246905Z","gw_timestamp":3180637771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDYwNjAxMjI2MDA1MTe4Ow==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9905, '2016-08-11 09:57:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9124,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:57:48.981393Z","gw_timestamp":3051367587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDY0MzAxMjI1MDA1MTex+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9917, '2016-08-11 09:59:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9137,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:22.337034Z","gw_timestamp":3144729675,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU3ODAxMjI2MDA1MTaw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9919, '2016-08-11 09:59:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9139,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:36.73127Z","gw_timestamp":3159093227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkIwMDU4NzAxMjI2MDA1MTaxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9921, '2016-08-11 09:59:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9141,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T09:59:51.088548Z","gw_timestamp":3173456043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDYwNjAxMjI2MDA1MTev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9923, '2016-08-11 10:00:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9143,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:05.436522Z","gw_timestamp":3187819595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDY0MTAxMjI2MDA1MTevqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9925, '2016-08-11 10:00:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9145,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:19.796792Z","gw_timestamp":3202182315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak8wMDU4NzAxMjI2MDA1MTexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9929, '2016-08-11 10:01:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9149,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:48.52328Z","gw_timestamp":3230908691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDYyNTAxMjI2MDA1MTawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9931, '2016-08-11 10:01:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9151,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:02.891799Z","gw_timestamp":3245272555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkIwMDU5NDAxMjI2MDA1MTaw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9933, '2016-08-11 10:01:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9153,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:17.248913Z","gw_timestamp":3259636107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU3NjAxMjI2MDA1MTawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9941, '2016-08-11 10:02:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9160,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:07.514289Z","gw_timestamp":3309907123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDU2MDAxMjI2MDA1MTayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9943, '2016-08-11 10:02:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9162,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:21.880544Z","gw_timestamp":3324269947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDU5NDAxMjI2MDA1MTavag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9955, '2016-08-11 10:03:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9174,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:48.061171Z","gw_timestamp":3410450107,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU5NDAxMjI3MDA1MTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9957, '2016-08-11 10:04:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9176,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:02.42842Z","gw_timestamp":3424813035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDYwNDAxMjI3MDA1MTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9959, '2016-08-11 10:04:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9178,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:16.78767Z","gw_timestamp":3439175755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU5NzAxMjI3MDA1MTWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9924, '2016-08-11 10:00:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9144,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:12.630509Z","gw_timestamp":3195000587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU4MDAxMjI2MDA1MTexOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9950, '2016-08-11 10:03:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9169,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:12.152047Z","gw_timestamp":3374542851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU5NDAxMjI2MDA1MTWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9952, '2016-08-11 10:03:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9171,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:26.519294Z","gw_timestamp":3388906395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDYzNzAxMjI2MDA1MTWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9954, '2016-08-11 10:03:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9173,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:40.880532Z","gw_timestamp":3403269115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU4MzAxMjI3MDA1MTWuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9956, '2016-08-11 10:04:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9175,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:55.246796Z","gw_timestamp":3417631931,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDU3ODAxMjI3MDA1MTWuug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9958, '2016-08-11 10:04:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9177,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:09.606036Z","gw_timestamp":3431994555,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU2NzAxMjI3MDA1MTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9960, '2016-08-11 10:04:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9179,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:23.967114Z","gw_timestamp":3446357267,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU5NzAxMjI3MDA1MTWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9962, '2016-08-11 10:04:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9181,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:38.33471Z","gw_timestamp":3460719987,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU3MjAxMjI3MDA1MTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9964, '2016-08-11 10:04:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9183,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:52.694913Z","gw_timestamp":3475083643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU2NzAxMjI3MDA1MTWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9966, '2016-08-11 10:05:02', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":855,"f_cnt_down":1529,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:04:57.57484Z","gw_timestamp":2224346244,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BhowMDYyNDAxMjM4MDA0NjUKkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9978, '2016-08-11 10:06:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9195,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:18.86755Z","gw_timestamp":3561264851,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU5OTAxMjI3MDA1MTOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9980, '2016-08-11 10:06:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9197,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:33.241797Z","gw_timestamp":3575628611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1NDAxMjI3MDA1MTOvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9982, '2016-08-11 10:06:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9199,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:47.60604Z","gw_timestamp":3589991739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU3OTAxMjI3MDA1MTOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9984, '2016-08-11 10:07:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9201,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:09.148176Z","gw_timestamp":3611535771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU5OTAxMjI3MDA1MTOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9930, '2016-08-11 10:01:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9150,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:00:55.702909Z","gw_timestamp":3238090619,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Ak0wMDU4OTAxMjI2MDA1MTawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9932, '2016-08-11 10:01:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9152,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:10.073162Z","gw_timestamp":3252454379,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkswMDU4MDAxMjI2MDA1MTawew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9934, '2016-08-11 10:01:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9154,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:24.43154Z","gw_timestamp":3266817619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkIwMDYwODAxMjI2MDA1MTaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9936, '2016-08-11 10:01:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9156,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:01:45.97042Z","gw_timestamp":3288361643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2NzAxMjI2MDA1MTawyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9938, '2016-08-11 10:01:55', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":854,"f_cnt_down":1560,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:01:53.126579Z","gw_timestamp":2039897900,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BaQwMDg4MzAxMjI4MDA1MTYG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9940, '2016-08-11 10:02:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9159,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:00.332657Z","gw_timestamp":3302725291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU4NTAxMjI2MDA1MTazOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9942, '2016-08-11 10:02:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9161,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:14.69592Z","gw_timestamp":3317088947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU0OTAxMjI2MDA1MTa0Gw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9944, '2016-08-11 10:02:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9163,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:29.079566Z","gw_timestamp":3331451675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU4MDAxMjI2MDA1MTawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9946, '2016-08-11 10:02:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9165,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:43.450687Z","gw_timestamp":3345815427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDU4MzAxMjI2MDA1MTaxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9948, '2016-08-11 10:03:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9167,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:02:57.7883Z","gw_timestamp":3360179083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU2NTAxMjI2MDA1MTWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9969, '2016-08-11 10:05:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9186,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:14.242146Z","gw_timestamp":3496628291,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU1ODAxMjI3MDA1MTWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9971, '2016-08-11 10:05:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9188,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:28.599048Z","gw_timestamp":3510991947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDU1ODAxMjI3MDA1MTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9973, '2016-08-11 10:05:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9190,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:42.964296Z","gw_timestamp":3525355499,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU4ODAxMjI3MDA1MTSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9975, '2016-08-11 10:06:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9192,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:57.325813Z","gw_timestamp":3539719363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU4MTAxMjI3MDA1MTSxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9953, '2016-08-11 10:03:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9172,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:03:33.716294Z","gw_timestamp":3396087707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU4NTAxMjI2MDA1MTWxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9967, '2016-08-11 10:05:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9184,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:59.915152Z","gw_timestamp":3482265259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU5NTAxMjI3MDA1MTWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9979, '2016-08-11 10:06:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9196,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:26.06118Z","gw_timestamp":3568446675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU4ODAxMjI3MDA1MTOumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9981, '2016-08-11 10:06:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9198,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:40.414502Z","gw_timestamp":3582810331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU4ODAxMjI3MDA1MTOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9983, '2016-08-11 10:07:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9200,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:54.780233Z","gw_timestamp":3597172947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU2NTAxMjI3MDA1MTOvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9985, '2016-08-11 10:07:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9203,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:16.329552Z","gw_timestamp":3618717595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU2NTAxMjI3MDA1MTOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9987, '2016-08-11 10:07:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9205,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:30.699075Z","gw_timestamp":3633081355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU4NjAxMjI3MDA1MTOu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9989, '2016-08-11 10:07:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9207,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:45.056568Z","gw_timestamp":3647444915,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDYwNDAxMjI3MDA1MTO0Cw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9991, '2016-08-11 10:08:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9209,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:59.418427Z","gw_timestamp":3661808771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU3NDAxMjI4MDA1MTKxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9993, '2016-08-11 10:08:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9211,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:13.777684Z","gw_timestamp":3676172427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUyNDAxMjI4MDA1MTKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9995, '2016-08-11 10:08:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9213,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:28.146933Z","gw_timestamp":3690535875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU2NzAxMjI4MDA1MTKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9997, '2016-08-11 10:08:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9215,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:42.50218Z","gw_timestamp":3704898595,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU5NTAxMjI4MDA1MTKyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9999, '2016-08-11 10:08:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9216,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:49.687803Z","gw_timestamp":3712079691,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU0MzAxMjI4MDA1MTKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10001, '2016-08-11 10:09:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9218,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:04.05706Z","gw_timestamp":3726443243,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU1NDAxMjI4MDA1MTKwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9961, '2016-08-11 10:04:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9180,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:31.154047Z","gw_timestamp":3453538995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU5MjAxMjI3MDA1MTWxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9963, '2016-08-11 10:04:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9182,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:04:45.507295Z","gw_timestamp":3467901819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDYwNDAxMjI3MDA1MTWwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9965, '2016-08-11 10:05:02', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":854,"f_cnt_down":1528,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:03:38.802842Z","gw_timestamp":860160228,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BhowMDYyNDAxMjM4MDA0NjUKkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9968, '2016-08-11 10:05:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9185,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:07.057172Z","gw_timestamp":3489446363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU3MjAxMjI3MDA1MTWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9970, '2016-08-11 10:05:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9187,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:21.419414Z","gw_timestamp":3503810019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUyOTAxMjI3MDA1MTWvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9972, '2016-08-11 10:05:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9189,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:35.789663Z","gw_timestamp":3518173771,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU4MTAxMjI3MDA1MTSvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9974, '2016-08-11 10:05:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9191,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:05:50.153138Z","gw_timestamp":3532537427,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU4MzAxMjI3MDA1MTSvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9976, '2016-08-11 10:06:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9193,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:04.518432Z","gw_timestamp":3546901083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU2NzAxMjI3MDA1MTOwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9988, '2016-08-11 10:07:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9206,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:37.873421Z","gw_timestamp":3640263187,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU3MDAxMjI3MDA1MTOyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9996, '2016-08-11 10:08:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9214,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:35.329996Z","gw_timestamp":3697716875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDYwOTAxMjI4MDA1MTKyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9998, '2016-08-11 10:08:51', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1334,"f_cnt_down":2140,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:08:45.688996Z","gw_timestamp":2452460500,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":13.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:07:26.917002Z","gw_timestamp":1088274388,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-116,"snr":-10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BWUwMTA4MDAxMjI3MDA1MDIKgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10000, '2016-08-11 10:09:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9217,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:56.863422Z","gw_timestamp":3719261419,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU2NTAxMjI4MDA1MTKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10002, '2016-08-11 10:09:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9219,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:11.242895Z","gw_timestamp":3733625179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlAwMDY0MjAxMjI4MDA1MTKvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9977, '2016-08-11 10:06:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9194,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:06:11.689925Z","gw_timestamp":3554083019,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU3MjAxMjI3MDA1MTOwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10013, '2016-08-11 10:10:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9230,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:30.234699Z","gw_timestamp":3812623419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU4NjAxMjI4MDA1MTKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10015, '2016-08-11 10:10:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9232,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:44.603419Z","gw_timestamp":3826986339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU4ODAxMjI4MDA1MTKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10027, '2016-08-11 10:12:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9244,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:10.770694Z","gw_timestamp":3913167443,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDYzMDAxMjI4MDA1MTOwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10037, '2016-08-11 10:13:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9254,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:22.587939Z","gw_timestamp":3984985003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU3MDAxMjI5MDA1MTOxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10039, '2016-08-11 10:13:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9256,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:36.99046Z","gw_timestamp":3999347819,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjgwMDYwNTAxMjI5MDA1MTOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10041, '2016-08-11 10:14:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9258,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:51.327908Z","gw_timestamp":4013711163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDYwNTAxMjI5MDA1MTOzKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10043, '2016-08-11 10:14:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9260,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:05.681692Z","gw_timestamp":4028074099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU4NjAxMjI5MDA1MTOx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10047, '2016-08-11 10:14:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9264,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:34.407574Z","gw_timestamp":4056800883,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU4MzAxMjI5MDA1MTOuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10049, '2016-08-11 10:14:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9266,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:48.765573Z","gw_timestamp":4071163499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDU3OTAxMjI5MDA1MTSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10051, '2016-08-11 10:15:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9268,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:03.130639Z","gw_timestamp":4085526843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDU5MDAxMjI5MDA1MTOwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10059, '2016-08-11 10:16:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9276,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:00.586943Z","gw_timestamp":4142980635,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDU0ODAxMjI5MDA1MTSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10061, '2016-08-11 10:16:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9278,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:14.944193Z","gw_timestamp":4157344195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDU5NTAxMjI5MDA1MTWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10063, '2016-08-11 10:16:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9280,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:29.310439Z","gw_timestamp":4171706387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDU4ODAxMjI5MDA1MTWxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9986, '2016-08-11 10:07:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9204,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:23.503388Z","gw_timestamp":3625899531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDYwMjAxMjI3MDA1MTOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9990, '2016-08-11 10:08:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9208,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:07:52.235882Z","gw_timestamp":3654626843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDYyNTAxMjI4MDA1MTKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9992, '2016-08-11 10:08:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9210,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:06.592057Z","gw_timestamp":3668990603,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU4MTAxMjI4MDA1MTKvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (9994, '2016-08-11 10:08:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9212,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:08:20.970615Z","gw_timestamp":3683354259,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDYwOTAxMjI4MDA1MTKwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10004, '2016-08-11 10:09:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9221,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:25.590057Z","gw_timestamp":3747988835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU2NTAxMjI4MDA1MTKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10008, '2016-08-11 10:09:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9225,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:54.317558Z","gw_timestamp":3776715315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYwMjAxMjI4MDA1MTKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10010, '2016-08-11 10:10:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9227,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:08.679811Z","gw_timestamp":3791078867,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDYyNjAxMjI4MDA1MTKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10012, '2016-08-11 10:10:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9229,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:23.065644Z","gw_timestamp":3805442419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDY0NjAxMjI4MDA1MTKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10032, '2016-08-11 10:12:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9249,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:46.678815Z","gw_timestamp":3949076691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDYxOTAxMjI5MDA1MTKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10034, '2016-08-11 10:13:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9250,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:53.865439Z","gw_timestamp":3956257995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU4ODAxMjI5MDA1MTKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10036, '2016-08-11 10:13:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9252,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:15.42171Z","gw_timestamp":3977803171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU4ODAxMjI5MDA1MTOt6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10038, '2016-08-11 10:13:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9255,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:29.780569Z","gw_timestamp":3992166723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkowMDU4NjAxMjI5MDA1MTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10040, '2016-08-11 10:13:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9257,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:44.134945Z","gw_timestamp":4006529547,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU5ODAxMjI5MDA1MTOx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10042, '2016-08-11 10:14:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9259,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:58.503074Z","gw_timestamp":4020892163,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDYwNTAxMjI5MDA1MTOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10003, '2016-08-11 10:09:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9220,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:18.420428Z","gw_timestamp":3740807107,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU3NzAxMjI4MDA1MTKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10005, '2016-08-11 10:09:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9222,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:32.782691Z","gw_timestamp":3755170763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU4NjAxMjI4MDA1MTKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10007, '2016-08-11 10:09:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9224,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:47.152525Z","gw_timestamp":3769533387,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU4NjAxMjI4MDA1MTKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10009, '2016-08-11 10:10:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9226,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:01.537437Z","gw_timestamp":3783897147,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2NTAxMjI4MDA1MTKv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10011, '2016-08-11 10:10:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9228,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:15.866431Z","gw_timestamp":3798260795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDYzMjAxMjI4MDA1MTKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10017, '2016-08-11 10:11:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9234,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:58.958315Z","gw_timestamp":3841349995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":5.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU5ODAxMjI4MDA1MTKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10019, '2016-08-11 10:11:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9236,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:13.323779Z","gw_timestamp":3855712611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkkwMDYwOTAxMjI4MDA1MTKyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10021, '2016-08-11 10:11:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9238,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:27.688812Z","gw_timestamp":3870076371,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDU5MzAxMjI4MDA1MTKyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10023, '2016-08-11 10:11:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9240,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:42.04606Z","gw_timestamp":3884440027,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AkkwMDYyODAxMjI4MDA1MTKxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10025, '2016-08-11 10:12:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9242,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:56.415315Z","gw_timestamp":3898803787,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU3OTAxMjI4MDA1MTOyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10029, '2016-08-11 10:12:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9246,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:25.137809Z","gw_timestamp":3927531211,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYwMjAxMjI4MDA1MTKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10031, '2016-08-11 10:12:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9248,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:39.522424Z","gw_timestamp":3941894859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU2NTAxMjI5MDA1MTKx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10033, '2016-08-11 10:12:55', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":771,"f_cnt_down":1360,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:12:51.900784Z","gw_timestamp":2698672396,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AgswMDc4OTAxMjI1MDA1MDAHwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10035, '2016-08-11 10:13:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9251,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:13:01.058341Z","gw_timestamp":3963439307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDYxNDAxMjI5MDA1MTOuGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10006, '2016-08-11 10:09:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9223,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:09:39.958304Z","gw_timestamp":3762352179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU4MzAxMjI4MDA1MTKzqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10014, '2016-08-11 10:10:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9231,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:37.411248Z","gw_timestamp":3819804403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-74,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDYwNzAxMjI4MDA1MTKxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10016, '2016-08-11 10:11:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9233,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:10:51.775431Z","gw_timestamp":3834168171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU5MDAxMjI4MDA1MTKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10018, '2016-08-11 10:11:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9235,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:06.139938Z","gw_timestamp":3848531515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYxNjAxMjI4MDA1MTKv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10020, '2016-08-11 10:11:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9237,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:20.507187Z","gw_timestamp":3862894435,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDYxNDAxMjI4MDA1MTKvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10022, '2016-08-11 10:11:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9239,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:34.873435Z","gw_timestamp":3877258091,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU5MDAxMjI4MDA1MTKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10024, '2016-08-11 10:11:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9241,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:11:49.223808Z","gw_timestamp":3891621963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDYzNzAxMjI4MDA1MTKwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10026, '2016-08-11 10:12:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9243,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:03.60517Z","gw_timestamp":3905985611,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU5ODAxMjI4MDA1MTOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10028, '2016-08-11 10:12:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9245,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:17.957454Z","gw_timestamp":3920349379,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AdkwMDYxNjAxMjI4MDA1MTOuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10030, '2016-08-11 10:12:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9247,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:12:32.323438Z","gw_timestamp":3934712931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDYwMjAxMjI5MDA1MTKxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10044, '2016-08-11 10:14:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9261,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:12.857314Z","gw_timestamp":4035255819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU2NzAxMjI5MDA1MTOvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10046, '2016-08-11 10:14:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9263,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:27.222685Z","gw_timestamp":4049619579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AicwMDYxNDAxMjI5MDA1MTOwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10048, '2016-08-11 10:14:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9265,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:41.596714Z","gw_timestamp":4063982299,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDU3OTAxMjI5MDA1MTSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10050, '2016-08-11 10:15:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9267,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:55.947317Z","gw_timestamp":4078345019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDU5MDAxMjI5MDA1MTSwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10045, '2016-08-11 10:14:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9262,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:14:20.045052Z","gw_timestamp":4042437747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU4ODAxMjI5MDA1MTOvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10053, '2016-08-11 10:15:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9270,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:17.500449Z","gw_timestamp":4099890499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDYwMDAxMjI5MDA1MTOvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10055, '2016-08-11 10:15:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9272,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:31.862315Z","gw_timestamp":4114253843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDYwMDAxMjI5MDA1MTOyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10057, '2016-08-11 10:15:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9274,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:46.227566Z","gw_timestamp":4128616875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDU1NTAxMjI5MDA1MTOyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10067, '2016-08-11 10:17:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9284,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:58.04557Z","gw_timestamp":4200432347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU4ODAxMjI5MDA1MTWv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10069, '2016-08-11 10:17:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9285,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:05.216571Z","gw_timestamp":4207614275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDU3OTAxMjI5MDA1MTWuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10071, '2016-08-11 10:17:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9288,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:26.756443Z","gw_timestamp":4229159451,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDY0NzAxMjI5MDA1MTWyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10077, '2016-08-11 10:18:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9294,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:09.853326Z","gw_timestamp":4272249907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU5NTAxMjI5MDA1MTavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10079, '2016-08-11 10:18:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9296,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:24.234658Z","gw_timestamp":4286612827,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU2ODAxMjI5MDA1MTWyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10081, '2016-08-11 10:18:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9298,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:38.575833Z","gw_timestamp":6008667,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU4ODAxMjI5MDA1MTWyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10083, '2016-08-11 10:19:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9300,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:52.940323Z","gw_timestamp":20371699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU2NjAxMjMwMDA1MTawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10087, '2016-08-11 10:19:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9304,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:21.706085Z","gw_timestamp":49099219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU4ODAxMjMwMDA1MTaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10089, '2016-08-11 10:19:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9306,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:36.030957Z","gw_timestamp":63462251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU3OTAxMjMwMDA1MTayiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10091, '2016-08-11 10:19:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9308,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:50.397955Z","gw_timestamp":77825491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU0NjAxMjMwMDA1MTaxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10052, '2016-08-11 10:15:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9269,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:10.317438Z","gw_timestamp":4092708675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU4NjAxMjI5MDA1MTOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10056, '2016-08-11 10:15:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9273,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:39.044929Z","gw_timestamp":4121434947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU5NTAxMjI5MDA1MTOvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10058, '2016-08-11 10:16:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9275,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:53.407463Z","gw_timestamp":4135798811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU3MjAxMjI5MDA1MTSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10060, '2016-08-11 10:16:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9277,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:07.771763Z","gw_timestamp":4150162467,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU5ODAxMjI5MDA1MTSu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10062, '2016-08-11 10:16:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9279,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:22.123817Z","gw_timestamp":4164525179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU3NTAxMjI5MDA1MTWwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10064, '2016-08-11 10:16:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9281,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:36.499079Z","gw_timestamp":4178887907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AgYwMDUxNjAxMjI5MDA1MTWxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10066, '2016-08-11 10:17:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9283,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:50.859334Z","gw_timestamp":4193250411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDU5NTAxMjI5MDA1MTWyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10072, '2016-08-11 10:17:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9289,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:33.955406Z","gw_timestamp":4236340659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDYwMDAxMjI5MDA1MTaw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10082, '2016-08-11 10:18:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9299,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:45.755446Z","gw_timestamp":13189771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU1NzAxMjI5MDA1MTavqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10084, '2016-08-11 10:19:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9301,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:00.127831Z","gw_timestamp":27553531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU1MzAxMjMwMDA1MTaxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10086, '2016-08-11 10:19:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9303,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:14.493086Z","gw_timestamp":41917291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU5MDAxMjI5MDA1MTawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10088, '2016-08-11 10:19:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9305,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:28.849335Z","gw_timestamp":56280947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU0MzAxMjMwMDA1MTawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10090, '2016-08-11 10:19:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9307,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:43.207835Z","gw_timestamp":70643667,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AdowMDU3NTAxMjMwMDA1MTawmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10092, '2016-08-11 10:20:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9309,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:57.605703Z","gw_timestamp":85007323,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU2NjAxMjMwMDA1MTawWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10054, '2016-08-11 10:15:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9271,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:15:24.67833Z","gw_timestamp":4107072435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDYyNjAxMjI5MDA1MTOv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10068, '2016-08-11 10:17:08', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":855,"f_cnt_down":1561,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:17:03.923275Z","gw_timestamp":2950694996,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:45.151281Z","gw_timestamp":1586508668,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bj4wMDg3NDAxMjI3MDA0OTEJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10070, '2016-08-11 10:17:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9286,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:19.580828Z","gw_timestamp":4221977835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDYwMDAxMjI5MDA1MTWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10074, '2016-08-11 10:17:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9291,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:48.309112Z","gw_timestamp":4250704411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU5ODAxMjI5MDA1MTavyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10076, '2016-08-11 10:18:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9293,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:02.686706Z","gw_timestamp":4265067963,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU2ODAxMjI5MDA1MTavSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10078, '2016-08-11 10:18:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9295,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:17.041953Z","gw_timestamp":4279431627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDYwMjAxMjI5MDA1MTay+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10080, '2016-08-11 10:18:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9297,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:18:31.394205Z","gw_timestamp":4293794451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjIwMDU5MDAxMjI5MDA1MTawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10094, '2016-08-11 10:20:09', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":855,"f_cnt_down":1530,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:20:08.426496Z","gw_timestamp":3135198300,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BDowMDYyODAxMjM3MDA0NjcXsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10096, '2016-08-11 10:20:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9311,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:11.93594Z","gw_timestamp":99370979,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDU2NjAxMjMwMDA1MTayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10098, '2016-08-11 10:20:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9313,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:26.302323Z","gw_timestamp":113734635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU4MTAxMjMwMDA1MTaySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10100, '2016-08-11 10:20:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9315,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:40.667571Z","gw_timestamp":128098395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AWYwMDU4NDAxMjMwMDA1MTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10104, '2016-08-11 10:21:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9319,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:09.391214Z","gw_timestamp":156825707,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU3OTAxMjMwMDA1MTWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10110, '2016-08-11 10:22:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9326,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:59.660705Z","gw_timestamp":207095795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU3MDAxMjMwMDA1MTSyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10065, '2016-08-11 10:16:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9282,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:16:43.688944Z","gw_timestamp":4186069219,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AcowMDU0ODAxMjI5MDA1MTSz2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10073, '2016-08-11 10:17:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9290,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:41.131013Z","gw_timestamp":4243522483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDYwNzAxMjI5MDA1MTayOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10075, '2016-08-11 10:18:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9292,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:17:55.494468Z","gw_timestamp":4257886139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDU4MTAxMjI5MDA1MTawqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10085, '2016-08-11 10:19:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9302,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:19:07.305279Z","gw_timestamp":34735459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU1NzAxMjMwMDA1MTay2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10095, '2016-08-11 10:20:13', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":856,"f_cnt_down":1531,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:18:49.654513Z","gw_timestamp":1771011900,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-4.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BDowMDYyODAxMjM3MDA0NjcXsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10097, '2016-08-11 10:20:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9312,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:19.118961Z","gw_timestamp":106552707,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU4ODAxMjMwMDA1MTaxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10099, '2016-08-11 10:20:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9314,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:33.495354Z","gw_timestamp":120916459,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU3NTAxMjMwMDA1MTay2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10101, '2016-08-11 10:20:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9316,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:47.849154Z","gw_timestamp":135280331,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU3NTAxMjMwMDA1MTWw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10103, '2016-08-11 10:21:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9318,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:02.210533Z","gw_timestamp":149643987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU3OTAxMjMwMDA1MTWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10105, '2016-08-11 10:21:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9320,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:23.765204Z","gw_timestamp":171188531,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU1NzAxMjMwMDA1MTWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10107, '2016-08-11 10:21:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9323,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:38.128985Z","gw_timestamp":185551251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU3NTAxMjMwMDA1MTSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10109, '2016-08-11 10:22:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9325,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:52.484943Z","gw_timestamp":199914803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU2NjAxMjMwMDA1MTSu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10111, '2016-08-11 10:22:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9327,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:06.852214Z","gw_timestamp":214277627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU3MzAxMjMwMDA1MTSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10113, '2016-08-11 10:22:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9329,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:21.213459Z","gw_timestamp":228640347,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"APYwMDYyODAxMjMwMDA1MTSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10093, '2016-08-11 10:20:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9310,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:04.758445Z","gw_timestamp":92189259,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU2NjAxMjMwMDA1MTavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10117, '2016-08-11 10:22:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9333,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:49.942086Z","gw_timestamp":257366723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU4NDAxMjMwMDA1MTWu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10119, '2016-08-11 10:23:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9335,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:04.315174Z","gw_timestamp":271729443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU3MDAxMjMwMDA1MTSw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10121, '2016-08-11 10:23:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9338,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:25.843461Z","gw_timestamp":293274931,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU3MTAxMjMwMDA1MTSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10123, '2016-08-11 10:23:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9340,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:40.209464Z","gw_timestamp":307638587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU1NTAxMjMwMDA1MTSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10125, '2016-08-11 10:23:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9342,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:54.582033Z","gw_timestamp":322002347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDYxOTAxMjMwMDA1MTSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10127, '2016-08-11 10:24:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9343,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:01.780826Z","gw_timestamp":329184275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU4MjAxMjMwMDA1MTSyuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10135, '2016-08-11 10:25:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9351,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:59.199466Z","gw_timestamp":386639003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDYzMTAxMjMwMDA1MTSuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10137, '2016-08-11 10:25:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9353,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:13.573968Z","gw_timestamp":401002771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU4NzAxMjMwMDA1MTSxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10139, '2016-08-11 10:25:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9355,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:27.939835Z","gw_timestamp":415366427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDY0NzAxMjMwMDA1MTSx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10141, '2016-08-11 10:25:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9357,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:42.308489Z","gw_timestamp":429729355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDYyMTAxMjMwMDA1MTSoWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10143, '2016-08-11 10:26:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9359,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:56.663469Z","gw_timestamp":444092691,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU2NDAxMjMwMDA1MTSvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10145, '2016-08-11 10:26:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9361,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:11.02284Z","gw_timestamp":458456563,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDYxMjAxMjMwMDA1MTSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10169, '2016-08-11 10:29:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9385,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:03.378973Z","gw_timestamp":630816899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU4MjAxMjMwMDA1MTKw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10102, '2016-08-11 10:21:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9317,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:20:55.032871Z","gw_timestamp":142462259,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU2NDAxMjMwMDA1MTWrqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10106, '2016-08-11 10:21:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9322,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:30.944073Z","gw_timestamp":178370051,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU2ODAxMjMwMDA1MTWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10108, '2016-08-11 10:21:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9324,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:21:45.298328Z","gw_timestamp":192733083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU5MDAxMjMwMDA1MTSwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10114, '2016-08-11 10:22:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9330,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:28.408366Z","gw_timestamp":235821547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AbkwMDU2ODAxMjMwMDA1MTSziw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10118, '2016-08-11 10:23:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9334,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:57.119091Z","gw_timestamp":264548027,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU3OTAxMjMwMDA1MTSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10120, '2016-08-11 10:23:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9336,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:18.659597Z","gw_timestamp":286093099,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU2NjAxMjMwMDA1MTSySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10128, '2016-08-11 10:24:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9344,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:08.939081Z","gw_timestamp":336366107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU2MjAxMjMwMDA1MTSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10130, '2016-08-11 10:24:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9346,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:23.304616Z","gw_timestamp":350729763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDU3ODAxMjMwMDA1MTSwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10132, '2016-08-11 10:24:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9348,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:37.667853Z","gw_timestamp":365093419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU1OTAxMjMwMDA1MTSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10134, '2016-08-11 10:25:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9350,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:52.028838Z","gw_timestamp":379457075,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU3ODAxMjMwMDA1MTSwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10136, '2016-08-11 10:25:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9352,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:06.39309Z","gw_timestamp":393820835,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDY0MzAxMjMwMDA1MTSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10138, '2016-08-11 10:25:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9354,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:20.753257Z","gw_timestamp":408184491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU4NzAxMjMwMDA1MTSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10140, '2016-08-11 10:25:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9356,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:35.120596Z","gw_timestamp":422548251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDYwNTAxMjMwMDA1MTSx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10142, '2016-08-11 10:25:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9358,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:25:49.483839Z","gw_timestamp":436910971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU4MjAxMjMwMDA1MTSyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10112, '2016-08-11 10:22:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9328,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:14.043108Z","gw_timestamp":221459139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU2MjAxMjMwMDA1MTS0qw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10116, '2016-08-11 10:22:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9332,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:42.754537Z","gw_timestamp":250184891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AjowMDYxNzAxMjMwMDA1MTWu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10122, '2016-08-11 10:23:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9339,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:33.029841Z","gw_timestamp":300456755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU3ODAxMjMwMDA1MTSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10124, '2016-08-11 10:23:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9341,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:23:47.394086Z","gw_timestamp":314820411,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU2ODAxMjMwMDA1MTSueg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10126, '2016-08-11 10:24:04', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1335,"f_cnt_down":2141,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:23:57.131342Z","gw_timestamp":3363903244,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BSMwMDk2MjAxMjI4MDA0OTMJEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10146, '2016-08-11 10:26:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9362,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:18.219747Z","gw_timestamp":465638395,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDYxMjAxMjMwMDA1MTSwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10148, '2016-08-11 10:26:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9364,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:32.574987Z","gw_timestamp":480001939,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDYwMzAxMjMwMDA1MTSxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10150, '2016-08-11 10:26:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9366,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:46.929978Z","gw_timestamp":494364763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDYwNTAxMjMwMDA1MTSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10156, '2016-08-11 10:27:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9373,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:37.20235Z","gw_timestamp":544636315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU4NzAxMjMwMDA1MTOw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10176, '2016-08-11 10:30:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9392,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:53.651172Z","gw_timestamp":681089811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDYxNDAxMjMxMDA1MTKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10178, '2016-08-11 10:30:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9394,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:08.022714Z","gw_timestamp":695453563,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU4MjAxMjMxMDA1MTKyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10180, '2016-08-11 10:30:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9396,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:22.376107Z","gw_timestamp":709816283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnIwMDU4NzAxMjMxMDA1MTKwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10188, '2016-08-11 10:31:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9404,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:19.828099Z","gw_timestamp":767270083,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnMwMDU5OTAxMjMxMDA1MTKvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10190, '2016-08-11 10:31:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9407,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:41.40823Z","gw_timestamp":788814523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDUyNTAxMjMxMDA1MTKvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10115, '2016-08-11 10:22:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9331,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:22:35.578075Z","gw_timestamp":243002955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDYwMjAxMjMwMDA1MTSwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10129, '2016-08-11 10:24:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9345,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:16.12172Z","gw_timestamp":343547827,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDYyMTAxMjMwMDA1MTSwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10131, '2016-08-11 10:24:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9347,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:30.483965Z","gw_timestamp":357911483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU4NzAxMjMwMDA1MTSvag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10133, '2016-08-11 10:24:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9349,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:24:44.855285Z","gw_timestamp":372275355,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDYxNzAxMjMwMDA1MTSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10147, '2016-08-11 10:26:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9363,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:25.388098Z","gw_timestamp":472820219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU1MzAxMjMwMDA1MTSxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10149, '2016-08-11 10:26:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9365,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:39.749346Z","gw_timestamp":487183771,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU4NDAxMjMwMDA1MTSxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10151, '2016-08-11 10:27:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9367,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:54.109603Z","gw_timestamp":501546491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU0MTAxMjMwMDA1MTOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10153, '2016-08-11 10:27:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9369,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:08.489121Z","gw_timestamp":515909315,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU3MzAxMjMwMDA1MTOwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10155, '2016-08-11 10:27:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9371,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:30.025851Z","gw_timestamp":537454907,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDYwMDAxMjMwMDA1MTOxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10157, '2016-08-11 10:27:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9374,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:44.382969Z","gw_timestamp":551817411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU1MDAxMjMwMDA1MTOu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10159, '2016-08-11 10:28:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9376,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:58.743796Z","gw_timestamp":566181387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-55,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU5ODAxMjMwMDA1MTOs2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10161, '2016-08-11 10:28:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9377,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:05.935841Z","gw_timestamp":573363107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDU3MzAxMjMwMDA1MTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10163, '2016-08-11 10:28:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9379,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:20.290232Z","gw_timestamp":587726763,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU2NDAxMjMwMDA1MTOxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10165, '2016-08-11 10:28:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9381,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:34.66148Z","gw_timestamp":602089899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU3NTAxMjMwMDA1MTKwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10144, '2016-08-11 10:26:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9360,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:26:03.847221Z","gw_timestamp":451274627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU4MjAxMjMwMDA1MTSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10152, '2016-08-11 10:27:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9368,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:01.288222Z","gw_timestamp":508728315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDYwMzAxMjMwMDA1MTOxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10154, '2016-08-11 10:27:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9370,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:15.671505Z","gw_timestamp":523091043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU4MjAxMjMwMDA1MTOwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10158, '2016-08-11 10:27:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9375,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:27:51.564717Z","gw_timestamp":558999451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU0ODAxMjMwMDA1MTOyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10160, '2016-08-11 10:28:08', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":772,"f_cnt_down":1361,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:28:03.302688Z","gw_timestamp":3610074700,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AgswMDgxNzAxMjIwMDA1MzQKQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10162, '2016-08-11 10:28:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9378,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:13.114423Z","gw_timestamp":580544827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDU3MTAxMjMwMDA1MTOwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10164, '2016-08-11 10:28:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9380,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:27.478839Z","gw_timestamp":594908699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU5MTAxMjMwMDA1MTOw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10166, '2016-08-11 10:28:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9382,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:41.839106Z","gw_timestamp":609271315,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU3NTAxMjMwMDA1MTKwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10168, '2016-08-11 10:29:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9384,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:56.19635Z","gw_timestamp":623634971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU0MTAxMjMwMDA1MTKvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10170, '2016-08-11 10:29:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9386,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:10.560603Z","gw_timestamp":637998627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDYwMzAxMjMxMDA1MTKvSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10172, '2016-08-11 10:29:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9388,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:24.921973Z","gw_timestamp":652362491,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU3ODAxMjMxMDA1MTKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10174, '2016-08-11 10:29:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9390,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:39.324698Z","gw_timestamp":666726043,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-58,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU1MDAxMjMxMDA1MTKtmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10182, '2016-08-11 10:30:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9398,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:36.742228Z","gw_timestamp":724179843,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU2NjAxMjMxMDA1MTKvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10184, '2016-08-11 10:30:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9400,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:51.103414Z","gw_timestamp":738543499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU5NjAxMjMxMDA1MTKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10167, '2016-08-11 10:28:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9383,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:28:49.014096Z","gw_timestamp":616453139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU3MzAxMjMwMDA1MTKw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10173, '2016-08-11 10:29:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9389,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:32.110587Z","gw_timestamp":659544219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-57,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU2NjAxMjMxMDA1MTKvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10175, '2016-08-11 10:29:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9391,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:46.474987Z","gw_timestamp":673907971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDYwMzAxMjMxMDA1MTKxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10177, '2016-08-11 10:30:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9393,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:00.843106Z","gw_timestamp":688271739,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU2NDAxMjMxMDA1MTKyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10201, '2016-08-11 10:33:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9417,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:53.193362Z","gw_timestamp":860633123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU2ODAxMjMxMDA1MTGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10203, '2016-08-11 10:33:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9419,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:07.577866Z","gw_timestamp":874996675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDU1OTAxMjMxMDA1MTGwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10205, '2016-08-11 10:33:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9421,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:21.921871Z","gw_timestamp":889360019,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDUxODAxMjMxMDA1MTGxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10207, '2016-08-11 10:33:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9423,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:36.284116Z","gw_timestamp":903723155,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU4NDAxMjMxMDA1MTGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10209, '2016-08-11 10:34:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9425,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:50.649362Z","gw_timestamp":918086923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDU2MjAxMjMxMDA1MTGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10211, '2016-08-11 10:34:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9427,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:05.008617Z","gw_timestamp":932450579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU4OTAxMjMxMDA1MTGwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10217, '2016-08-11 10:34:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9433,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:48.119767Z","gw_timestamp":975540723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDUzMjAxMjMxMDA1MTGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10219, '2016-08-11 10:35:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9435,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:02.475883Z","gw_timestamp":989904371,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU3MTAxMjMxMDA1MTGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10221, '2016-08-11 10:35:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9437,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:16.830997Z","gw_timestamp":1004267307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDUyNTAxMjMxMDA1MTGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10223, '2016-08-11 10:35:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9438,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:24.015996Z","gw_timestamp":1011448819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU2NDAxMjMxMDA1MTGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10171, '2016-08-11 10:29:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9387,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:29:17.752229Z","gw_timestamp":645180555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-56,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU3ODAxMjMwMDA1MTKxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10179, '2016-08-11 10:30:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9395,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:15.202351Z","gw_timestamp":702635291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU5NjAxMjMxMDA1MTKwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10181, '2016-08-11 10:30:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9397,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:29.576253Z","gw_timestamp":716997907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU4MDAxMjMxMDA1MTKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10183, '2016-08-11 10:30:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9399,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:43.955856Z","gw_timestamp":731361667,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU4MjAxMjMxMDA1MTKv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10185, '2016-08-11 10:31:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9401,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:30:58.29524Z","gw_timestamp":745724491,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU0MzAxMjMxMDA1MTKyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10187, '2016-08-11 10:31:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9403,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:12.656487Z","gw_timestamp":760088155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU2NjAxMjMxMDA1MTKuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10189, '2016-08-11 10:31:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9405,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:34.194294Z","gw_timestamp":781632699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnMwMDU1MDAxMjMxMDA1MTKwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10191, '2016-08-11 10:31:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9408,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:48.566614Z","gw_timestamp":795996459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU4MjAxMjMxMDA1MTKvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10193, '2016-08-11 10:32:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9410,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:02.931857Z","gw_timestamp":810360115,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDUyMzAxMjMxMDA1MTKxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10195, '2016-08-11 10:32:20', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":856,"f_cnt_down":1562,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:32:14.701116Z","gw_timestamp":3861473236,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:55.929138Z","gw_timestamp":2497286524,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BI0wMDg0NTAxMjI2MDA1MTcG0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10197, '2016-08-11 10:32:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9413,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:24.472729Z","gw_timestamp":831905811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDYyMjAxMjMxMDA1MTGwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10199, '2016-08-11 10:32:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9415,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:38.832375Z","gw_timestamp":846269363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU2NDAxMjMxMDA1MTGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10213, '2016-08-11 10:34:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9429,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:19.371861Z","gw_timestamp":946814139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDUyMzAxMjMxMDA1MTGyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10186, '2016-08-11 10:31:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9402,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:05.483975Z","gw_timestamp":752906219,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU1MzAxMjMxMDA1MTKwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10194, '2016-08-11 10:32:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9411,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:10.101729Z","gw_timestamp":817541947,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDU0ODAxMjMxMDA1MTGwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10200, '2016-08-11 10:32:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9416,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:46.022608Z","gw_timestamp":853451291,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU2MjAxMjMxMDA1MTGuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10202, '2016-08-11 10:33:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9418,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:00.38298Z","gw_timestamp":867814851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU1MDAxMjMxMDA1MTGu2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10228, '2016-08-11 10:36:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9444,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:07.10663Z","gw_timestamp":1054539899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDUxNjAxMjMxMDA1MTGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10230, '2016-08-11 10:36:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9446,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:21.462744Z","gw_timestamp":1068902723,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU2MjAxMjMyMDA1MTGwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10256, '2016-08-11 10:39:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9470,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:39:13.825101Z","gw_timestamp":1241262035,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU1OTAxMjMyMDA1MTCxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10258, '2016-08-11 10:39:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9473,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:39:42.554423Z","gw_timestamp":1269988515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU0MTAxMjMyMDA1MTCzGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10260, '2016-08-11 10:40:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9476,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:39:56.934005Z","gw_timestamp":1284352067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU0ODAxMjMyMDA1MTCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10264, '2016-08-11 10:40:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9480,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:25.637328Z","gw_timestamp":1313079595,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU2MjAxMjMyMDA1MTCv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10266, '2016-08-11 10:40:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9482,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:39.997639Z","gw_timestamp":1327442315,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU2MjAxMjMyMDA1MTCwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10268, '2016-08-11 10:41:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9484,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:54.370033Z","gw_timestamp":1341805867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUzOTAxMjMyMDA1MTCxew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10270, '2016-08-11 10:41:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9486,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:08.723005Z","gw_timestamp":1356168699,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDUxMTAxMjMyMDA1MTCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10272, '2016-08-11 10:41:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9488,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:23.089003Z","gw_timestamp":1370531515,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUwNDAxMjMyMDA1MTCuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10192, '2016-08-11 10:32:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9409,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:31:55.749567Z","gw_timestamp":803178283,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU2NDAxMjMxMDA1MTKwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10196, '2016-08-11 10:32:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9412,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:17.30138Z","gw_timestamp":824723875,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnEwMDU2MjAxMjMxMDA1MTGyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10198, '2016-08-11 10:32:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9414,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:32:31.669828Z","gw_timestamp":839087531,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU1NTAxMjMxMDA1MTGvqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10204, '2016-08-11 10:33:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9420,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:14.74224Z","gw_timestamp":882178611,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AnAwMDU2NjAxMjMxMDA1MTGw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10206, '2016-08-11 10:33:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9422,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:29.100489Z","gw_timestamp":896541227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU0MTAxMjMxMDA1MTGwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10208, '2016-08-11 10:33:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9424,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:43.463737Z","gw_timestamp":910904995,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDU1OTAxMjMxMDA1MTGvOg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10210, '2016-08-11 10:34:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9426,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:33:57.855815Z","gw_timestamp":925268755,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU2NDAxMjMxMDA1MTGx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10212, '2016-08-11 10:34:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9428,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:12.198466Z","gw_timestamp":939632307,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDU3MTAxMjMxMDA1MTGvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10214, '2016-08-11 10:34:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9430,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:26.557499Z","gw_timestamp":953995123,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDUxMDAxMjMxMDA1MTGxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10216, '2016-08-11 10:34:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9432,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:40.919881Z","gw_timestamp":968358787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDUyMTAxMjMxMDA1MTGwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10218, '2016-08-11 10:35:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9434,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:55.285094Z","gw_timestamp":982722443,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU1NTAxMjMxMDA1MTGv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10220, '2016-08-11 10:35:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9436,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:09.654303Z","gw_timestamp":997086203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU1NTAxMjMxMDA1MTGyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10222, '2016-08-11 10:35:25', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":856,"f_cnt_down":1532,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:35:19.276587Z","gw_timestamp":4046048788,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BpswMDYzMzAxMjM4MDA0NjcK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10224, '2016-08-11 10:35:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9439,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:38.392372Z","gw_timestamp":1025812587,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDU4NzAxMjMxMDA1MTGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10215, '2016-08-11 10:34:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9431,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:34:33.750355Z","gw_timestamp":961176955,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU4OTAxMjMxMDA1MTGxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10227, '2016-08-11 10:36:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9443,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:59.923694Z","gw_timestamp":1047358275,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDUyNTAxMjMyMDA1MTGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10229, '2016-08-11 10:36:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9445,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:14.278998Z","gw_timestamp":1061721619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmwwMDU0MzAxMjMxMDA1MTGv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10231, '2016-08-11 10:36:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9447,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:28.652586Z","gw_timestamp":1076084443,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDU2NjAxMjMyMDA1MTGwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10233, '2016-08-11 10:36:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9449,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:43.00262Z","gw_timestamp":1090447267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU1OTAxMjMyMDA1MTGxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10235, '2016-08-11 10:37:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9451,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:57.37588Z","gw_timestamp":1104810931,"frequency":868.0999755859375,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDU0NjAxMjMyMDA1MTGu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10237, '2016-08-11 10:37:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9453,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:11.731129Z","gw_timestamp":1119173339,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am0wMDUwMDAxMjMyMDA1MTGwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10239, '2016-08-11 10:37:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9455,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:26.093353Z","gw_timestamp":1133536267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUxNDAxMjMyMDA1MTGwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10255, '2016-08-11 10:39:14', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1337,"f_cnt_down":2143,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:26:14.222066Z","gw_timestamp":2910546748,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BPswMDkyMTAxMjMwMDA0OTAG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10257, '2016-08-11 10:39:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9471,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:39:28.190448Z","gw_timestamp":1255625795,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU1OTAxMjMyMDA1MTCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10259, '2016-08-11 10:39:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9475,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:39:49.724982Z","gw_timestamp":1277170347,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU2MjAxMjMyMDA1MTCxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10261, '2016-08-11 10:40:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9477,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:04.088512Z","gw_timestamp":1291534003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDUyNDAxMjMyMDA1MTCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10263, '2016-08-11 10:40:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9479,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:18.473895Z","gw_timestamp":1305897763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDUwNDAxMjMyMDA1MTCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10265, '2016-08-11 10:40:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9481,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:32.82188Z","gw_timestamp":1320261323,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU2ODAxMjMyMDA1MTCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10225, '2016-08-11 10:35:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9441,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:45.555499Z","gw_timestamp":1032994515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU0ODAxMjMxMDA1MTGxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10241, '2016-08-11 10:37:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9457,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:40.467644Z","gw_timestamp":1147900027,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU4MDAxMjMyMDA1MTGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10243, '2016-08-11 10:38:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9459,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:54.818872Z","gw_timestamp":1162263683,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDUxOTAxMjMyMDA1MTGwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10245, '2016-08-11 10:38:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9461,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:09.18183Z","gw_timestamp":1176627139,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDUxOTAxMjMyMDA1MTCxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10247, '2016-08-11 10:38:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9463,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:23.553932Z","gw_timestamp":1190990163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU0ODAxMjMyMDA1MTCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10249, '2016-08-11 10:38:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9465,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:37.91875Z","gw_timestamp":1205353827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU2ODAxMjMyMDA1MTCwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10251, '2016-08-11 10:39:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9467,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:52.280996Z","gw_timestamp":1219717587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDUxNzAxMjMyMDA1MTCwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10253, '2016-08-11 10:39:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9469,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:39:06.639253Z","gw_timestamp":1234080515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUyMTAxMjMyMDA1MTCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10269, '2016-08-11 10:41:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9485,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:01.558684Z","gw_timestamp":1348987699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUwMDAxMjMyMDA1MTCxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10271, '2016-08-11 10:41:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9487,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:15.907628Z","gw_timestamp":1363350523,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU0NjAxMjMyMDA1MTCvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10277, '2016-08-11 10:42:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9494,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:06.184131Z","gw_timestamp":1413621555,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU2NDAxMjMyMDA1MTCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10279, '2016-08-11 10:42:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9496,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:20.544481Z","gw_timestamp":1427985211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1MzAxMjMyMDA1MTCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10297, '2016-08-11 10:44:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9513,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:22.631143Z","gw_timestamp":1550073699,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUxNzAxMjMyMDA1MDmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10299, '2016-08-11 10:44:45', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9515,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:36.997855Z","gw_timestamp":1564437363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU2OTAxMjMyMDA1MDmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10226, '2016-08-11 10:36:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9442,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:35:52.745245Z","gw_timestamp":1040176347,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am8wMDU4MjAxMjMxMDA1MTGyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10232, '2016-08-11 10:36:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9448,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:35.822996Z","gw_timestamp":1083266275,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU0MTAxMjMyMDA1MTGuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10234, '2016-08-11 10:36:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9450,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:36:50.199652Z","gw_timestamp":1097629003,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Am4wMDU3MTAxMjMyMDA1MTGw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10236, '2016-08-11 10:37:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9452,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:04.55876Z","gw_timestamp":1111991923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU1NTAxMjMyMDA1MTGxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10238, '2016-08-11 10:37:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9454,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:18.931911Z","gw_timestamp":1126354331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmowMDU3MTAxMjMyMDA1MTGvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10240, '2016-08-11 10:37:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9456,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:33.279991Z","gw_timestamp":1140718203,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU1NTAxMjMyMDA1MTGwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10242, '2016-08-11 10:37:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9458,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:37:47.64925Z","gw_timestamp":1155081859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU3MzAxMjMyMDA1MTGxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10244, '2016-08-11 10:38:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9460,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:02.006517Z","gw_timestamp":1169445619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU3MTAxMjMyMDA1MTCxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10246, '2016-08-11 10:38:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9462,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:16.3658Z","gw_timestamp":1183808235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUzNDAxMjMyMDA1MTCvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10248, '2016-08-11 10:38:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9464,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:30.732126Z","gw_timestamp":1198171891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1MDAxMjMyMDA1MTCuSg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10250, '2016-08-11 10:38:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9466,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:45.094325Z","gw_timestamp":1212535659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU1MzAxMjMyMDA1MTCvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10252, '2016-08-11 10:39:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9468,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:38:59.456707Z","gw_timestamp":1226899515,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1OTAxMjMyMDA1MTCw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10254, '2016-08-11 10:39:10', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1336,"f_cnt_down":2142,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:39:07.961335Z","gw_timestamp":4274733636,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BPswMDkyMTAxMjMwMDA0OTAG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10262, '2016-08-11 10:40:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9478,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:11.270009Z","gw_timestamp":1298715827,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1MDAxMjMyMDA1MTCv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10267, '2016-08-11 10:40:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9483,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:40:47.200245Z","gw_timestamp":1334624139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDUyMTAxMjMyMDA1MTCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10273, '2016-08-11 10:41:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9489,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:30.27586Z","gw_timestamp":1377713243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDUzMzAxMjMyMDA1MTCvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10275, '2016-08-11 10:41:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9492,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:51.817823Z","gw_timestamp":1399258835,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU0NjAxMjMyMDA1MTCySw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10281, '2016-08-11 10:42:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9498,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:34.903826Z","gw_timestamp":1442348763,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUxMzAxMjMyMDA1MTCw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10283, '2016-08-11 10:42:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9500,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:49.275834Z","gw_timestamp":1456712627,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDUzMTAxMjMyMDA1MTCvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10285, '2016-08-11 10:43:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9502,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:03.637135Z","gw_timestamp":1471075147,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2MDAxMjMyMDA1MTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10287, '2016-08-11 10:43:20', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":773,"f_cnt_down":1362,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:30:20.345794Z","gw_timestamp":3156670476,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AIYwMDgxMzAxMjIzMDA1NDAHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10289, '2016-08-11 10:43:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9505,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:25.197261Z","gw_timestamp":1492619907,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDU0NDAxMjMyMDA1MTCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10291, '2016-08-11 10:43:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9507,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:39.541392Z","gw_timestamp":1506983459,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUxOTAxMjMyMDA1MTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10293, '2016-08-11 10:44:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9509,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:53.906642Z","gw_timestamp":1521346595,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU3ODAxMjMyMDA1MTCwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10295, '2016-08-11 10:44:17', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9511,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:08.267887Z","gw_timestamp":1535709939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDQ4NzAxMjMyMDA1MTCx6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10303, '2016-08-11 10:45:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9519,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:05.725883Z","gw_timestamp":1593163635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDU1NDAxMjMyMDA1MDmveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10305, '2016-08-11 10:45:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9521,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:20.08521Z","gw_timestamp":1607527499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDUxOTAxMjMyMDA1MDmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10307, '2016-08-11 10:45:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9523,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:34.451521Z","gw_timestamp":1621891163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmkwMDQ4NTAxMjMyMDA1MDmuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10274, '2016-08-11 10:41:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9490,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:44.665508Z","gw_timestamp":1392076899,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1MDAxMjMyMDA1MTCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10282, '2016-08-11 10:42:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9499,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:42.093258Z","gw_timestamp":1449530699,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2MjAxMjMyMDA1MTCveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10284, '2016-08-11 10:43:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9501,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:56.451512Z","gw_timestamp":1463893939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2NzAxMjMyMDA1MTCwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10292, '2016-08-11 10:43:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9508,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:46.725772Z","gw_timestamp":1514165387,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUzMTAxMjMyMDA1MTCxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10310, '2016-08-11 10:46:12', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9527,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:03.173003Z","gw_timestamp":1650618579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDU2MjAxMjMyMDA1MDmxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10312, '2016-08-11 10:46:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9529,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:17.549632Z","gw_timestamp":1664982139,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUzODAxMjMyMDA1MDmxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10314, '2016-08-11 10:46:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9531,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:31.895459Z","gw_timestamp":1679346003,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU0NDAxMjMyMDA1MDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10318, '2016-08-11 10:47:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9535,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:00.630022Z","gw_timestamp":1708073211,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU0MDAxMjMyMDA1MDivug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10320, '2016-08-11 10:47:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9537,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:14.990914Z","gw_timestamp":1722437083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUyNDAxMjMyMDA1MDiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10322, '2016-08-11 10:47:30', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":857,"f_cnt_down":1563,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:47:25.487429Z","gw_timestamp":477292652,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A4QwMDgyODAxMjI4MDA1MjAMoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10324, '2016-08-11 10:47:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9540,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:36.540516Z","gw_timestamp":1743982571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUwMjAxMjMyMDA1MDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10326, '2016-08-11 10:48:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9543,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:58.114899Z","gw_timestamp":1765527115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDUyNDAxMjMyMDA1MDiw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10328, '2016-08-11 10:48:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9545,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:12.451328Z","gw_timestamp":1779890883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUzMTAxMjMyMDA1MDixSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10330, '2016-08-11 10:48:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9547,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:26.806031Z","gw_timestamp":1794254435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDUxNTAxMjMyMDA1MDiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10276, '2016-08-11 10:42:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9493,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:41:58.997505Z","gw_timestamp":1406439835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmAwMDU2NDAxMjMyMDA1MTCwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10278, '2016-08-11 10:42:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9495,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:13.359758Z","gw_timestamp":1420803283,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDU1MTAxMjMyMDA1MTCu+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10280, '2016-08-11 10:42:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9497,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:42:27.731268Z","gw_timestamp":1435167043,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":12,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUyNDAxMjMyMDA1MTCxqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10286, '2016-08-11 10:43:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9503,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:10.822069Z","gw_timestamp":1478256139,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUzODAxMjMyMDA1MTCv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10288, '2016-08-11 10:43:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9504,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:17.991642Z","gw_timestamp":1485437971,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmcwMDUyNjAxMjMyMDA1MTCwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10290, '2016-08-11 10:43:40', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9506,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:43:32.36474Z","gw_timestamp":1499801731,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmUwMDUzOTAxMjMyMDA1MTCxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10294, '2016-08-11 10:44:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9510,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:01.110536Z","gw_timestamp":1528528107,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUwNjAxMjMyMDA1MTCyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10296, '2016-08-11 10:44:24', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9512,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:15.448515Z","gw_timestamp":1542891771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU0MjAxMjMyMDA1MTCwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10298, '2016-08-11 10:44:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9514,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:29.818748Z","gw_timestamp":1557255427,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUyNjAxMjMyMDA1MDmxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10300, '2016-08-11 10:44:52', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9516,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:44.18127Z","gw_timestamp":1571619195,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDU0MDAxMjMyMDA1MDmv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10302, '2016-08-11 10:45:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9518,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:58.540387Z","gw_timestamp":1585981811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU1NDAxMjMyMDA1MDmyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10304, '2016-08-11 10:45:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9520,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:12.89664Z","gw_timestamp":1600345571,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmswMDU0MDAxMjMyMDA1MDmvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10306, '2016-08-11 10:45:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9522,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:27.279168Z","gw_timestamp":1614709227,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUyMjAxMjMyMDA1MDmyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10308, '2016-08-11 10:45:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9524,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:48.805771Z","gw_timestamp":1636254715,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUxNzAxMjMyMDA1MDmxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10301, '2016-08-11 10:45:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9517,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:44:51.365798Z","gw_timestamp":1578800603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUzODAxMjMyMDA1MDmyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10311, '2016-08-11 10:46:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9528,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:10.364625Z","gw_timestamp":1657800411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmYwMDUyNjAxMjMyMDA1MDmvug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10313, '2016-08-11 10:46:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9530,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:24.717896Z","gw_timestamp":1672164067,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDUyNjAxMjMyMDA1MDixqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10315, '2016-08-11 10:46:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9532,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:39.083145Z","gw_timestamp":1686527723,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDQ5MjAxMjMyMDA1MDiwmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10345, '2016-08-11 10:50:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9562,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:14.539103Z","gw_timestamp":1901980307,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUzMzAxMjMzMDA1MDiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10347, '2016-08-11 10:50:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9564,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:28.90492Z","gw_timestamp":1916343971,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDUzMzAxMjMzMDA1MDiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10349, '2016-08-11 10:50:35', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":858,"f_cnt_down":1534,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:50:30.128252Z","gw_timestamp":661933556,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bl4wMDY0MTAxMjM5MDA0NzMMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10351, '2016-08-11 10:50:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9566,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:43.264778Z","gw_timestamp":1930706579,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUzNTAxMjMzMDA1MDiw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10353, '2016-08-11 10:51:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9568,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:57.631036Z","gw_timestamp":1945070451,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDUxNTAxMjMzMDA1MDiwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10355, '2016-08-11 10:51:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9570,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:51:11.990284Z","gw_timestamp":1959434003,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUxNTAxMjMzMDA1MDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10357, '2016-08-11 10:51:35', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9572,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:51:26.349655Z","gw_timestamp":1973797771,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUwOTAxMjMzMDA1MDiyaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10369, '2016-08-11 10:53:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9587,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:14.095925Z","gw_timestamp":2081522603,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUxMzAxMjMzMDA1MDixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10371, '2016-08-11 10:53:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9589,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:28.441281Z","gw_timestamp":2095885747,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlIwMDUwMDAxMjMzMDA1MDiveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10399, '2016-08-11 10:57:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9619,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:03.917567Z","gw_timestamp":2311335619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDUzMzAxMjMzMDA1MDav6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10309, '2016-08-11 10:46:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9526,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:45:55.999398Z","gw_timestamp":1643436643,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmgwMDUyNjAxMjMyMDA1MDmw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10317, '2016-08-11 10:47:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9534,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:53.455252Z","gw_timestamp":1700891483,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDQ4MTAxMjMyMDA1MDixmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10319, '2016-08-11 10:47:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9536,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:07.82613Z","gw_timestamp":1715255251,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDUwOTAxMjMyMDA1MDiYCQ==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10321, '2016-08-11 10:47:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9538,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:22.171022Z","gw_timestamp":1729618803,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmMwMDU0NzAxMjMyMDA1MDixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10323, '2016-08-11 10:47:38', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9539,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:29.349644Z","gw_timestamp":1736800635,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDU0MjAxMjMyMDA1MDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10325, '2016-08-11 10:47:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9541,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:47:50.902644Z","gw_timestamp":1758345291,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDUwOTAxMjMyMDA1MDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10327, '2016-08-11 10:48:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9544,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:05.262762Z","gw_timestamp":1772709051,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDU0MjAxMjMyMDA1MDiuyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10329, '2016-08-11 10:48:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9546,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:19.633011Z","gw_timestamp":1787072611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDQ5ODAxMjMyMDA1MDivqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10331, '2016-08-11 10:48:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9548,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:34.01247Z","gw_timestamp":1801436363,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU0OTAxMjMyMDA1MDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10333, '2016-08-11 10:48:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9550,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:48.358279Z","gw_timestamp":1815798987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUxMzAxMjMyMDA1MDiyCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10335, '2016-08-11 10:49:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9552,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:02.715835Z","gw_timestamp":1830162851,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDUyNjAxMjMyMDA1MDiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10337, '2016-08-11 10:49:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9554,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:17.087155Z","gw_timestamp":1844526507,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU2MzAxMjMyMDA1MDiu6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10339, '2016-08-11 10:49:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9556,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:31.43865Z","gw_timestamp":1858890163,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDUzNTAxMjMyMDA1MDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10341, '2016-08-11 10:49:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9558,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:45.809723Z","gw_timestamp":1873252891,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDUwOTAxMjMyMDA1MDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10316, '2016-08-11 10:46:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9533,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:46:46.264752Z","gw_timestamp":1693709651,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmQwMDUxNTAxMjMyMDA1MDiyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10334, '2016-08-11 10:49:03', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9551,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:55.533154Z","gw_timestamp":1822980923,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU2MDAxMjMyMDA1MDixKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10336, '2016-08-11 10:49:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9553,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:09.937774Z","gw_timestamp":1837344579,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU2MzAxMjMyMDA1MDixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10338, '2016-08-11 10:49:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9555,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:24.263784Z","gw_timestamp":1851708235,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDU0OTAxMjMyMDA1MDivmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10356, '2016-08-11 10:51:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9571,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:51:19.167909Z","gw_timestamp":1966615939,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDQ5ODAxMjMzMDA1MDiy+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10358, '2016-08-11 10:51:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9573,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:51:33.542155Z","gw_timestamp":1980979499,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDU0OTAxMjMzMDA1MDixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10372, '2016-08-11 10:53:48', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9590,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:35.620906Z","gw_timestamp":2103066947,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUzNTAxMjMzMDA1MDiyGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10374, '2016-08-11 10:54:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9592,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:50.017179Z","gw_timestamp":2117429875,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDUxMzAxMjMzMDA1MDiuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10376, '2016-08-11 10:54:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9595,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:11.530036Z","gw_timestamp":2138975363,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDUzODAxMjMzMDA1MDiuig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10378, '2016-08-11 10:54:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9596,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:18.708668Z","gw_timestamp":2146157195,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU2NTAxMjMzMDA1MDiwWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10380, '2016-08-11 10:54:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9598,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:33.071022Z","gw_timestamp":2160519915,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlEwMDU0MDAxMjMzMDA1MDew6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10382, '2016-08-11 10:54:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9600,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:47.429219Z","gw_timestamp":2174883571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDUxNTAxMjMzMDA1MDaumg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10384, '2016-08-11 10:55:10', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9602,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:01.821799Z","gw_timestamp":2189247227,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDQ5NDAxMjMzMDA1MDawKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10386, '2016-08-11 10:55:27', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9604,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:16.168796Z","gw_timestamp":2203610995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDQ5MjAxMjMzMDA1MDevmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10332, '2016-08-11 10:48:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9549,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:48:41.169908Z","gw_timestamp":1808617891,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDUxMTAxMjMyMDA1MDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10340, '2016-08-11 10:49:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9557,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:38.632025Z","gw_timestamp":1866071787,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmEwMDUzMTAxMjMyMDA1MDiwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10342, '2016-08-11 10:50:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9559,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:49:52.987279Z","gw_timestamp":1880434723,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AmIwMDU1MTAxMjMzMDA1MDivag==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10344, '2016-08-11 10:50:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9561,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:07.353521Z","gw_timestamp":1894798483,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al8wMDU0NDAxMjMyMDA1MDixCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10346, '2016-08-11 10:50:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9563,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:21.721784Z","gw_timestamp":1909162035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":7,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDUyNjAxMjMzMDA1MDix2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10348, '2016-08-11 10:50:32', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":857,"f_cnt_down":1533,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:37:36.388986Z","gw_timestamp":3592713668,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bl4wMDY0MTAxMjM5MDA0NzMMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10350, '2016-08-11 10:50:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9565,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:36.075001Z","gw_timestamp":1923525587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUyMjAxMjMzMDA1MDixuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10352, '2016-08-11 10:50:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9567,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:50.437404Z","gw_timestamp":1937888411,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU1NjAxMjMzMDA1MDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10354, '2016-08-11 10:51:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9569,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:51:04.813729Z","gw_timestamp":1952252283,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDQ5MjAxMjMzMDA1MDiwaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10360, '2016-08-11 10:52:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9575,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:02.279941Z","gw_timestamp":2009705043,"frequency":868.2999877929688,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al0wMDU2NzAxMjMzMDA1MDiw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10362, '2016-08-11 10:52:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9579,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:16.623905Z","gw_timestamp":2024068803,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDUxNzAxMjMzMDA1MDiwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10364, '2016-08-11 10:52:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9581,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:30.986147Z","gw_timestamp":2038431731,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlswMDUwMjAxMjMzMDA1MDixyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10366, '2016-08-11 10:53:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9583,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:45.347545Z","gw_timestamp":2052795187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDUxMTAxMjMzMDA1MDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10368, '2016-08-11 10:53:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9586,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:06.89489Z","gw_timestamp":2074340675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDUwMjAxMjMzMDA1MDivyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10343, '2016-08-11 10:50:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9560,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:50:00.169891Z","gw_timestamp":1887616547,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUxMTAxMjMyMDA1MDixWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10359, '2016-08-11 10:52:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9574,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:51:40.714093Z","gw_timestamp":1988160491,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDUyMjAxMjMzMDA1MDiwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10361, '2016-08-11 10:52:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9578,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:09.443507Z","gw_timestamp":2016886875,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"Al4wMDQ5MjAxMjMzMDA1MDizKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10363, '2016-08-11 10:52:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9580,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:23.797538Z","gw_timestamp":2031250531,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlwwMDUxMzAxMjMzMDA1MDixGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10365, '2016-08-11 10:52:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9582,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:38.182251Z","gw_timestamp":2045613251,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDUzODAxMjMzMDA1MDiwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10367, '2016-08-11 10:53:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9584,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:52:59.710224Z","gw_timestamp":2067158739,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDQ5NjAxMjMzMDA1MDixOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10373, '2016-08-11 10:53:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9591,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:42.797537Z","gw_timestamp":2110247939,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU1MTAxMjMzMDA1MDixew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10375, '2016-08-11 10:54:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9593,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:04.361926Z","gw_timestamp":2131793435,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDUwOTAxMjMzMDA1MDiwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10377, '2016-08-11 10:54:21', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1337,"f_cnt_down":2144,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:54:18.801993Z","gw_timestamp":890607396,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A1wwMDg3MDAxMjMxMDA0ODgN8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10379, '2016-08-11 10:54:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9597,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:25.892268Z","gw_timestamp":2153338499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU0MjAxMjMzMDA1MDeyqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10381, '2016-08-11 10:54:49', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9599,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:40.251053Z","gw_timestamp":2167701643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDU0MDAxMjMzMDA1MDexyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10383, '2016-08-11 10:55:06', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9601,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:54:54.632194Z","gw_timestamp":2182065507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDUzNTAxMjMzMDA1MDawaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10385, '2016-08-11 10:55:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9603,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:08.975286Z","gw_timestamp":2196429059,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDQ4NTAxMjMzMDA1MDev6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10387, '2016-08-11 10:55:32', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9605,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:23.342417Z","gw_timestamp":2210792099,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUyNDAxMjMzMDA1MDevGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10370, '2016-08-11 10:53:29', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9588,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:53:21.256042Z","gw_timestamp":2088704331,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDUzMTAxMjMzMDA1MDiwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10390, '2016-08-11 10:56:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9609,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:52.075044Z","gw_timestamp":2239518267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDUzNTAxMjMzMDA1MDayuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10392, '2016-08-11 10:56:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9612,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:20.795411Z","gw_timestamp":2268245483,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-83,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlowMDUyNjAxMjMzMDA1MDawSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10394, '2016-08-11 10:56:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9613,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:27.995428Z","gw_timestamp":2275426475,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUwNjAxMjMzMDA1MDawGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10396, '2016-08-11 10:56:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9616,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:42.343414Z","gw_timestamp":2289790243,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUxOTAxMjMzMDA1MDavig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10398, '2016-08-11 10:57:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9618,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:56.702666Z","gw_timestamp":2304153899,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDUzODAxMjMzMDA1MDaxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10400, '2016-08-11 10:57:18', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9620,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:11.065868Z","gw_timestamp":2318517555,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUyNjAxMjMzMDA1MDWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10402, '2016-08-11 10:57:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9622,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:25.435156Z","gw_timestamp":2332880171,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU1MTAxMjMzMDA1MDWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10404, '2016-08-11 10:57:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9624,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:39.809672Z","gw_timestamp":2347242995,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDUzMTAxMjMzMDA1MDWwCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10426, '2016-08-11 11:00:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9647,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:24.966164Z","gw_timestamp":2512421435,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUxNzAxMjMzMDA1MDWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10428, '2016-08-11 11:00:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9649,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:39.330303Z","gw_timestamp":2526784251,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDUyNDAxMjM0MDA1MDWw+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10430, '2016-08-11 11:01:02', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9651,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:53.694604Z","gw_timestamp":2541148019,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDUyODAxMjM0MDA1MDWxCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10432, '2016-08-11 11:01:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9653,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:08.067187Z","gw_timestamp":2555511163,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFwwMDUyNDAxMjM0MDA1MDWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10442, '2016-08-11 11:02:28', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9663,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:19.872049Z","gw_timestamp":2627326123,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGMwMDU0NDAxMjM0MDA1MDWyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10388, '2016-08-11 10:55:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9606,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:30.539314Z","gw_timestamp":2217973715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDQ5ODAxMjMzMDA1MDewyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10406, '2016-08-11 10:58:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9626,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:54.160055Z","gw_timestamp":2361606659,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlQwMDUyODAxMjMzMDA1MDWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10408, '2016-08-11 10:58:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9629,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:15.738801Z","gw_timestamp":2383151627,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDQ4NTAxMjMzMDA1MDWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10410, '2016-08-11 10:58:31', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":774,"f_cnt_down":1363,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T10:58:24.869741Z","gw_timestamp":1136675252,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AKkwMDcyNDAxMjI2MDA1MzUKEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10412, '2016-08-11 10:58:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9632,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:37.255488Z","gw_timestamp":2404695867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDUyNDAxMjMzMDA1MDWxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10414, '2016-08-11 10:59:00', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9634,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:51.6118Z","gw_timestamp":2419059419,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-77,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUyNjAxMjMzMDA1MDWyew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10416, '2016-08-11 10:59:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9636,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:06.001325Z","gw_timestamp":2433423179,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-76,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlMwMDUwMDAxMjMzMDA1MDWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10418, '2016-08-11 10:59:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9638,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:20.345691Z","gw_timestamp":2447785795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-84,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUwNDAxMjMzMDA1MDWvig==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10420, '2016-08-11 10:59:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9640,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:34.697556Z","gw_timestamp":2462149563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDU1NjAxMjMzMDA1MDWuWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10422, '2016-08-11 10:59:57', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9642,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:49.058081Z","gw_timestamp":2476513227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-61,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDU0NzAxMjMzMDA1MDWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10424, '2016-08-11 11:00:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9644,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:10.612675Z","gw_timestamp":2498058187,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFUwMDUxOTAxMjMzMDA1MDWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10434, '2016-08-11 11:01:31', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9655,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:22.438305Z","gw_timestamp":2569873355,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDQ5ODAxMjM0MDA1MDWwKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10436, '2016-08-11 11:01:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9657,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:36.782558Z","gw_timestamp":2584236083,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUxMzAxMjM0MDA1MDWv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10438, '2016-08-11 11:01:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9659,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:51.149682Z","gw_timestamp":2598599635,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDU0MDAxMjM0MDA1MDWxyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10389, '2016-08-11 10:55:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9607,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:55:44.883283Z","gw_timestamp":2232337267,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDQ4MTAxMjMzMDA1MDaveg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10391, '2016-08-11 10:56:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9610,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:06.450533Z","gw_timestamp":2253881923,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDU1NDAxMjMzMDA1MDawiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10393, '2016-08-11 10:56:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9614,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:13.617797Z","gw_timestamp":2261063859,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDUwNjAxMjMzMDA1MDawCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10395, '2016-08-11 10:56:42', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9615,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:35.159793Z","gw_timestamp":2282608411,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlkwMDUxOTAxMjMzMDA1MDav2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10397, '2016-08-11 10:56:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9617,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:56:49.520584Z","gw_timestamp":2296971963,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDQ4OTAxMjMzMDA1MDayCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10401, '2016-08-11 10:57:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9621,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:18.242549Z","gw_timestamp":2325698659,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-73,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlgwMDQ3NzAxMjMzMDA1MDWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10403, '2016-08-11 10:57:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9623,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:32.618793Z","gw_timestamp":2340061171,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDQ4OTAxMjMzMDA1MDWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10405, '2016-08-11 10:57:56', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9625,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:57:46.971051Z","gw_timestamp":2354424835,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDU0MDAxMjMzMDA1MDWyWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10407, '2016-08-11 10:58:19', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9627,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:08.513918Z","gw_timestamp":2375970419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-81,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDUxNTAxMjMzMDA1MDWv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10409, '2016-08-11 10:58:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9630,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:22.889687Z","gw_timestamp":2390333035,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlYwMDUyMjAxMjMzMDA1MDWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10411, '2016-08-11 10:58:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9631,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:30.064932Z","gw_timestamp":2397514867,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDU0NDAxMjMzMDA1MDWwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10413, '2016-08-11 10:58:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9633,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:44.425154Z","gw_timestamp":2411877691,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlUwMDUwNjAxMjMzMDA1MDWwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10417, '2016-08-11 10:59:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9637,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:13.156664Z","gw_timestamp":2440604795,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":6.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUzMTAxMjMzMDA1MDWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10419, '2016-08-11 10:59:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9639,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:27.51392Z","gw_timestamp":2454967627,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFMwMDUxNzAxMjMzMDA1MDWxSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10415, '2016-08-11 10:59:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9635,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:58:58.791371Z","gw_timestamp":2426241243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AlcwMDUyNDAxMjMzMDA1MDWxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10423, '2016-08-11 11:00:14', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9643,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:56.269943Z","gw_timestamp":2483695155,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDUxNzAxMjMzMDA1MDWwiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10425, '2016-08-11 11:00:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9646,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:17.792806Z","gw_timestamp":2505239707,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFYwMDUwNDAxMjMzMDA1MDWw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10427, '2016-08-11 11:00:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9648,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:32.163894Z","gw_timestamp":2519602427,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFowMDUwMDAxMjMzMDA1MDWvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10441, '2016-08-11 11:02:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9662,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:12.708691Z","gw_timestamp":2620144187,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGMwMDUyNDAxMjM0MDA1MDWyyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10443, '2016-08-11 11:02:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9664,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:27.054076Z","gw_timestamp":2634508059,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDUyMjAxMjM0MDA1MDawuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10471, '2016-08-11 11:05:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9690,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:33.78114Z","gw_timestamp":2821228227,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG8wMDUzODAxMjM0MDA1MDSxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10473, '2016-08-11 11:05:42', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":859,"f_cnt_down":1536,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:05:40.994454Z","gw_timestamp":1572800156,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bu0wMDY0MzAxMjQwMDA0NzQIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10483, '2016-08-11 11:07:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9701,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:52.774179Z","gw_timestamp":2900227419,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG4wMDQ4MzAxMjM0MDA1MDSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10489, '2016-08-11 11:07:44', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9707,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:35.858947Z","gw_timestamp":2943316619,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDQ4MzAxMjM0MDA1MDSuqg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10421, '2016-08-11 10:59:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9641,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T10:59:41.879427Z","gw_timestamp":2469331499,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFcwMDQ5NDAxMjMzMDA1MDWxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10429, '2016-08-11 11:00:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9650,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:00:46.520147Z","gw_timestamp":2533966083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFkwMDU0OTAxMjM0MDA1MDWxKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10431, '2016-08-11 11:01:08', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9652,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:00.879171Z","gw_timestamp":2548329851,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AFswMDU0OTAxMjM0MDA1MDWyOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10433, '2016-08-11 11:01:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9654,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:15.246432Z","gw_timestamp":2562692363,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDUzNTAxMjM0MDA1MDWx+w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10435, '2016-08-11 11:01:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9656,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:29.607679Z","gw_timestamp":2577055083,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF0wMDQ4NzAxMjM0MDA1MDWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10437, '2016-08-11 11:01:53', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9658,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:43.969922Z","gw_timestamp":2591417811,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AF4wMDUyMjAxMjM0MDA1MDWwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10439, '2016-08-11 11:02:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9660,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:01:58.335103Z","gw_timestamp":2605781571,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGEwMDUxMzAxMjM0MDA1MDWwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10445, '2016-08-11 11:02:38', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":858,"f_cnt_down":1564,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:42.524801Z","gw_timestamp":23882188,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bx0wMDc2ODAxMjMwMDA1MTgJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10447, '2016-08-11 11:02:50', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9666,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:41.428001Z","gw_timestamp":2648871611,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":11,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGQwMDQ4NzAxMjM0MDA1MDayKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10449, '2016-08-11 11:03:05', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9668,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:55.787309Z","gw_timestamp":2663234539,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGUwMDQ4OTAxMjM0MDA1MDWwew==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10451, '2016-08-11 11:03:20', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9670,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:10.147559Z","gw_timestamp":2677597995,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGkwMDU0NzAxMjM0MDA1MDSvCg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10453, '2016-08-11 11:03:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9672,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:24.51281Z","gw_timestamp":2691960819,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGowMDUwNjAxMjM0MDA1MDSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10455, '2016-08-11 11:03:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9674,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:38.886192Z","gw_timestamp":2706323539,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGgwMDUwMjAxMjM0MDA1MDSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10457, '2016-08-11 11:04:01', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9676,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:53.231302Z","gw_timestamp":2720687091,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGswMDUwMjAxMjM0MDA1MDSxOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10440, '2016-08-11 11:02:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9661,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:05.51681Z","gw_timestamp":2612962563,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-60,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGIwMDUzMzAxMjM0MDA1MDWx2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10450, '2016-08-11 11:03:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9669,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:02.988193Z","gw_timestamp":2670415955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGcwMDUzNTAxMjM0MDA1MDWxuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10452, '2016-08-11 11:03:26', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9671,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:17.331182Z","gw_timestamp":2684778987,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGgwMDQ5NDAxMjM0MDA1MDSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10454, '2016-08-11 11:03:39', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9673,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:31.68542Z","gw_timestamp":2699142547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-64,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGwwMDUwNjAxMjM0MDA1MDSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10456, '2016-08-11 11:03:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9675,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:03:46.04694Z","gw_timestamp":2713505371,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGswMDUxNTAxMjM0MDA1MDSwGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10458, '2016-08-11 11:04:09', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9677,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:00.420695Z","gw_timestamp":2727868715,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-63,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGowMDUyMjAxMjM0MDA1MDOxGw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10460, '2016-08-11 11:04:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9679,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:14.780313Z","gw_timestamp":2742231643,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-59,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG0wMDQ4MzAxMjM0MDA1MDOmyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10468, '2016-08-11 11:05:21', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9687,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:12.226692Z","gw_timestamp":2799683675,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG4wMDQ5MjAxMjM0MDA1MDSwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10470, '2016-08-11 11:05:34', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9689,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:26.600564Z","gw_timestamp":2814047235,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHAwMDUxNzAxMjM0MDA1MDSv2g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10472, '2016-08-11 11:05:42', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":858,"f_cnt_down":1535,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:52:47.255194Z","gw_timestamp":208612580,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bu0wMDY0MzAxMjQwMDA0NzQIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10474, '2016-08-11 11:05:46', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9691,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:40.958817Z","gw_timestamp":2828409955,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHAwMDUwMDAxMjM0MDA1MDSvKg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10478, '2016-08-11 11:06:25', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9695,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:16.86906Z","gw_timestamp":2864318275,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG4wMDUxMzAxMjM0MDA1MDSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10484, '2016-08-11 11:07:11', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9702,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:59.96082Z","gw_timestamp":2907409243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.199999809265137,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGwwMDQ4OTAxMjM0MDA1MDSxiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10444, '2016-08-11 11:02:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9665,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:34.232431Z","gw_timestamp":2641689883,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGAwMDUyNDAxMjM0MDA1MDavug==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10446, '2016-08-11 11:02:43', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":859,"f_cnt_down":1565,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:02:36.264063Z","gw_timestamp":1388069684,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bx0wMDc2ODAxMjMwMDA1MTgJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10448, '2016-08-11 11:02:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9667,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:02:48.608679Z","gw_timestamp":2656053547,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGcwMDQ5MjAxMjM0MDA1MDWxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10462, '2016-08-11 11:04:37', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9681,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:29.137153Z","gw_timestamp":2756594467,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG8wMDU0OTAxMjM0MDA1MDOyKw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10464, '2016-08-11 11:04:54', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9683,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:43.509947Z","gw_timestamp":2770958131,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGswMDU0OTAxMjM0MDA1MDSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10466, '2016-08-11 11:05:07', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9685,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:57.862066Z","gw_timestamp":2785321267,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-78,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG8wMDU0OTAxMjM0MDA1MDSwSw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10476, '2016-08-11 11:06:04', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9693,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:55.338174Z","gw_timestamp":2842772987,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGwwMDUxMTAxMjM0MDA1MDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10480, '2016-08-11 11:06:41', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9698,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:31.233776Z","gw_timestamp":2878681923,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-68,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDUyMjAxMjM0MDA1MDSw2w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10482, '2016-08-11 11:06:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9700,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:45.587821Z","gw_timestamp":2893045587,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-72,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHAwMDUyNDAxMjM0MDA1MDSxmw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10486, '2016-08-11 11:07:23', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9704,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:14.321067Z","gw_timestamp":2921772075,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDUxMTAxMjM0MDA1MDSvyg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10488, '2016-08-11 11:07:36', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9706,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:28.678323Z","gw_timestamp":2936134795,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-75,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDUxNzAxMjM0MDA1MDSv+g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10490, '2016-08-11 11:07:51', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9708,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:43.051839Z","gw_timestamp":2950498355,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHQwMDQ5MjAxMjM0MDA1MDSyiw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10459, '2016-08-11 11:04:16', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9678,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:07.603683Z","gw_timestamp":2735049811,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-62,"snr":10,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG0wMDUxMzAxMjM0MDA1MDOwuw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10461, '2016-08-11 11:04:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9680,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:21.956938Z","gw_timestamp":2749412643,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG0wMDU0MDAxMjM0MDA1MDOvGg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10463, '2016-08-11 11:04:43', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9682,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:36.32819Z","gw_timestamp":2763776195,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG4wMDU0NzAxMjM0MDA1MDOxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10465, '2016-08-11 11:04:59', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9684,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:04:50.681429Z","gw_timestamp":2778140067,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-71,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AGwwMDUyNjAxMjM0MDA1MDSwyw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10467, '2016-08-11 11:05:13', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9686,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:05.043682Z","gw_timestamp":2792502675,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHAwMDQ3MTAxMjM0MDA1MDSzCw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10469, '2016-08-11 11:05:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9688,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:19.438196Z","gw_timestamp":2806865403,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-66,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG4wMDUzNTAxMjM0MDA1MDSseg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10475, '2016-08-11 11:05:55', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9692,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:05:48.155582Z","gw_timestamp":2835591787,"frequency":868.3,"channel":1,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-69,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHIwMDUwMDAxMjM0MDA1MDSvWg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10477, '2016-08-11 11:06:22', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9694,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:02.505692Z","gw_timestamp":2849954507,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDUzMzAxMjM0MDA1MDSv6g==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10479, '2016-08-11 11:06:33', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9697,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:24.054667Z","gw_timestamp":2871500099,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-67,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDUwNDAxMjM0MDA1MDSxaw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10481, '2016-08-11 11:06:47', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9699,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:06:38.40494Z","gw_timestamp":2885863763,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-79,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG0wMDUyNDAxMjM0MDA1MDSwqw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10485, '2016-08-11 11:07:15', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9703,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:07.139708Z","gw_timestamp":2914590243,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-65,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AG4wMDUxOTAxMjM0MDA1MDSwOw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10487, '2016-08-11 11:07:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9705,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:21.497689Z","gw_timestamp":2928953803,"frequency":868.1,"channel":0,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHIwMDUxOTAxMjM0MDA1MDSvmg==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10491, '2016-08-11 11:07:58', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9709,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:50.219195Z","gw_timestamp":2957680179,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHEwMDQ5ODAxMjM0MDA1MDSw6w==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10492, '2016-08-11 11:09:30', '{"dev_eui":"008000000000b19b","DevAddr":"25565350","f_port":1,"f_cnt_up":9710,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"0080000000009a77","gw_time":"2016-08-11T11:07:57.424073Z","gw_timestamp":2964862115,"frequency":868.5,"channel":2,"rf_chain":0,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-70,"snr":7.2,"size":32,"data_rate":{"LoRa":"SF7BW125","FSK":0}}},"data":"AHMwMDUwMjAxMjM0MDA1MDSxWw==","topic":"iot-2/type/mDot/id/HIE-demo/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10493, '2016-08-11 11:10:56', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1338,"f_cnt_down":2145,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:09:29.631722Z","gw_timestamp":1801437524,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6MwMDg0NDAxMjMyMDA0ODgIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10494, '2016-08-11 11:14:26', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":775,"f_cnt_down":1364,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:14:00.336747Z","gw_timestamp":2072142668,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ac8wMDY3MTAxMjI3MDA1MzUIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10495, '2016-08-11 11:14:56', '{"dev_eui":"008000000000b1a3","DevAddr":"25b21276","f_port":1,"f_cnt_up":777,"f_cnt_down":1365,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:14:25.019278Z","gw_timestamp":2096825212,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:01:31.280033Z","gw_timestamp":732637420,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-14.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ac8wMDY3MTAxMjI3MDA1MzUIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10496, '2016-08-11 11:17:48', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":859,"f_cnt_down":1566,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:17:47.057072Z","gw_timestamp":2298863092,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BrEwMDc0MTAxMjMyMDA1MTgGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10497, '2016-08-11 11:18:13', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":860,"f_cnt_down":1567,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:53.317817Z","gw_timestamp":934675204,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BrEwMDc0MTAxMjMyMDA1MTgGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10498, '2016-08-11 11:18:37', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":860,"f_cnt_down":1568,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:18:11.739229Z","gw_timestamp":2323545260,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BrEwMDc0MTAxMjMyMDA1MTgGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10499, '2016-08-11 11:20:52', '{"dev_eui":"008000000000b1a6","DevAddr":"250bd388","f_port":1,"f_cnt_up":861,"f_cnt_down":1569,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:18:36.421802Z","gw_timestamp":2348227844,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BrEwMDc0MTAxMjMyMDA1MTgGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10500, '2016-08-11 11:21:06', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":859,"f_cnt_down":1537,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:20:51.842685Z","gw_timestamp":2483648788,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:07:58.103442Z","gw_timestamp":1119460828,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/AwMDYyMzAxMjQwMDA0NzgMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10501, '2016-08-11 11:21:42', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":860,"f_cnt_down":1538,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:21:16.524874Z","gw_timestamp":2508330988,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":-1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:22.785633Z","gw_timestamp":1144143020,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-14,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/AwMDYyMzAxMjQwMDA0NzgMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10502, '2016-08-11 11:21:43', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":861,"f_cnt_down":1539,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:47.468138Z","gw_timestamp":1168825524,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-3.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/AwMDYyMzAxMjQwMDA0NzgMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10503, '2016-08-11 11:22:51', '{"dev_eui":"008000000000b1a0","DevAddr":"24542e3e","f_port":1,"f_cnt_up":862,"f_cnt_down":1540,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:21:41.207385Z","gw_timestamp":2533013508,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/AwMDYyMzAxMjQwMDA0NzgMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10504, '2016-08-11 11:25:06', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1339,"f_cnt_down":2146,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:24:40.471969Z","gw_timestamp":2712278172,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ak8wMDgwNzAxMjM0MDA0ODkHEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10505, '2016-08-11 11:25:30', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1340,"f_cnt_down":2147,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:25:05.15432Z","gw_timestamp":2736960532,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ak8wMDgwNzAxMjM0MDA0ODkHEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10506, '2016-08-11 11:25:50', '{"dev_eui":"008000000000b1a4","DevAddr":"246818cb","f_port":1,"f_cnt_up":1341,"f_cnt_down":2148,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T11:25:29.836877Z","gw_timestamp":2761643100,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ak8wMDgwNzAxMjM0MDA0ODkHEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10507, '2016-08-11 12:37:43', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":0,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:37:40.752046Z","gw_timestamp":2797592900,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AaUwMDU1NTAxMjI3MDA1NDUFsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10508, '2016-08-11 12:37:45', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":0,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:37:40.805254Z","gw_timestamp":2797646108,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BjEwMDYxNTAxMjMzMDA1MjUFgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10509, '2016-08-11 12:38:34', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":1,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:38:30.170415Z","gw_timestamp":2847011292,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BjEwMDYxNTAxMjMzMDA1MjUFgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10510, '2016-08-11 12:40:23', '{"dev_eui":"008000000000b1a4","DevAddr":"259ed50b","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:40:14.440049Z","gw_timestamp":2951280972,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AnYwMDY1ODAxMjM3MDA0ODYMEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10511, '2016-08-11 12:40:44', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":0,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:16:13.918978Z","gw_timestamp":1615276364,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-110,"snr":-13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A80wMDU0OTAxMjQxMDA0OTAZQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10512, '2016-08-11 12:40:50', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":1,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:40:42.625438Z","gw_timestamp":2979466372,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A80wMDU0OTAxMjQxMDA0OTAZQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10513, '2016-08-11 12:52:53', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:52:51.540353Z","gw_timestamp":3708381612,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AgIwMDU3NDAxMjI4MDA1NDYGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10514, '2016-08-11 12:52:53', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":3,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:28:22.833905Z","gw_timestamp":2344191292,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AgIwMDU3NDAxMjI4MDA1NDYGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10515, '2016-08-11 12:53:21', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":3,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:53:16.223102Z","gw_timestamp":3733064372,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-98,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AgIwMDU3NDAxMjI4MDA1NDYGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10516, '2016-08-11 12:55:28', '{"dev_eui":"008000000000b1a4","DevAddr":"259ed50b","f_port":1,"f_cnt_up":2,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:55:25.280843Z","gw_timestamp":3862122172,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6swMDY4NDAxMjM2MDA0OTAKkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10517, '2016-08-11 12:55:56', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":1,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T12:55:53.479816Z","gw_timestamp":3890321156,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:31:24.773369Z","gw_timestamp":2526130756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-3.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BmAwMDU3ODAxMjQwMDA0OTUIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10518, '2016-08-11 13:08:36', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":4,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T13:08:27.012833Z","gw_timestamp":348887212,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AIswMDU4MTAxMjI3MDA1MjIGIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10519, '2016-08-11 13:11:02', '{"dev_eui":"008000000000b1a4","DevAddr":"259ed50b","f_port":1,"f_cnt_up":3,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:34:57.123121Z","gw_timestamp":3433447804,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BPEwMDYyMzAxMjM2MDA0OTIIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10520, '2016-08-11 13:11:02', '{"dev_eui":"008000000000b1a4","DevAddr":"259ed50b","f_port":1,"f_cnt_up":5,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T13:11:00.796853Z","gw_timestamp":502671300,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BPEwMDYyMzAxMjM2MDA0OTIIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10521, '2016-08-11 13:11:09', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":2,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:00.661058Z","gw_timestamp":3436985740,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bv0wMDYxMTAxMjQwMDA1MDEIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10522, '2016-08-11 13:11:27', '{"dev_eui":"008000000000b1a4","DevAddr":"259ed50b","f_port":1,"f_cnt_up":5,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T13:11:25.479418Z","gw_timestamp":527353876,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BPEwMDYyMzAxMjM2MDA0OTIIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10523, '2016-08-11 13:11:37', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":3,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:25.343146Z","gw_timestamp":3461667828,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bv0wMDYxMTAxMjQwMDA1MDEIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10524, '2016-08-11 13:11:55', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":4,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T13:11:53.699388Z","gw_timestamp":555573860,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bv0wMDYxMTAxMjQwMDA1MDEIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10525, '2016-08-11 13:12:03', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":5,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:50.025658Z","gw_timestamp":3486350340,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":-9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Bv0wMDYxMTAxMjQwMDA1MDEIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10526, '2016-08-11 13:14:08', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T13:13:59.076637Z","gw_timestamp":680951164,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BPEwMDYyMzAxMjM2MDA0OTIIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10527, '2016-08-11 13:16:33', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":5,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T13:16:28.805188Z","gw_timestamp":830679780,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ANswMDczNjAxMjI0MDA1MzME8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10528, '2016-08-11 14:01:19', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":1,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:01:16.342031Z","gw_timestamp":3518217804,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-106,"snr":-2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDgwMzAxMjU1MDA0NzKaKQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10529, '2016-08-11 14:02:52', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":10,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:26:46.88553Z","gw_timestamp":2248242916,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AR4wMDgzMjAxMjI2MDA1MzIIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10530, '2016-08-11 14:02:52', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":11,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:02:50.559246Z","gw_timestamp":3612435060,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AR4wMDgzMjAxMjI2MDA1MzIIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10531, '2016-08-11 14:03:19', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":11,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:03:15.241677Z","gw_timestamp":3637117500,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AR4wMDgzMjAxMjI2MDA1MzIIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10532, '2016-08-11 14:14:00', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":8,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:13:56.152473Z","gw_timestamp":4278028572,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":13.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BhowMDg4MjAxMjQ4MDA1MDAUkQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10533, '2016-08-11 14:14:29', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":9,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:14:20.835197Z","gw_timestamp":7744012,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BhowMDg4MjAxMjQ4MDA1MDAUkQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10534, '2016-08-11 14:15:40', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":5,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:15:31.775312Z","gw_timestamp":78684156,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BY0wMDgyOTAxMjQxMDA0OTAFoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10535, '2016-08-11 14:16:53', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":2,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:16:51.81014Z","gw_timestamp":158719020,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CE8wMDkwNjAxMjQ3MDA1MDkIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10536, '2016-08-11 14:17:21', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":4,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:17:16.492731Z","gw_timestamp":183401620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CE8wMDkwNjAxMjQ3MDA1MDkIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10537, '2016-08-11 14:18:28', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":12,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:18:26.033836Z","gw_timestamp":252942756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApgwMDc2MjAxMjIwMDA1NTcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10538, '2016-08-11 14:18:36', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":13,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:30:47.392826Z","gw_timestamp":3183717508,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApgwMDc2MjAxMjIwMDA1NTcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10539, '2016-08-11 14:18:53', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":13,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:18:50.716257Z","gw_timestamp":277625188,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApgwMDc2MjAxMjIwMDA1NTcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10540, '2016-08-11 14:29:41', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":10,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:29:31.693414Z","gw_timestamp":918602620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:41:53.052402Z","gw_timestamp":3849377084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ba8wMDg2OTAxMjQ5MDA1MDkIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10541, '2016-08-11 14:30:44', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":7,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:43:03.968425Z","gw_timestamp":3920293108,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-107,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CGAwMDk3NDAxMjQ1MDA0OTUF0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10542, '2016-08-11 14:32:28', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":8,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:30:42.609439Z","gw_timestamp":989518676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CGAwMDk3NDAxMjQ1MDA0OTUF0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10543, '2016-08-11 14:32:29', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":5,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:44:48.636201Z","gw_timestamp":4024960884,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CNgwMDg0NDAxMjUwMDA1MTAHIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10544, '2016-08-11 14:33:11', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":6,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:32:27.277216Z","gw_timestamp":1094186500,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CNgwMDg0NDAxMjUwMDA1MTAHIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10545, '2016-08-11 14:36:22', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":14,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:34:26.19631Z","gw_timestamp":1213105644,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjQwMDc3MTAxMjIyMDA1NzcIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10546, '2016-08-11 14:44:44', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":11,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:03.907786Z","gw_timestamp":465265172,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/0wMDgzNDAxMjQ5MDA1MDIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10547, '2016-08-11 14:45:08', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":12,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:44:42.548795Z","gw_timestamp":1829458396,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/0wMDgzNDAxMjQ5MDA1MDIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10548, '2016-08-11 14:45:33', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":12,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:28.590506Z","gw_timestamp":489947892,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/0wMDgzNDAxMjQ5MDA1MDIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10549, '2016-08-11 14:45:33', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":13,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:45:31.913926Z","gw_timestamp":1878823548,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/0wMDgzNDAxMjQ5MDA1MDIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10550, '2016-08-11 14:45:54', '{"dev_eui":"008000000000b1a0","DevAddr":"24dc93ce","f_port":1,"f_cnt_up":14,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:53.272914Z","gw_timestamp":514630300,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/0wMDgzNDAxMjQ5MDA1MDIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10551, '2016-08-11 14:46:24', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":8,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:45:53.468475Z","gw_timestamp":1900378108,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:58:14.827466Z","gw_timestamp":536184852,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"DJ8wMDg3OTAxMjQ1MDA0ODkGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10552, '2016-08-11 14:47:39', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":0,"f_cnt_down":0,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:47:20.234343Z","gw_timestamp":1987144012,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/0wMDgzNDAxMjQ5MDA1MDIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10553, '2016-08-11 14:47:41', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":6,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:47:38.060933Z","gw_timestamp":2004970612,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BbcwMDgwNjAxMjUwMDA1MDMFQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10554, '2016-08-11 14:49:38', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":16,"f_cnt_down":19,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:01:58.347322Z","gw_timestamp":759704708,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApAwMDgwNDAxMjI3MDA1NjUIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10555, '2016-08-11 14:50:02', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":17,"f_cnt_down":20,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:49:36.988324Z","gw_timestamp":2123898052,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApAwMDgwNDAxMjI3MDA1NjUIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10556, '2016-08-11 14:51:13', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":17,"f_cnt_down":21,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T14:50:01.67044Z","gw_timestamp":2148580180,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ApAwMDgwNDAxMjI3MDA1NjUIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10557, '2016-08-11 15:02:32', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":9,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:01:04.304723Z","gw_timestamp":2811214748,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ClIwMDgwNTAxMjQ1MDA0ODYGoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10558, '2016-08-11 15:02:32', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":0,"f_cnt_down":1,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:02:31.089893Z","gw_timestamp":2897999956,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BZ8wMDcwMjAxMjUxMDA0OTQH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10559, '2016-08-11 15:02:50', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":1,"f_cnt_down":2,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:14:52.44889Z","gw_timestamp":1533806276,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-5.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BZ8wMDcwMjAxMjUxMDA0OTQH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10560, '2016-08-11 15:04:50', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":7,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:02:48.85219Z","gw_timestamp":2915762260,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-111,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:10.211185Z","gw_timestamp":1551568572,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"CGgwMDcxMDAxMjUzMDA0OTUKEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10561, '2016-08-11 15:05:39', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":18,"f_cnt_down":22,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:05:12.471823Z","gw_timestamp":3059381956,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:17:33.830817Z","gw_timestamp":1695188204,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkAwMDkyNDAxMjI0MDA1MzMGkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10562, '2016-08-11 15:06:27', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":19,"f_cnt_down":23,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:05:37.154454Z","gw_timestamp":3084064596,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkAwMDkyNDAxMjI0MDA1MzMGkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10563, '2016-08-11 15:16:28', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":10,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:16:15.152849Z","gw_timestamp":3722063268,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BAMwMDkwMzAxMjQ0MDA0ODEMcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10564, '2016-08-11 15:17:42', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":11,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:16:39.834897Z","gw_timestamp":3746745324,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BAMwMDkwMzAxMjQ0MDA0ODEMcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10565, '2016-08-11 15:17:43', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":1,"f_cnt_down":3,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:17:41.945678Z","gw_timestamp":3808856132,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BVswMDY0NzAxMjUxMDA0ODgHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10566, '2016-08-11 15:18:00', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":2,"f_cnt_down":4,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:03.304673Z","gw_timestamp":2444662060,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BVswMDY0NzAxMjUxMDA0ODgHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10567, '2016-08-11 15:18:01', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":8,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:17:59.636981Z","gw_timestamp":3826547444,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-107,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"B/swMDYzMDAxMjUzMDA0ODgHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10568, '2016-08-11 15:18:15', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":9,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:20.995977Z","gw_timestamp":2462353364,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"B/swMDYzMDAxMjUzMDA0ODgHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10569, '2016-08-11 15:25:10', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":20,"f_cnt_down":24,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:20:48.53694Z","gw_timestamp":3995447476,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-90,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:33:09.895945Z","gw_timestamp":2631253332,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjIwMDkxNzAxMjIzMDA1NzcH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10570, '2016-08-11 15:32:54', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":12,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:31:50.677183Z","gw_timestamp":362620708,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"B44wMDc5OTAxMjQzMDA0ODQKkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10571, '2016-08-11 15:33:11', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":2,"f_cnt_down":5,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:32:52.809892Z","gw_timestamp":424753444,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6IwMDY1MjAxMjUxMDA0ODUHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10572, '2016-08-11 15:33:11', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":9,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:33:10.421982Z","gw_timestamp":442365540,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNowMDY0NzAxMjUzMDA0ODUFoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10573, '2016-08-11 15:35:19', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":10,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:33:56.813673Z","gw_timestamp":3373138356,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNowMDY0NzAxMjUzMDA0ODUFoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10574, '2016-08-11 15:36:32', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":21,"f_cnt_down":25,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:35:59.329717Z","gw_timestamp":611273348,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:45.721417Z","gw_timestamp":3542046100,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Al4wMDk4MjAxMjI3MDA1ODIH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10575, '2016-08-11 15:48:05', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":13,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:47:01.515278Z","gw_timestamp":1273459196,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BZAwMDgzMDAxMjQyMDA0OTAHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10576, '2016-08-11 15:48:22', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":3,"f_cnt_down":6,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:48:03.669253Z","gw_timestamp":1335613196,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6MwMDY2MzAxMjUxMDA0ODUHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10577, '2016-08-11 15:48:23', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":10,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:07.601329Z","gw_timestamp":4283926012,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNYwMDYxNzAxMjUzMDA0ODYFQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10578, '2016-08-11 15:51:11', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":11,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:48:21.209629Z","gw_timestamp":1353153580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNYwMDYxNzAxMjUzMDA0ODYFQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10579, '2016-08-11 15:51:12', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":22,"f_cnt_down":26,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:51:56.51645Z","gw_timestamp":157873836,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AmkwMDk3ODAxMjI5MDA1NjcPIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10580, '2016-08-11 15:54:18', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":23,"f_cnt_down":27,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T15:51:10.124746Z","gw_timestamp":1522068772,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AmkwMDk3ODAxMjI5MDA1NjcPIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10581, '2016-08-11 16:03:15', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":4,"f_cnt_down":7,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:03:14.529674Z","gw_timestamp":2246474012,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A5cwMDYxMjAxMjUxMDA0ODYRYQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10582, '2016-08-11 16:03:16', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":14,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:02:12.353757Z","gw_timestamp":2184298068,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":6.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BpkwMDkyMDAxMjQyMDA0OTMRYQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10583, '2016-08-11 16:03:19', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":5,"f_cnt_down":8,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:00.921378Z","gw_timestamp":882278764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A5cwMDYxMjAxMjUxMDA0ODYRYQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10584, '2016-08-11 16:03:54', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":11,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:03:31.997555Z","gw_timestamp":2263941900,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-112,"snr":3.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BNswMDY1ODAxMjUyMDA0ODYQAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10585, '2016-08-11 16:06:37', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":23,"f_cnt_down":28,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:06:20.923496Z","gw_timestamp":2432867916,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:07:07.315202Z","gw_timestamp":1068672588,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AiQwMDk1NDAxMjIyMDA1MTEJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10586, '2016-08-11 16:12:20', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":24,"f_cnt_down":29,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:06:45.605805Z","gw_timestamp":2457550236,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-100,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AiQwMDk1NDAxMjIyMDA1MTEJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10587, '2016-08-11 16:18:26', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":15,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:17:23.189992Z","gw_timestamp":3095134700,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BBMwMTAzOTAxMjQyMDA0ODgIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10588, '2016-08-11 16:18:44', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":5,"f_cnt_down":9,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:18:25.387613Z","gw_timestamp":3157332348,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:19:11.779329Z","gw_timestamp":1793136716,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AykwMDY3NDAxMjUwMDA0ODUG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10589, '2016-08-11 16:21:21', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":12,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:18:42.785023Z","gw_timestamp":3174729764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:19:29.17673Z","gw_timestamp":1810534116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BCQwMDYwMzAxMjUyMDA0ODUGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10590, '2016-08-11 16:21:58', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":25,"f_cnt_down":30,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:21:56.414283Z","gw_timestamp":3368359108,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGgwMDg3NDAxMjE5MDA1MDgK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10591, '2016-08-11 16:22:01', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":26,"f_cnt_down":31,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:22:42.805993Z","gw_timestamp":2004163380,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGgwMDg3NDAxMjE5MDA1MDgK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10592, '2016-08-11 16:33:37', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":16,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:32:34.02651Z","gw_timestamp":4005971612,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AwowMDg3OTAxMjQxMDA0ODEGwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10593, '2016-08-11 16:33:54', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":13,"f_cnt_down":19,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:23:04.998162Z","gw_timestamp":2721322844,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BAYwMDY1ODAxMjUxMDA0ODQFsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10594, '2016-08-11 16:33:54', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":6,"f_cnt_down":10,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:33:36.248298Z","gw_timestamp":4068193428,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:22:47.672722Z","gw_timestamp":2703997404,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AxswMDY1ODAxMjUwMDA0ODMaEQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10595, '2016-08-11 16:34:19', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":14,"f_cnt_down":20,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:33:53.573732Z","gw_timestamp":4085518868,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BAYwMDY1ODAxMjUxMDA0ODQFsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10596, '2016-08-11 16:36:19', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":14,"f_cnt_down":21,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:34:18.255696Z","gw_timestamp":4110200844,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":6.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BAYwMDY1ODAxMjUxMDA0ODQFsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10597, '2016-08-11 16:39:23', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":26,"f_cnt_down":32,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:26:18.63149Z","gw_timestamp":2914956172,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEkwMDc0NzAxMjE4MDA0OTAXsQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10598, '2016-08-11 16:48:23', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":17,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:47:44.865314Z","gw_timestamp":621843516,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AcQwMDg2OTAxMjQwMDA0NzII4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10599, '2016-08-11 16:49:12', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":7,"f_cnt_down":11,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:37:58.531018Z","gw_timestamp":3614855700,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":-14.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Av4wMDY1NTAxMjQ5MDA0ODEIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10600, '2016-08-11 16:52:19', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":15,"f_cnt_down":22,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:49:29.045876Z","gw_timestamp":726024124,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A94wMDY3MjAxMjUwMDA0ODEGMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10601, '2016-08-11 16:56:38', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":27,"f_cnt_down":33,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T16:52:18.007978Z","gw_timestamp":894986300,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-104,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEIwMDY3NjAxMjE2MDA0NzITEQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10602, '2016-08-11 17:03:21', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":18,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:52:07.131249Z","gw_timestamp":168488636,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArEwMDc0NDAxMjM4MDA0NjgHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10603, '2016-08-11 17:03:22', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":19,"f_cnt_down":19,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:03:20.38863Z","gw_timestamp":1557367244,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArEwMDc0NDAxMjM4MDA0NjgHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10604, '2016-08-11 17:03:58', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":20,"f_cnt_down":20,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:52:31.813073Z","gw_timestamp":193170460,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-10.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ArEwMDc0NDAxMjM4MDA0NjgHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10605, '2016-08-11 17:04:40', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":16,"f_cnt_down":23,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:53:51.257209Z","gw_timestamp":272614596,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-87,"snr":-7.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AQ4wMDU5MjAxMjQ5MDA0ODAGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10606, '2016-08-11 17:04:40', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":8,"f_cnt_down":12,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:53:09.393602Z","gw_timestamp":230750988,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHIwMDYxNDAxMjQ4MDA0NzkM4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10607, '2016-08-11 17:06:23', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":17,"f_cnt_down":24,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:04:39.832771Z","gw_timestamp":1636811420,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AQ4wMDU5MjAxMjQ5MDA0ODAGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10608, '2016-08-11 17:07:29', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":28,"f_cnt_down":34,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:56:40.227265Z","gw_timestamp":441584652,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADswMDY0NDAxMjE2MDA1MDcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10609, '2016-08-11 17:15:24', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":29,"f_cnt_down":35,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:07:28.802823Z","gw_timestamp":1805781548,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADswMDY0NDAxMjE2MDA1MDcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10610, '2016-08-11 17:19:09', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":9,"f_cnt_down":13,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:20.254186Z","gw_timestamp":1141611572,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-4.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjwwMDYwMjAxMjQ4MDA0NzkIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10611, '2016-08-11 17:19:09', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":20,"f_cnt_down":21,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:18:31.240546Z","gw_timestamp":2468219564,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A3EwMDczMDAxMjM2MDA0NzEHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10612, '2016-08-11 17:19:51', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":10,"f_cnt_down":14,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:19:08.829728Z","gw_timestamp":2505808764,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AjwwMDYwMjAxMjQ4MDA0NzkIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10613, '2016-08-11 17:19:52', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":17,"f_cnt_down":25,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:09:02.046961Z","gw_timestamp":1183404348,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-125,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BGkwMDU1NTAxMjQ4MDA0ODEFMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10614, '2016-08-11 17:22:40', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":18,"f_cnt_down":26,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:19:50.622511Z","gw_timestamp":2547601564,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-106,"snr":6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BGkwMDU1NTAxMjQ4MDA0ODEFMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10615, '2016-08-11 17:24:25', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":29,"f_cnt_down":36,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:22:39.595196Z","gw_timestamp":2716574324,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AagwMDYxMzAxMjE3MDA1MDQGcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10616, '2016-08-11 17:34:21', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":21,"f_cnt_down":22,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:33:42.696525Z","gw_timestamp":3379675948,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A2gwMDczODAxMjM1MDA0NzEJIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10617, '2016-08-11 17:34:30', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":10,"f_cnt_down":15,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:34:19.693235Z","gw_timestamp":3416672676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:31.117698Z","gw_timestamp":2052475084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AqYwMDU5MDAxMjQ4MDA0NzkKEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10618, '2016-08-11 17:36:52', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":18,"f_cnt_down":27,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:35:01.412384Z","gw_timestamp":3458391844,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BK0wMDU3MTAxMjQ3MDA0ODAHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10619, '2016-08-11 17:42:27', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":30,"f_cnt_down":37,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:27:01.812154Z","gw_timestamp":2263169540,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AYkwMDYxMDAxMjE2MDA0NzYGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10620, '2016-08-11 17:49:32', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":22,"f_cnt_down":23,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:48:53.539342Z","gw_timestamp":4290519172,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkgwMDY3MzAxMjM0MDA0NjgJcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10621, '2016-08-11 17:50:13', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":11,"f_cnt_down":16,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:49:30.55606Z","gw_timestamp":32568612,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGgwMDU0OTAxMjQ2MDA0NzkLIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10622, '2016-08-11 17:51:27', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":19,"f_cnt_down":28,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:50:12.201059Z","gw_timestamp":74213628,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:27:48.658241Z","gw_timestamp":3004982924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ANMwMDU2ODAxMjQ2MDA0ODIF8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10623, '2016-08-11 17:53:26', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":31,"f_cnt_down":38,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:53:01.180445Z","gw_timestamp":243193092,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXQwMDU4OTAxMjE1MDA0NjUGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10624, '2016-08-11 17:53:27', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":32,"f_cnt_down":39,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:02.319937Z","gw_timestamp":3198644620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-12.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXQwMDU4OTAxMjE1MDA0NjUGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10625, '2016-08-11 17:56:55', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":33,"f_cnt_down":40,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T17:53:25.862755Z","gw_timestamp":267875412,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AXQwMDU4OTAxMjE1MDA0NjUGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10626, '2016-08-11 18:04:42', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":23,"f_cnt_down":24,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:04:04.380715Z","gw_timestamp":906393660,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Am8wMDY3MzAxMjM0MDA0NjURgQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10627, '2016-08-11 18:05:24', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":12,"f_cnt_down":17,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:04:41.415172Z","gw_timestamp":943428132,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"An0wMDU2NDAxMjQ2MDA0NzkOAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10628, '2016-08-11 18:05:25', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":20,"f_cnt_down":29,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:42:59.446234Z","gw_timestamp":3915770916,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BH8wMDUzNTAxMjQ2MDA0ODIHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10629, '2016-08-11 18:06:57', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":21,"f_cnt_down":30,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:05:22.989041Z","gw_timestamp":985002020,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":5.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BH8wMDUzNTAxMjQ2MDA0ODIHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10630, '2016-08-11 18:09:29', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":33,"f_cnt_down":41,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:08:36.655393Z","gw_timestamp":1178668460,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:13.112593Z","gw_timestamp":4109437276,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACwwMDU2OTAxMjE0MDA0NTYPAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10631, '2016-08-11 18:19:50', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":24,"f_cnt_down":25,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:19:15.220788Z","gw_timestamp":1817234148,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AkIwMDY0MjAxMjMzMDA0NjMHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10632, '2016-08-11 18:20:35', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":13,"f_cnt_down":18,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:19:52.274819Z","gw_timestamp":1854288196,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:28.732042Z","gw_timestamp":490089428,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-4.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGEwMDUzNjAxMjQ1MDA0ODEKMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10633, '2016-08-11 18:23:49', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":21,"f_cnt_down":31,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:20:33.78796Z","gw_timestamp":1895801356,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMcwMDU0ODAxMjQ1MDA0ODMLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10634, '2016-08-11 18:24:13', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":34,"f_cnt_down":42,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:23:47.447464Z","gw_timestamp":2089460948,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD8wMDU4OTAxMjE0MDA1MDEH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10635, '2016-08-11 18:24:14', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":35,"f_cnt_down":43,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:01:48.587202Z","gw_timestamp":749944588,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD8wMDU4OTAxMjE0MDA1MDEH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10636, '2016-08-11 18:27:01', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":36,"f_cnt_down":44,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:24:12.12998Z","gw_timestamp":2114143476,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD8wMDU4OTAxMjE0MDA1MDEH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10637, '2016-08-11 18:35:04', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":25,"f_cnt_down":26,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:34:26.057849Z","gw_timestamp":2728071628,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ak8wMDYwMzAxMjMyMDA0NjkIYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10638, '2016-08-11 18:35:46', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":14,"f_cnt_down":19,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:35:03.133928Z","gw_timestamp":2765147724,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDUxNDAxMjQ0MDA0ODQKQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10639, '2016-08-11 18:37:02', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":22,"f_cnt_down":32,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:35:44.575947Z","gw_timestamp":2806589764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-113,"snr":7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMgwMDUwNDAxMjQ0MDA0ODYHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10640, '2016-08-11 18:45:33', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":36,"f_cnt_down":45,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:39:22.927678Z","gw_timestamp":3024941596,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD0wMDU0MDAxMjE1MDA1MDAN0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10641, '2016-08-11 18:50:16', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":26,"f_cnt_down":27,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:49:36.894306Z","gw_timestamp":3638908508,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AwUwMDYwMTAxMjMxMDA0NzEIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10642, '2016-08-11 18:50:56', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":15,"f_cnt_down":20,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:50:14.701511Z","gw_timestamp":3676715732,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGEwMDU0MzAxMjQzMDA0ODYSQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10643, '2016-08-11 18:54:33', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":23,"f_cnt_down":33,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:50:55.363437Z","gw_timestamp":3717377676,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ANowMDUxNzAxMjQzMDA0ODcGEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10644, '2016-08-11 18:56:04', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":37,"f_cnt_down":46,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T18:54:33.723016Z","gw_timestamp":3935737356,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEMwMDU2NDAxMjE0MDA0NjkHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10645, '2016-08-11 19:05:08', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":27,"f_cnt_down":28,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:04:47.732354Z","gw_timestamp":254779684,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AZwwMDU1NzAxMjMwMDA0NjgG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10646, '2016-08-11 19:06:07', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":16,"f_cnt_down":21,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:05:25.564456Z","gw_timestamp":292611804,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:27.054449Z","gw_timestamp":3223379132,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEMwMDUyODAxMjQyMDA0ODUM8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10647, '2016-08-11 19:07:07', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":24,"f_cnt_down":34,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:06:06.151107Z","gw_timestamp":333198476,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-107,"snr":8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:32:07.641106Z","gw_timestamp":3263965788,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AKMwMDU3MjAxMjQyMDA0ODcHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10648, '2016-08-11 19:12:35', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":38,"f_cnt_down":47,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:09:44.52043Z","gw_timestamp":551567900,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:46.010434Z","gw_timestamp":3482335116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADowMDU2MDAxMjEyMDA1MDQHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10649, '2016-08-11 19:20:37', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":28,"f_cnt_down":29,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:19:58.569738Z","gw_timestamp":1165617492,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ASYwMDU4MzAxMjI5MDA0NzEG4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10650, '2016-08-11 19:21:18', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":17,"f_cnt_down":22,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:20:36.427431Z","gw_timestamp":1203475204,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":13.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADUwMDUyODAxMjQxMDA0ODEKYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10651, '2016-08-11 19:21:36', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":25,"f_cnt_down":35,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:21:16.939172Z","gw_timestamp":1243986964,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:47:18.429202Z","gw_timestamp":4174753884,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AIQwMDU0NTAxMjQxMDA0ODMHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10652, '2016-08-11 19:27:10', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":39,"f_cnt_down":48,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:24:55.319958Z","gw_timestamp":1462367852,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABcwMDUxNTAxMjE0MDA1MTcGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10653, '2016-08-11 19:35:48', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":29,"f_cnt_down":30,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:35:09.410946Z","gw_timestamp":2076459124,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AI0wMDU1NTAxMjI4MDA0NzUHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10654, '2016-08-11 19:36:29', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":18,"f_cnt_down":23,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:35:47.298632Z","gw_timestamp":2114346828,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACMwMDUzMTAxMjQxMDA0NzgJIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10655, '2016-08-11 19:36:54', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":26,"f_cnt_down":36,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:02:29.215482Z","gw_timestamp":790572868,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGUwMDUzNzAxMjQxMDA0ODAHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10656, '2016-08-11 19:37:12', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":27,"f_cnt_down":37,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:36:52.407906Z","gw_timestamp":2179456132,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-6.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGUwMDUzNzAxMjQxMDA0ODAHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10657, '2016-08-11 19:41:22', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":40,"f_cnt_down":49,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:06:07.606201Z","gw_timestamp":1008963588,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAkwMDUyMzAxMjE0MDA0NzkL0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10658, '2016-08-11 19:50:26', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":30,"f_cnt_down":31,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:50:20.250851Z","gw_timestamp":2987299452,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACQwMDYwMDAxMjI3MDA0NzIIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10659, '2016-08-11 19:51:00', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":19,"f_cnt_down":24,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:16:59.65173Z","gw_timestamp":1661009116,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABkwMDUyMDAxMjQwMDA0NzQLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10660, '2016-08-11 19:52:05', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":20,"f_cnt_down":25,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:50:58.16165Z","gw_timestamp":3025210268,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABkwMDUyMDAxMjQwMDA0NzQLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10661, '2016-08-11 19:52:05', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":28,"f_cnt_down":38,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:18:05.334649Z","gw_timestamp":1726692036,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFQwMDU1MTAxMjQwMDA0NzUHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10662, '2016-08-11 19:55:17', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":29,"f_cnt_down":39,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:52:03.844571Z","gw_timestamp":3090893220,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFQwMDU1MTAxMjQwMDA0NzUHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10663, '2016-08-11 19:55:18', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":41,"f_cnt_down":50,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:18.408097Z","gw_timestamp":1919765484,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU0MDAxMjExMDA0ODYLMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10664, '2016-08-11 19:57:16', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":42,"f_cnt_down":51,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T19:55:16.918016Z","gw_timestamp":3283966756,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU0MDAxMjExMDA0ODYLMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10665, '2016-08-11 20:06:10', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":31,"f_cnt_down":32,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:05:31.088157Z","gw_timestamp":3898137180,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAswMDU1MjAxMjI2MDA0NzEHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10666, '2016-08-11 20:06:38', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":20,"f_cnt_down":26,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:06:09.032329Z","gw_timestamp":3936081372,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABUwMDU0MjAxMjQwMDA0NjcMMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10667, '2016-08-11 20:07:18', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":29,"f_cnt_down":40,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:07:14.633957Z","gw_timestamp":4001683028,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU1OTAxMjM5MDA0NzEHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10668, '2016-08-11 20:10:28', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":42,"f_cnt_down":52,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:24:54.235218Z","gw_timestamp":2830559900,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjExMDA1MDIIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10669, '2016-08-11 20:15:39', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":43,"f_cnt_down":53,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:10:27.712403Z","gw_timestamp":4194761564,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2MTAxMjExMDA1MDIIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10670, '2016-08-11 20:21:21', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":32,"f_cnt_down":33,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:20:41.929246Z","gw_timestamp":514011396,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAQwMDUxMDAxMjI2MDA0NzMWAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10671, '2016-08-11 20:22:27', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":21,"f_cnt_down":27,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:21:19.896396Z","gw_timestamp":551978564,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:35:46.419233Z","gw_timestamp":3482743916,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-6.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABUwMDU1MTAxMjM3MDA0NzIpYg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10672, '2016-08-11 20:24:45', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":30,"f_cnt_down":41,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:22:25.432772Z","gw_timestamp":617514972,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE8wMDU0NzAxMjM2MDA0NzYGEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10673, '2016-08-11 20:26:42', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":43,"f_cnt_down":54,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:25:38.508722Z","gw_timestamp":810591012,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUzNjAxMjExMDA0ODAHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10674, '2016-08-11 20:36:32', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":33,"f_cnt_down":34,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:35:52.76634Z","gw_timestamp":1424848916,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAQwMDU1NDAxMjI1MDA0NzEJ0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10675, '2016-08-11 20:37:22', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":22,"f_cnt_down":28,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:36:30.758444Z","gw_timestamp":1462841036,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:50:57.281306Z","gw_timestamp":98638692,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDU1MDAxMjM5MDA0NjkMwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10676, '2016-08-11 20:40:18', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":31,"f_cnt_down":42,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:37:36.224524Z","gw_timestamp":1528307148,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU0NDAxMjM5MDA0NzEJEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10677, '2016-08-11 20:40:51', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":44,"f_cnt_down":55,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:55:15.828921Z","gw_timestamp":357186308,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjExMDA1MTARwQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10678, '2016-08-11 20:42:41', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":45,"f_cnt_down":56,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:40:49.30605Z","gw_timestamp":1721388764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0MDAxMjExMDA1MTARwQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10679, '2016-08-11 20:51:42', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":34,"f_cnt_down":35,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:51:03.604301Z","gw_timestamp":2335687300,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDQ5ODAxMjI0MDA0NzUHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10680, '2016-08-11 20:52:07', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":23,"f_cnt_down":29,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:51:41.62169Z","gw_timestamp":2373704708,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":3,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUwNzAxMjQwMDA0NjcMEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10681, '2016-08-11 20:52:07', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":24,"f_cnt_down":30,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:06:32.82657Z","gw_timestamp":1034183956,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUwNzAxMjQwMDA0NjcMEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10682, '2016-08-11 20:52:48', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":25,"f_cnt_down":31,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:52:06.303672Z","gw_timestamp":2398386700,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUwNzAxMjQwMDA0NjcMEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10683, '2016-08-11 20:53:54', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":32,"f_cnt_down":43,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:52:47.016148Z","gw_timestamp":2439099196,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUxNTAxMjQwMDA0NjgIQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10684, '2016-08-11 20:56:01', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":45,"f_cnt_down":57,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T20:56:00.101347Z","gw_timestamp":2632184484,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjEzMDA1MTcGkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10685, '2016-08-11 20:57:25', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":46,"f_cnt_down":58,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:10:26.624249Z","gw_timestamp":1267981636,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-111,"snr":-14.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjEzMDA1MTcGkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10686, '2016-08-11 21:07:18', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":35,"f_cnt_down":36,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:06:14.444436Z","gw_timestamp":3246527860,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU0NDAxMjI0MDA0NzgGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10687, '2016-08-11 21:07:19', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":25,"f_cnt_down":32,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:43.690145Z","gw_timestamp":1945047532,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-3.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUxODAxMjQwMDA0NjYO0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10688, '2016-08-11 21:07:27', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":26,"f_cnt_down":33,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:07:17.167214Z","gw_timestamp":3309250668,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUxODAxMjQwMDA0NjYO0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10689, '2016-08-11 21:09:44', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":33,"f_cnt_down":44,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:07:57.825242Z","gw_timestamp":3349908716,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:22:24.34817Z","gw_timestamp":1985705556,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUxODAxMjQyMDA0NjYFwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10690, '2016-08-11 21:12:02', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":46,"f_cnt_down":59,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:11:10.897832Z","gw_timestamp":3542981396,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:25:37.42077Z","gw_timestamp":2178778156,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3MTAxMjE0MDA1MTEH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10691, '2016-08-11 21:22:29', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":36,"f_cnt_down":37,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:21:25.283442Z","gw_timestamp":4157367292,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUwMzAxMjIzMDA0NzkHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10692, '2016-08-11 21:22:30', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":26,"f_cnt_down":34,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:19.58609Z","gw_timestamp":2855910772,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUzNjAxMjQxMDA0NjIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10693, '2016-08-11 21:23:10', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":27,"f_cnt_down":35,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:22:28.030429Z","gw_timestamp":4220114308,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUzNjAxMjQxMDA0NjIL8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10694, '2016-08-11 21:26:23', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":34,"f_cnt_down":45,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:23:08.614778Z","gw_timestamp":4260698676,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUxMjAxMjQzMDA0NjAG8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10695, '2016-08-11 21:26:47', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":47,"f_cnt_down":60,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:26:21.694022Z","gw_timestamp":158810716,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:13.249689Z","gw_timestamp":3089574372,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-6.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjEyMDA0OTAIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10696, '2016-08-11 21:27:31', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":48,"f_cnt_down":61,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:26:46.376748Z","gw_timestamp":183493452,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0ODAxMjEyMDA0OTAIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10697, '2016-08-11 21:37:33', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":37,"f_cnt_down":38,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:36:36.124381Z","gw_timestamp":773241364,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUyNTAxMjIyMDA0NzgIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10698, '2016-08-11 21:37:41', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":27,"f_cnt_down":36,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:40:30.457145Z","gw_timestamp":3766781828,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUyNzAxMjQxMDA0NTgIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10699, '2016-08-11 21:38:20', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":28,"f_cnt_down":37,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:37:38.90145Z","gw_timestamp":836018460,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUyNzAxMjQxMDA0NTgIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10700, '2016-08-11 21:39:14', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":35,"f_cnt_down":46,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:38:19.406421Z","gw_timestamp":876523452,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":12.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ4OTAxMjQzMDA0NTYHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10701, '2016-08-11 21:41:58', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":49,"f_cnt_down":62,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:41:57.178807Z","gw_timestamp":1094295940,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNTAxMjEyMDA1MTEHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10702, '2016-08-11 21:45:47', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":50,"f_cnt_down":63,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:44:48.734506Z","gw_timestamp":4025059188,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyNTAxMjEyMDA1MTEHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10703, '2016-08-11 21:52:51', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":38,"f_cnt_down":39,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:51:46.965586Z","gw_timestamp":1684082996,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU2MDAxMjIyMDA0NzkHwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10704, '2016-08-11 21:53:31', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":28,"f_cnt_down":38,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:52:49.76411Z","gw_timestamp":1746881548,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":3,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUwNzAxMjQwMDA0NTYIsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10705, '2016-08-11 21:53:31', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":36,"f_cnt_down":47,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:56:21.754538Z","gw_timestamp":423111924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzNjAxMjQxMDA0NTUQwQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10706, '2016-08-11 21:54:46', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":37,"f_cnt_down":48,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:53:30.198811Z","gw_timestamp":1787316268,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzNjAxMjQxMDA0NTUQwQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10707, '2016-08-11 21:57:20', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":50,"f_cnt_down":64,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T21:57:07.973019Z","gw_timestamp":2005090580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:59:59.528753Z","gw_timestamp":640886140,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyMzAxMjE0MDA1MDgHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10708, '2016-08-11 22:07:37', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":39,"f_cnt_down":40,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:06:57.806639Z","gw_timestamp":2594924476,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU5NTAxMjIxMDA0ODEHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10709, '2016-08-11 22:08:42', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":29,"f_cnt_down":39,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:08:00.6274Z","gw_timestamp":2657745268,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUzNjAxMjQwMDA0NTYJMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10710, '2016-08-11 22:09:07', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":37,"f_cnt_down":49,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:11:32.559201Z","gw_timestamp":1333916588,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzOTAxMjQwMDA0NTUMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10711, '2016-08-11 22:09:31', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":38,"f_cnt_down":50,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:11:57.241889Z","gw_timestamp":1358599276,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzOTAxMjQwMDA0NTUMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10712, '2016-08-11 22:09:32', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":39,"f_cnt_down":51,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:09:30.368711Z","gw_timestamp":2747486620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzOTAxMjQwMDA0NTUMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10713, '2016-08-11 22:11:48', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":40,"f_cnt_down":52,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:12:21.924473Z","gw_timestamp":1383281860,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzOTAxMjQwMDA0NTUMIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10714, '2016-08-11 22:12:48', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":51,"f_cnt_down":65,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:15:10.325114Z","gw_timestamp":1551682500,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjEyMDA0ODAHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10715, '2016-08-11 22:23:13', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":40,"f_cnt_down":41,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:22:08.648106Z","gw_timestamp":3505766372,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUzNzAxMjIxMDA0NzkHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10716, '2016-08-11 22:24:33', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":30,"f_cnt_down":40,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:23:11.490779Z","gw_timestamp":3568609076,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:26:03.046569Z","gw_timestamp":2204403956,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-120,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUzNzAxMjQwMDA0NTUJ4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10717, '2016-08-11 22:24:43', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":40,"f_cnt_down":53,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:24:41.158312Z","gw_timestamp":3658276652,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDU0ODAxMjM5MDA0NTQHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10718, '2016-08-11 22:27:31', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":41,"f_cnt_down":54,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:27:32.714105Z","gw_timestamp":2294071492,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDU0ODAxMjM5MDA0NTQHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10719, '2016-08-11 22:27:41', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":52,"f_cnt_down":66,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:27:30.182233Z","gw_timestamp":3827300652,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1NzAxMjEyMDA1MDcIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10720, '2016-08-11 22:37:43', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":41,"f_cnt_down":42,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:37:19.489308Z","gw_timestamp":121640708,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU3NjAxMjIwMDA0ODAHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10721, '2016-08-11 22:40:02', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":31,"f_cnt_down":41,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:38:22.357072Z","gw_timestamp":184508500,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:38.945602Z","gw_timestamp":3115270284,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDU1MjAxMjM5MDA0NTULAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10735, '2016-08-11 23:15:53', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":56,"f_cnt_down":70,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:19.161282Z","gw_timestamp":900518668,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjEzMDA1MTIHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10722, '2016-08-11 22:42:18', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":41,"f_cnt_down":55,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:39:51.950302Z","gw_timestamp":274101772,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:31:08.538833Z","gw_timestamp":3204863516,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUwNDAxMjM5MDA0NTUHgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10723, '2016-08-11 22:47:45', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":53,"f_cnt_down":67,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:42:40.980077Z","gw_timestamp":443131628,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3NDAxMjE0MDA1MDQH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10724, '2016-08-11 22:53:35', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":42,"f_cnt_down":43,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:52:30.329304Z","gw_timestamp":1032481132,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU0NzAxMjIwMDA0ODEIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10725, '2016-08-11 22:55:04', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":32,"f_cnt_down":42,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:53:33.225596Z","gw_timestamp":1095377452,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-90,"snr":1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzMzAxMjM4MDA0NTQMYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10726, '2016-08-11 22:55:28', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":42,"f_cnt_down":56,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:19.329786Z","gw_timestamp":4115654468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU2NjAxMjM4MDA0NTUH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10727, '2016-08-11 22:55:53', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":43,"f_cnt_down":57,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:44.012465Z","gw_timestamp":4140337148,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU2NjAxMjM4MDA0NTUH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10728, '2016-08-11 22:57:47', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":44,"f_cnt_down":58,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:55:52.106489Z","gw_timestamp":1234258412,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU2NjAxMjM4MDA0NTUH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10729, '2016-08-11 23:00:48', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":54,"f_cnt_down":68,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T22:57:51.776515Z","gw_timestamp":1353928492,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:49:08.36509Z","gw_timestamp":4284689772,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-116,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0NTAxMjEyMDA0ODkHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10730, '2016-08-11 23:07:48', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":43,"f_cnt_down":44,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:07:41.171566Z","gw_timestamp":1943323820,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU1NDAxMjIwMDA0ODAHkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10731, '2016-08-11 23:08:45', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":33,"f_cnt_down":43,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:00:00.688873Z","gw_timestamp":642046260,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzODAxMjM3MDA0NTQQAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10732, '2016-08-11 23:09:52', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":34,"f_cnt_down":44,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:08:44.100272Z","gw_timestamp":2006252556,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzODAxMjM3MDA0NTQQAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10733, '2016-08-11 23:12:46', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":45,"f_cnt_down":59,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:11:02.899624Z","gw_timestamp":2145051972,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":10.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUxODAxMjM3MDA0NTURUQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10734, '2016-08-11 23:13:04', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":55,"f_cnt_down":69,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:13:02.57268Z","gw_timestamp":2264725084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzNzAxMjEzMDA1MTIHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10736, '2016-08-11 23:22:56', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":44,"f_cnt_down":45,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:22:52.012742Z","gw_timestamp":2854165420,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDYxNDAxMjIwMDA0ODIHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10737, '2016-08-11 23:24:55', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":34,"f_cnt_down":45,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:23:54.964434Z","gw_timestamp":2917117140,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":2.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUyNTAxMjM2MDA0NTYWgQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10738, '2016-08-11 23:27:52', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":46,"f_cnt_down":60,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:26:13.690305Z","gw_timestamp":3055843076,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzODAxMjM2MDA0NTcHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10739, '2016-08-11 23:28:15', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":56,"f_cnt_down":71,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:19:29.957585Z","gw_timestamp":1811314972,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1NzAxMjEzMDA0OTEGQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10740, '2016-08-11 23:33:05', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":57,"f_cnt_down":72,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:28:13.368953Z","gw_timestamp":3175521780,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1NzAxMjEzMDA0OTEGQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10741, '2016-08-11 23:39:08', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":45,"f_cnt_down":46,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:38:02.854166Z","gw_timestamp":3765007268,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU3NjAxMjE5MDA0ODIHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10742, '2016-08-11 23:41:26', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":35,"f_cnt_down":46,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:39:05.830601Z","gw_timestamp":3827983732,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUyNTAxMjM2MDA0NTUyAw==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10743, '2016-08-11 23:42:57', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":47,"f_cnt_down":61,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:41:24.481784Z","gw_timestamp":3966634980,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-107,"snr":8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:32:41.070442Z","gw_timestamp":2602427828,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzNzAxMjM2MDA0NTYHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10744, '2016-08-11 23:43:25', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":57,"f_cnt_down":73,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:23:05.802194Z","gw_timestamp":2722126876,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-8.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1MDAxMjEyMDA0OTUI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10745, '2016-08-11 23:46:08', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":58,"f_cnt_down":74,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:43:24.180832Z","gw_timestamp":4086334084,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1MDAxMjEyMDA0OTUI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10746, '2016-08-11 23:53:25', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":46,"f_cnt_down":47,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:53:13.695422Z","gw_timestamp":380881652,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUwNDAxMjE5MDA0ODAHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10747, '2016-08-11 23:55:12', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":36,"f_cnt_down":47,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:54:16.693663Z","gw_timestamp":443879924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUwNTAxMjM1MDA0NTULkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10748, '2016-08-11 23:57:00', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":48,"f_cnt_down":62,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:16.89553Z","gw_timestamp":3513220212,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-116,"snr":-9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzNTAxMjM1MDA0NTYF0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10749, '2016-08-11 23:57:57', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":49,"f_cnt_down":63,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:56:59.956085Z","gw_timestamp":607142420,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:41.577474Z","gw_timestamp":3537902156,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzNTAxMjM1MDA0NTYF0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10750, '2016-08-11 23:58:37', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":58,"f_cnt_down":75,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:38:16.599594Z","gw_timestamp":3632924276,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyMzAxMjEzMDA1MTASoQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10751, '2016-08-12 00:00:58', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":59,"f_cnt_down":76,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-11T23:58:34.978201Z","gw_timestamp":702164580,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":13.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyMzAxMjEzMDA1MTASoQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10752, '2016-08-12 00:09:29', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":47,"f_cnt_down":48,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:08:24.536302Z","gw_timestamp":1291722956,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU4NTAxMjE5MDA0ODIGYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10753, '2016-08-12 00:12:12', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":37,"f_cnt_down":48,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:09:27.556754Z","gw_timestamp":1354743436,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":2.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUxODAxMjM1MDA0NTcLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10754, '2016-08-12 00:13:19', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":50,"f_cnt_down":64,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:12:10.748581Z","gw_timestamp":1517935340,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDU0NDAxMjM0MDA0NTcGMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10755, '2016-08-12 00:18:00', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":59,"f_cnt_down":77,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:13:45.777305Z","gw_timestamp":1612964108,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":2.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2MjAxMjEzMDA0NzcRAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10756, '2016-08-12 00:23:55', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":48,"f_cnt_down":49,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:23:35.394001Z","gw_timestamp":2202581076,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU3NzAxMjE4MDA0ODELYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10757, '2016-08-12 00:27:23', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":38,"f_cnt_down":49,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:20.041385Z","gw_timestamp":901398772,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-6.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzOTAxMjM0MDA0NTYLEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10758, '2016-08-12 00:27:58', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":51,"f_cnt_down":65,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:27:21.544655Z","gw_timestamp":2428731836,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDU0NDAxMjM0MDA0NTcdkQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10759, '2016-08-12 00:31:26', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":60,"f_cnt_down":78,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:28:56.581876Z","gw_timestamp":2523769100,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":2.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxNDAxMjEyMDA1MDgHIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10760, '2016-08-12 00:39:50', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":49,"f_cnt_down":50,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:38:46.846505Z","gw_timestamp":3114034004,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU1NjAxMjE4MDA0ODMN8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10761, '2016-08-12 00:40:30', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":39,"f_cnt_down":50,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:19:30.904489Z","gw_timestamp":1812261876,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUwMDAxMjMzMDA0NTgMgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10762, '2016-08-12 00:44:09', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":52,"f_cnt_down":66,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:42:32.33884Z","gw_timestamp":3339526444,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDUyNDAxMjMzMDA0NTgIYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10763, '2016-08-12 00:44:18', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":61,"f_cnt_down":79,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:44:07.381868Z","gw_timestamp":3434569516,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-88,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:49.003345Z","gw_timestamp":2070360732,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxMjAxMjE0MDA0OTkHMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10764, '2016-08-12 00:54:27', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":50,"f_cnt_down":51,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:53:57.689979Z","gw_timestamp":4024877900,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU4MjAxMjE4MDA0ODQHcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10765, '2016-08-12 00:55:02', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":40,"f_cnt_down":51,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:23:06.816786Z","gw_timestamp":2723141468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUyNTAxMjM0MDA0NTgg0g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10766, '2016-08-12 00:58:06', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":53,"f_cnt_down":67,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:49.787985Z","gw_timestamp":2886112668,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzMzAxMjM1MDA0NTcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10767, '2016-08-12 00:58:38', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":54,"f_cnt_down":68,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:58:07.815943Z","gw_timestamp":4275003980,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-4.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUzMzAxMjM1MDA0NTcHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10768, '2016-08-12 01:04:03', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":62,"f_cnt_down":80,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T00:59:18.178136Z","gw_timestamp":50398908,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:27:24.832345Z","gw_timestamp":2981157028,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2NDAxMjEyMDA0NzMHQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10769, '2016-08-12 01:10:12', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":51,"f_cnt_down":52,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:09:08.535135Z","gw_timestamp":640756180,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU1MTAxMjE3MDA0ODIIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10770, '2016-08-12 01:13:20', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":41,"f_cnt_down":52,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:10:11.027568Z","gw_timestamp":703248644,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUxODAxMjM2MDA0NTcLAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10771, '2016-08-12 01:13:21', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":55,"f_cnt_down":69,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:13:18.607178Z","gw_timestamp":890828340,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ3NjAxMjM4MDA0NTMIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10772, '2016-08-12 01:14:29', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":56,"f_cnt_down":70,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:41:25.261402Z","gw_timestamp":3821586084,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ3NjAxMjM4MDA0NTMIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10773, '2016-08-12 01:14:46', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":63,"f_cnt_down":81,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:14:28.978043Z","gw_timestamp":961199236,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:42:35.632266Z","gw_timestamp":3891956948,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU2NjAxMjExMDA1MDEH8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10774, '2016-08-12 01:24:56', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":52,"f_cnt_down":53,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:24:19.379272Z","gw_timestamp":1551600740,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU2MzAxMjE3MDA0ODMIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10775, '2016-08-12 01:25:50', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":42,"f_cnt_down":53,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:25:21.891523Z","gw_timestamp":1614113020,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:53:28.545769Z","gw_timestamp":249903156,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-6.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzMDAxMjM3MDA0NTYL4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10776, '2016-08-12 01:29:41', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":56,"f_cnt_down":71,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:28:29.399884Z","gw_timestamp":1801621468,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUwODAxMjM5MDA0NTIHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10777, '2016-08-12 01:34:54', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":64,"f_cnt_down":82,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:46.428809Z","gw_timestamp":507786196,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxOTAxMjEzMDA0OTYGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10778, '2016-08-12 01:40:06', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":53,"f_cnt_down":54,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:39:30.223898Z","gw_timestamp":2462445788,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU2ODAxMjE3MDA0ODQNkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10779, '2016-08-12 01:43:41', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":43,"f_cnt_down":54,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:40:32.758215Z","gw_timestamp":2524980132,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:08:39.412138Z","gw_timestamp":1160769524,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUyODAxMjM4MDA0NTMMUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10780, '2016-08-12 01:43:58', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":57,"f_cnt_down":72,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:43:40.195006Z","gw_timestamp":2712417012,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDU0NDAxMjQwMDA0NDgIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10781, '2016-08-12 01:45:16', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":65,"f_cnt_down":83,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:12:57.244369Z","gw_timestamp":1418601756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjEyMDA0ODMGQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10782, '2016-08-12 01:55:27', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":54,"f_cnt_down":55,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:54:41.066499Z","gw_timestamp":3373288812,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUzNzAxMjE3MDA0ODMH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10783, '2016-08-12 01:58:07', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":44,"f_cnt_down":55,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:55:43.621728Z","gw_timestamp":3435844068,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:23:50.276026Z","gw_timestamp":2071633412,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDQ4NzAxMjM4MDA0NTAMsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10784, '2016-08-12 02:00:02', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":58,"f_cnt_down":73,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T01:58:50.989432Z","gw_timestamp":3623211860,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:26:57.643738Z","gw_timestamp":2259001124,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ3OTAxMjM5MDA0NDYIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10785, '2016-08-12 02:02:06', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":66,"f_cnt_down":84,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:00:01.386799Z","gw_timestamp":3693609260,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzMzAxMjEyMDA1MDcIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10786, '2016-08-12 02:10:56', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":55,"f_cnt_down":56,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:09:51.911373Z","gw_timestamp":4284134108,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU4OTAxMjE3MDA0ODQIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10787, '2016-08-12 02:11:10', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":45,"f_cnt_down":56,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:10:55.173319Z","gw_timestamp":52428788,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-1.2000000476837158,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUyMTAxMjM3MDA0NDkfQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10788, '2016-08-12 02:15:26', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":59,"f_cnt_down":74,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:14:01.781881Z","gw_timestamp":239037436,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ5OTAxMjM5MDA0NDYIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10789, '2016-08-12 02:15:46', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":67,"f_cnt_down":85,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:15:12.187208Z","gw_timestamp":309442796,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1MTAxMjEzMDA0NzcTAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10790, '2016-08-12 02:25:10', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":56,"f_cnt_down":57,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:25:02.755799Z","gw_timestamp":900011660,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUyODAxMjE2MDA0ODIIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10791, '2016-08-12 02:26:07', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":46,"f_cnt_down":57,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:42:37.727906Z","gw_timestamp":3894052588,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-6.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzMDAxMjM3MDA0NDgvQg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10792, '2016-08-12 02:28:22', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":47,"f_cnt_down":58,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:26:06.040839Z","gw_timestamp":963296732,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":11.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzMDAxMjM3MDA0NDgvQg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10793, '2016-08-12 02:29:14', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":60,"f_cnt_down":75,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:29:12.577081Z","gw_timestamp":1149833060,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-99,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ5MjAxMjM4MDA0NDUHwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10794, '2016-08-12 02:29:17', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":61,"f_cnt_down":76,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:45:44.264138Z","gw_timestamp":4080588820,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDQ5MjAxMjM4MDA0NDUHwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10795, '2016-08-12 02:34:11', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":68,"f_cnt_down":86,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:30:22.98833Z","gw_timestamp":1220244340,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUwNTAxMjEyMDA1MDEHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10796, '2016-08-12 02:41:18', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":47,"f_cnt_down":59,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:57:48.593657Z","gw_timestamp":509951044,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-6.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjM2MDA0NDkLUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10797, '2016-08-12 02:41:18', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":57,"f_cnt_down":58,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:40:13.598167Z","gw_timestamp":1810854452,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU1MzAxMjE2MDA0ODMK0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10798, '2016-08-12 02:43:11', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":48,"f_cnt_down":60,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:41:16.90657Z","gw_timestamp":1874162884,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUwMzAxMjM2MDA0NDkLUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10799, '2016-08-12 02:44:25', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":61,"f_cnt_down":77,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:00:55.05945Z","gw_timestamp":696416836,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDQ5NjAxMjM3MDA0NDcHwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10800, '2016-08-12 02:45:34', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":62,"f_cnt_down":78,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:44:23.372361Z","gw_timestamp":2060628764,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDQ5NjAxMjM3MDA0NDcHwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10801, '2016-08-12 02:45:35', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":69,"f_cnt_down":87,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:02:05.474506Z","gw_timestamp":766831892,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjEzMDA0OTAIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10802, '2016-08-12 02:46:14', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":70,"f_cnt_down":88,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:45:33.787418Z","gw_timestamp":2131043852,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUxNzAxMjEzMDA0OTAIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10803, '2016-08-12 02:56:25', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":58,"f_cnt_down":59,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:55:24.442949Z","gw_timestamp":2721699660,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU0MjAxMjE2MDA0ODQIYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10804, '2016-08-12 02:58:32', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":48,"f_cnt_down":61,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:12:59.460713Z","gw_timestamp":1420818100,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUzODAxMjM2MDA0NDkMUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10805, '2016-08-12 03:00:00', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":62,"f_cnt_down":79,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:16:05.855026Z","gw_timestamp":1607212412,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUyNzAxMjM2MDA0NDcI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10806, '2016-08-12 03:00:45', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":63,"f_cnt_down":80,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T02:59:58.850182Z","gw_timestamp":2996107020,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE4wMDUyNzAxMjM2MDA0NDcI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10807, '2016-08-12 03:01:12', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":70,"f_cnt_down":89,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:00:44.588641Z","gw_timestamp":3041845500,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzMTAxMjEyMDA0OTEHUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10808, '2016-08-12 03:11:40', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":59,"f_cnt_down":60,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:10:35.287756Z","gw_timestamp":3632544892,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUyNTAxMjE2MDA0ODIGsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10809, '2016-08-12 03:14:35', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":49,"f_cnt_down":62,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:11:38.640269Z","gw_timestamp":3695897436,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDQ5NDAxMjM1MDA0NDgLsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10810, '2016-08-12 03:15:56', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":64,"f_cnt_down":81,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:15:10.294482Z","gw_timestamp":3907551748,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-3.200000047683716,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDUyODAxMjM1MDA0NDcNwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10811, '2016-08-12 03:16:45', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":71,"f_cnt_down":90,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:15:55.388813Z","gw_timestamp":3952646100,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU0NjAxMjEzMDA1MDYGUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10812, '2016-08-12 03:26:51', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":60,"f_cnt_down":61,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:25:46.134114Z","gw_timestamp":248424380,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUxOTAxMjE2MDA0ODQi4g==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10813, '2016-08-12 03:26:54', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":50,"f_cnt_down":63,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:26:49.506324Z","gw_timestamp":311796620,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUxNDAxMjM0MDA0NTALAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10814, '2016-08-12 03:31:07', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":72,"f_cnt_down":91,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:36:02.908994Z","gw_timestamp":3499233676,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzMDAxMjEzMDA0ODcLIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10815, '2016-08-12 03:31:07', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":65,"f_cnt_down":82,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:30:21.090128Z","gw_timestamp":523380524,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFAwMDUyNDAxMjM1MDA0NDkI0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10816, '2016-08-12 03:32:42', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":73,"f_cnt_down":92,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:31:06.189122Z","gw_timestamp":568479540,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzMDAxMjEzMDA0ODcLIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10817, '2016-08-12 03:41:45', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":61,"f_cnt_down":62,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:40:56.978204Z","gw_timestamp":1159268900,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDUyODAxMjE1MDA0ODQI4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10818, '2016-08-12 03:45:33', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":51,"f_cnt_down":64,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:46:57.094074Z","gw_timestamp":4153418756,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABYwMDUyNTAxMjM1MDA0NTANEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10819, '2016-08-12 03:46:16', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":66,"f_cnt_down":83,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:45:31.884516Z","gw_timestamp":1434175340,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-7.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDQ3NjAxMjM3MDA0NDcIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10820, '2016-08-12 03:47:14', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":73,"f_cnt_down":93,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:46:16.990287Z","gw_timestamp":1479281132,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUyOTAxMjExMDA0ODEY0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10821, '2016-08-12 03:57:12', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":62,"f_cnt_down":63,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:56:07.832838Z","gw_timestamp":2070123964,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAIwMDU3NjAxMjE1MDA0ODMH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10822, '2016-08-12 03:57:24', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":52,"f_cnt_down":65,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T03:57:11.257641Z","gw_timestamp":2133548796,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABEwMDUyMzAxMjM3MDA0NDkgwg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10823, '2016-08-12 04:01:29', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":67,"f_cnt_down":84,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:00:42.6805Z","gw_timestamp":2344971756,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-4.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDUyMjAxMjM5MDA0NDUGYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10824, '2016-08-12 04:04:17', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":74,"f_cnt_down":94,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:01:27.789504Z","gw_timestamp":2390080780,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU1NjAxMjExMDA1MDQHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10825, '2016-08-12 04:12:23', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":63,"f_cnt_down":64,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:11:18.677366Z","gw_timestamp":2980968924,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDU3NjAxMjE1MDA0ODQYMQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10826, '2016-08-12 04:13:18', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":53,"f_cnt_down":66,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:12:22.127721Z","gw_timestamp":3044419308,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABEwMDUzMzAxMjM4MDA0NDgMkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10827, '2016-08-12 04:16:40', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":68,"f_cnt_down":85,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:20:50.195761Z","gw_timestamp":1891553148,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDUyNjAxMjQwMDA0NDQIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10828, '2016-08-12 04:16:40', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":75,"f_cnt_down":95,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:16:38.58976Z","gw_timestamp":3300881468,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-89,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyMTAxMjEzMDA1MDcH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10829, '2016-08-12 04:16:43', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":76,"f_cnt_down":96,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:35.309706Z","gw_timestamp":1936667092,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-118,"snr":-9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyMTAxMjEzMDA1MDcH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10830, '2016-08-12 04:16:44', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":69,"f_cnt_down":86,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:21:39.560825Z","gw_timestamp":1940918212,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDUyNjAxMjQwMDA0NDQIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10831, '2016-08-12 04:17:44', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":69,"f_cnt_down":87,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:16:42.840878Z","gw_timestamp":3305132588,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDUyNjAxMjQwMDA0NDQIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10832, '2016-08-12 04:27:05', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":64,"f_cnt_down":65,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:26:29.52167Z","gw_timestamp":3891813660,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-0.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDU1MDAxMjE1MDA0ODcIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10833, '2016-08-12 04:27:54', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":54,"f_cnt_down":67,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:27:33.004975Z","gw_timestamp":3955296996,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:32:29.724954Z","gw_timestamp":2591082340,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABEwMDUzMDAxMjM4MDA0NDYMcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10834, '2016-08-12 04:31:55', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":76,"f_cnt_down":97,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:31:49.389919Z","gw_timestamp":4211682060,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAAwMDUyMTAxMjE0MDA0OTIHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10835, '2016-08-12 04:36:09', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":69,"f_cnt_down":88,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:31:53.637292Z","gw_timestamp":4215929436,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-101,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:15.389978Z","gw_timestamp":2851714660,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACkwMDQ4NDAxMjM5MDA0NDEHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10836, '2016-08-12 04:42:46', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":65,"f_cnt_down":66,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:41:40.366686Z","gw_timestamp":507691812,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":1,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAYwMDQ5MDAxMjE1MDA0ODYJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10837, '2016-08-12 04:45:13', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":55,"f_cnt_down":68,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:42:43.883696Z","gw_timestamp":571208852,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABIwMDUwODAxMjM4MDA0NDMUoQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10838, '2016-08-12 04:47:06', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":77,"f_cnt_down":98,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:47:00.20362Z","gw_timestamp":827528900,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAEwMDUzNjAxMjExMDA0ODUF4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10839, '2016-08-12 04:48:14', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":70,"f_cnt_down":89,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:47:04.432396Z","gw_timestamp":831757676,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":5.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACswMDQ4ODAxMjM5MDA0NDAGgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10840, '2016-08-12 04:57:56', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":66,"f_cnt_down":67,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:56:51.212892Z","gw_timestamp":1418538452,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AA8wMDU1NzAxMjE1MDA0ODUIoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10841, '2016-08-12 04:58:22', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":56,"f_cnt_down":69,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T04:57:54.754078Z","gw_timestamp":1482079668,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-1.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABMwMDQ4NDAxMjM2MDA0NDMNUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10842, '2016-08-12 05:02:16', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":78,"f_cnt_down":99,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:02:11.004755Z","gw_timestamp":1738330468,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-2.799999952316284,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDUyOTAxMjEyMDA1MDcJAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10843, '2016-08-12 05:02:16', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":71,"f_cnt_down":90,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:55:36.980193Z","gw_timestamp":378337580,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-125,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC0wMDQ5NjAxMjM3MDA0NDEJ4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10844, '2016-08-12 05:07:23', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":72,"f_cnt_down":91,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:02:15.227448Z","gw_timestamp":1742553164,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-107,"snr":7.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC0wMDQ5NjAxMjM3MDA0NDEJ4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10845, '2016-08-12 05:12:22', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":67,"f_cnt_down":68,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:05:23.818249Z","gw_timestamp":965175636,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-13.8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABUwMDYwMDAxMjE0MDA0ODcHAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10846, '2016-08-12 05:16:33', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":57,"f_cnt_down":70,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:13:05.622795Z","gw_timestamp":2392948820,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABQwMDUxMjAxMjM1MDA0NDUMQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10847, '2016-08-12 05:17:27', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":79,"f_cnt_down":100,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:17:21.805087Z","gw_timestamp":2649131236,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAMwMDU0ODAxMjEzMDA0ODEOAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10848, '2016-08-12 05:18:45', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":72,"f_cnt_down":92,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:17:26.033628Z","gw_timestamp":2653359780,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AC8wMDUwNjAxMjM1MDA0NDQKIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10849, '2016-08-12 05:28:17', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":68,"f_cnt_down":69,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:27:12.913117Z","gw_timestamp":3240239548,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":-0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACMwMDU0NTAxMjE0MDA0ODcjIg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10850, '2016-08-12 05:28:52', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":58,"f_cnt_down":71,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:28:16.490206Z","gw_timestamp":3303816668,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABUwMDQ5OTAxMjM0MDA0NDQMcA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10851, '2016-08-12 05:32:34', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":80,"f_cnt_down":101,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:32:32.605643Z","gw_timestamp":3559932228,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAUwMDUzMzAxMjExMDA0OTcIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10852, '2016-08-12 05:32:37', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":81,"f_cnt_down":102,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:25:54.35845Z","gw_timestamp":2195715836,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-121,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAUwMDUzMzAxMjExMDA0OTcIAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10853, '2016-08-12 05:32:37', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":73,"f_cnt_down":93,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:25:58.582785Z","gw_timestamp":2199940172,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADIwMDUwMjAxMjMzMDA0NDQH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10854, '2016-08-12 05:34:25', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":74,"f_cnt_down":94,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:32:36.829977Z","gw_timestamp":3564156564,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-109,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADIwMDUwMjAxMjMzMDA0NDQH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10855, '2016-08-12 05:43:26', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":69,"f_cnt_down":70,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:42:23.761101Z","gw_timestamp":4151087972,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-91,"snr":-0.20000000298023224,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADwwMDUyMjAxMjE0MDA0ODcJUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10856, '2016-08-12 05:47:55', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":59,"f_cnt_down":72,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:43:27.357614Z","gw_timestamp":4214684516,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:25:14.143154Z","gw_timestamp":2850467836,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABkwMDQ4MzAxMjMzMDA0NDYKsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10857, '2016-08-12 05:47:55', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":81,"f_cnt_down":103,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:29:30.84705Z","gw_timestamp":3107171732,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AAgwMDUxODAxMjEyMDA1MDQWQQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10858, '2016-08-12 05:48:38', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":74,"f_cnt_down":95,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:47:47.624777Z","gw_timestamp":179984508,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADYwMDQ4ODAxMjMzMDA0NDYIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10859, '2016-08-12 05:57:42', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":70,"f_cnt_down":71,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:57:34.610032Z","gw_timestamp":766970044,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFwwMDUzODAxMjE0MDA0ODgKsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10860, '2016-08-12 05:58:39', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":60,"f_cnt_down":73,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:40:25.014834Z","gw_timestamp":3761339516,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADEwMDUzMDAxMjMyMDA0NDcPEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10861, '2016-08-12 05:58:57', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":61,"f_cnt_down":74,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T05:58:38.229265Z","gw_timestamp":830589308,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADEwMDUzMDAxMjMyMDA0NDcPEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10862, '2016-08-12 06:03:00', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":82,"f_cnt_down":104,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:02:54.863812Z","gw_timestamp":1087223980,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AA4wMDQ4ODAxMjEyMDA0NzYH8A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10863, '2016-08-12 06:06:47', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":75,"f_cnt_down":96,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:02:58.419868Z","gw_timestamp":1090780036,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AEswMDUxNDAxMjMxMDA0NDgIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10864, '2016-08-12 06:13:50', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":71,"f_cnt_down":72,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:12:45.459233Z","gw_timestamp":1677819684,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGswMDUyMjAxMjEzMDA0ODYI0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10865, '2016-08-12 06:15:50', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":61,"f_cnt_down":75,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:13:49.114896Z","gw_timestamp":1741475380,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:55:35.900497Z","gw_timestamp":377257884,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-5.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADQwMDUzMjAxMjMyMDA0NDkKgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10866, '2016-08-12 06:18:10', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":76,"f_cnt_down":97,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:59:56.000962Z","gw_timestamp":637358348,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE0wMDUwNzAxMjMwMDA0NTAJoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10867, '2016-08-12 06:18:10', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":83,"f_cnt_down":105,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:18:05.669159Z","gw_timestamp":1998029764,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":1.7999999523162842,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABIwMDUwOTAxMjExMDA1MDMIIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10868, '2016-08-12 06:19:00', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":77,"f_cnt_down":98,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:18:09.215357Z","gw_timestamp":2001575964,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-103,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AE0wMDUwNzAxMjMwMDA0NTAJoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10869, '2016-08-12 06:28:29', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":72,"f_cnt_down":73,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:27:56.308146Z","gw_timestamp":2588669036,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":13,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AH0wMDUzMTAxMjEzMDA0ODgG0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10870, '2016-08-12 06:29:00', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":62,"f_cnt_down":76,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:10:46.772081Z","gw_timestamp":1288129468,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADAwMDQ4MjAxMjMxMDA0NTEIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10871, '2016-08-12 06:29:02', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":63,"f_cnt_down":77,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:28:59.98645Z","gw_timestamp":2652347372,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ADAwMDQ4MjAxMjMxMDA0NTEIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10872, '2016-08-12 06:33:21', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":84,"f_cnt_down":106,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:33:16.473158Z","gw_timestamp":2908834204,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":11,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ABMwMDUzOTAxMjEzMDA0OTAHoA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10873, '2016-08-12 06:33:58', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":77,"f_cnt_down":99,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:33:20.01035Z","gw_timestamp":2912371396,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-106,"snr":8.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFEwMDUxMzAxMjMwMDA0NTIIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10874, '2016-08-12 06:44:12', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":73,"f_cnt_down":74,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:43:07.157162Z","gw_timestamp":3499518492,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AMMwMDUzNDAxMjEzMDA0ODkIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10875, '2016-08-12 06:46:31', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":63,"f_cnt_down":78,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:44:10.862868Z","gw_timestamp":3563224228,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:25:57.648537Z","gw_timestamp":2199005924,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD8wMDQ4NDAxMjMwMDA0NTMW0Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10876, '2016-08-12 06:48:32', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":85,"f_cnt_down":107,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:48:27.277312Z","gw_timestamp":3819638796,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:14.062985Z","gw_timestamp":2455420372,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-117,"snr":-9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACIwMDU4MjAxMjExMDA0OTEJQA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10877, '2016-08-12 06:49:06', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":78,"f_cnt_down":100,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:48:30.807093Z","gw_timestamp":3823168580,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":-4,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AGwwMDUyNjAxMjI5MDA0NTUgkg==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10878, '2016-08-12 06:59:07', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":74,"f_cnt_down":75,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:58:18.006347Z","gw_timestamp":115400820,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AWAwMDUxODAxMjEzMDA0ODcHsA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10879, '2016-08-12 07:00:24', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":64,"f_cnt_down":79,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T06:59:21.732155Z","gw_timestamp":179126660,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-1.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AuYwMDUwNTAxMjMwMDA0NTcL0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10880, '2016-08-12 07:03:43', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":86,"f_cnt_down":108,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:03:38.08036Z","gw_timestamp":435474988,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AD0wMDUzMzAxMjEyMDA1MTMGAA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10881, '2016-08-12 07:04:33', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":79,"f_cnt_down":101,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:03:41.605575Z","gw_timestamp":439000204,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-93,"snr":-8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A4cwMDQ5MDAxMjMxMDA0NTcHYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10882, '2016-08-12 07:13:33', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":75,"f_cnt_down":76,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:13:28.856347Z","gw_timestamp":1026251260,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-0.800000011920929,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"Ai4wMDUxMzAxMjEzMDA0OTEXkQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10883, '2016-08-12 07:18:50', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":65,"f_cnt_down":80,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:44:44.421769Z","gw_timestamp":4020746452,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-124,"snr":-14.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AvwwMDUwMzAxMjMyMDA0NjAKUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10884, '2016-08-12 07:18:54', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":87,"f_cnt_down":109,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:18:48.888713Z","gw_timestamp":1346283780,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AFEwMDUzMDAxMjEzMDA0OTIK4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10885, '2016-08-12 07:19:11', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":80,"f_cnt_down":102,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:18:52.404535Z","gw_timestamp":1349799604,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-105,"snr":9.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A54wMDUzMDAxMjMzMDA0NTgdAQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10886, '2016-08-12 07:29:13', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":76,"f_cnt_down":77,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:28:39.704357Z","gw_timestamp":1937099708,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AtAwMDQ5MzAxMjE0MDA0OTIIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10887, '2016-08-12 07:30:52', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":66,"f_cnt_down":81,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:29:43.475272Z","gw_timestamp":2000870652,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":12,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:59:55.293745Z","gw_timestamp":636651132,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-119,"snr":-6,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AvowMDQ4NzAxMjMyMDA0NjEeoQ==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10888, '2016-08-12 07:34:04', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":88,"f_cnt_down":110,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:33:59.694405Z","gw_timestamp":2257089908,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-90,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:04:11.512889Z","gw_timestamp":892870276,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-115,"snr":-10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AG8wMDUxNjAxMjExMDA0OTgQ4Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10889, '2016-08-12 07:37:25', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":81,"f_cnt_down":103,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:34:03.203659Z","gw_timestamp":2260599164,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-109,"snr":7.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A9kwMDUwNDAxMjM1MDA0NTYIwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10890, '2016-08-12 07:44:55', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":77,"f_cnt_down":78,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:43:51.228209Z","gw_timestamp":2848623996,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":11.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BBMwMDU1NTAxMjE0MDA0OTIIUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10891, '2016-08-12 07:46:29', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":67,"f_cnt_down":82,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:44:54.345017Z","gw_timestamp":2911740836,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":0,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AxswMDUwMTAxMjM0MDA0NjEL4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10892, '2016-08-12 07:49:15', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":89,"f_cnt_down":111,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:49:10.497824Z","gw_timestamp":3167893764,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-92,"snr":12.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AHgwMDQ4ODAxMjEyMDA1MDUIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10893, '2016-08-12 07:49:16', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":82,"f_cnt_down":104,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:49:14.002868Z","gw_timestamp":3171398812,"frequency":868.1,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":-3.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A+gwMDQ5MjAxMjM4MDA0NTUIkA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10894, '2016-08-12 07:59:17', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":78,"f_cnt_down":79,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T07:59:02.078902Z","gw_timestamp":3759475124,"frequency":868.3,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":11.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/4wMDU3NjAxMjE0MDA0OTMNgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10895, '2016-08-12 08:00:06', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":68,"f_cnt_down":83,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T10:30:17.034577Z","gw_timestamp":2458391964,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AyowMDQ4NjAxMjM1MDA0NjMMUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10896, '2016-08-12 08:01:22', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":69,"f_cnt_down":84,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:00:05.21603Z","gw_timestamp":3822612284,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.2,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AyowMDQ4NjAxMjM1MDA0NjMMUA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10897, '2016-08-12 08:04:26', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":90,"f_cnt_down":112,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:04:21.301604Z","gw_timestamp":4078697980,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":7,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AH0wMDUyOTAxMjExMDA0NzkIEA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10898, '2016-08-12 08:04:37', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":83,"f_cnt_down":105,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:04:24.801836Z","gw_timestamp":4082198212,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-106,"snr":8,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:23:01.653098Z","gw_timestamp":2717977780,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A/UwMDQ3NTAxMjM5MDA0NTYGwA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10899, '2016-08-12 08:15:17', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":79,"f_cnt_down":80,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:14:12.927764Z","gw_timestamp":375357124,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":11.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"A6MwMDUxNjAxMjE1MDA0OTEIgA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10900, '2016-08-12 08:16:37', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":69,"f_cnt_down":85,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:15:16.086797Z","gw_timestamp":438516188,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":4.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AyEwMDUwMTAxMjM1MDA0NjQLYA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10901, '2016-08-12 08:19:37', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":91,"f_cnt_down":113,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:19:32.10565Z","gw_timestamp":694535164,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":9,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:38:08.956938Z","gw_timestamp":3625281620,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-122,"snr":-10,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"AKAwMDU1MjAxMjExMDA1MTQH4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10902, '2016-08-12 08:21:50', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":84,"f_cnt_down":106,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:19:35.602201Z","gw_timestamp":698031716,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-97,"snr":10.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:38:12.453489Z","gw_timestamp":3628778172,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-6.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BCQwMDUyOTAxMjM4MDA0NTgKIA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10903, '2016-08-12 08:30:28', '{"dev_eui":"008000000000b1a4","DevAddr":"25a4bf9d","f_port":1,"f_cnt_up":80,"f_cnt_down":81,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:29:23.777011Z","gw_timestamp":1286206804,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":10.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BW0wMDYwMDAxMjE1MDA0OTYH0A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-2/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10904, '2016-08-12 08:31:48', '{"dev_eui":"008000000000b1a0","DevAddr":"25798553","f_port":1,"f_cnt_up":70,"f_cnt_down":86,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:30:26.966197Z","gw_timestamp":1349396020,"frequency":868.0999755859375,"channel":0,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-94,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"BVkwMDQ4ODAxMjM1MDA0NjcP4A==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-3/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10905, '2016-08-12 08:34:47', '{"dev_eui":"008000000000b1a3","DevAddr":"259215ff","f_port":1,"f_cnt_up":92,"f_cnt_down":114,"app_eui":"cec5150000000001","gateway_count":2,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:34:42.909939Z","gw_timestamp":1605339884,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-95,"snr":9.199999809265137,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}},"1":{"mac":"575735b2604cbb78","gw_time":"2016-07-25T09:53:19.761257Z","gw_timestamp":241118644,"frequency":868.5,"channel":2,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-123,"snr":-9.800000190734863,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ANcwMDUxNTAxMjEzMDA1MTUIMA==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-1/evt/update/fmt/json"}');
INSERT INTO raw (id, "timestamp", event) VALUES (10906, '2016-08-12 08:39:25', '{"dev_eui":"008000000000b1a6","DevAddr":"25c628ff","f_port":1,"f_cnt_up":85,"f_cnt_down":107,"app_eui":"cec5150000000001","gateway_count":1,"gateway_info":{"0":{"mac":"575781add9bfa432","gw_time":"2016-08-12T08:34:46.401281Z","gw_timestamp":1608831228,"frequency":868.2999877929688,"channel":1,"rf_chain":1,"crc_status":1,"modulation":"LORA","code_rate":"4/5","rssi":-106,"snr":8.5,"size":32,"data_rate":{"LoRa":"SF9BW125","FSK":0}}},"data":"ACgwMDYwMzAxMjMyMDA0NjAe8Q==","topic":"iot-2/type/mDot/id/CENSIS-LoRa-4/evt/update/fmt/json"}');
--
-- TOC entry 2387 (class 0 OID 0)
-- Dependencies: 181
-- Name: raw_id_seq; Type: SEQUENCE SET; Schema: public; Owner: postgres
--
SELECT pg_catalog.setval('raw_id_seq', 10906, true);
--
-- TOC entry 2382 (class 0 OID 0)
-- Dependencies: 6
-- Name: public; Type: ACL; Schema: -; Owner: postgres
--
REVOKE ALL ON SCHEMA public FROM PUBLIC;
REVOKE ALL ON SCHEMA public FROM postgres;
GRANT ALL ON SCHEMA public TO postgres;
GRANT ALL ON SCHEMA public TO PUBLIC;
-- Completed on 2016-08-12 09:42:35 BST
--
-- PostgreSQL database dump complete
--